/* ============================================================
   AUREGENT CONSULTING PLT — site2 (Concept B: Immersive Navy)
   Shared stylesheet for all pages.
   ============================================================ */

:root {
  --navy-950: #04101F;
  --navy-900: #061426;
  --navy-800: #0A2140;
  --navy-700: #10305A;
  --gold: #D2A94E;
  --gold-strong: #B98F35;      /* text-safe gold on white */
  --gold-soft: rgba(210,169,78,0.16);
  --paper: #F6F8FB;
  --white: #FFFFFF;
  --ink: #101B2B;
  --slate: #55657A;
  --line: #E2E8F0;
  --green: #1FAF57;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body-font: 'Manrope', system-ui, sans-serif;
  --max: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--ink);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--navy-950); }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold-strong); outline-offset: 3px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 860px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--navy-950); padding: 10px 18px;
  font-weight: 700; text-decoration: none; border-radius: 4px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body-font); font-weight: 700; font-size: 0.9rem;
  text-decoration: none; padding: 15px 28px; border-radius: 6px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}
.btn__icon { width: 18px; height: 18px; flex: none; }
.btn--gold { background: var(--gold); color: var(--navy-950); border-color: var(--gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(210,169,78,0.7); }
.btn--navy { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.btn--navy:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn--whatsapp { background: var(--green); color: #fff; border-color: var(--green); }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(31,175,87,0.7); background: #23bd60; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--navy-800); border-color: rgba(10,33,64,0.35); }
.btn--ghost-dark:hover { border-color: var(--navy-800); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 22px; font-size: 0.82rem; }
.btn--lg { padding: 17px 34px; font-size: 0.95rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 20, 38, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner { display: flex; align-items: center; gap: 32px; height: 78px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--display); font-weight: 700; letter-spacing: 0.16em; font-size: 1.08rem; color: #fff; }
.brand__suffix { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.44em; color: var(--gold); margin-top: 3px; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 32px; list-style: none; }
.nav__link {
  text-decoration: none; color: rgba(255,255,255,0.78); font-size: 0.9rem; font-weight: 600;
  padding: 8px 2px; position: relative; transition: color .2s ease;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle { display: none; margin-left: auto; background: none; border: none; cursor: pointer; color: #fff; padding: 8px; }
.mobile-menu {
  display: none; position: fixed; inset: 78px 0 0 0; z-index: 99;
  background: var(--navy-900); padding: 28px; flex-direction: column; overflow-y: auto;
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu a:not(.btn) {
  text-decoration: none; color: #fff; font-family: var(--display); font-weight: 600; font-size: 1.4rem;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__cta { margin-top: 26px; }
.mobile-menu__close { align-self: flex-end; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 480px at 82% -12%, rgba(210,169,78,0.18), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(16,48,90,0.9), transparent 55%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  padding: 130px 0 110px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(75% 80% at 50% 20%, #000 30%, transparent 100%);
  mask-image: radial-gradient(75% 80% at 50% 20%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hero__rings { position: absolute; right: -160px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.hero__rings circle { fill: none; stroke: rgba(210,169,78,0.22); stroke-width: 1; }
.hero__rings .dot { fill: var(--gold); stroke: none; }
.hero__inner { position: relative; max-width: 780px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(210,169,78,0.4); border-radius: 999px;
  padding: 8px 18px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.hero__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.7rem, 5.6vw, 4.4rem); line-height: 1.08;
  letter-spacing: -0.015em; margin: 30px 0 26px;
}
.hero h1 .gold { color: var(--gold); }
.hero__lede { font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,0.72); max-width: 62ch; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.hero__chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 54px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.16); border-radius: 999px;
  padding: 9px 18px; font-size: 0.8rem; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}
.chip b { color: #fff; font-weight: 700; }
.chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }
.chip a { color: rgba(255,255,255,0.75); text-decoration: none; }
.chip a:hover { color: var(--gold); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(800px 400px at 85% -20%, rgba(210,169,78,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 60%, var(--navy-950) 100%);
  padding: 92px 0 84px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 90% at 50% 0%, #000 25%, transparent 100%);
  mask-image: radial-gradient(80% 90% at 50% 0%, #000 25%, transparent 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .kicker { color: var(--gold); }
.page-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.12;
  letter-spacing: -0.015em; margin: 18px 0 16px; max-width: 20ch;
}
.page-hero p { color: rgba(255,255,255,0.72); max-width: 64ch; font-size: 1.02rem; }
.page-hero .hero__ctas { margin-top: 30px; }
.page-hero__meta { margin-top: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ---------- Sections ---------- */
.section { padding: 108px 0; }
.section--paper { background: var(--paper); }
.section--navy { background: linear-gradient(170deg, var(--navy-800), var(--navy-950)); color: #fff; }
.section--tight { padding: 64px 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-strong);
}
.kicker::before { content: ''; width: 34px; height: 2px; background: currentColor; }
.section--navy .kicker, .page-hero .kicker, .cta .kicker { color: var(--gold); }

.sec-head { max-width: 780px; margin-bottom: 56px; }
.sec-head h2 {
  font-family: var(--display); font-weight: 600; letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.14; margin: 18px 0 14px; color: var(--ink);
}
.section--navy .sec-head h2 { color: #fff; }
.sec-head p { color: var(--slate); font-size: 1rem; max-width: 64ch; }
.section--navy .sec-head p { color: rgba(255,255,255,0.65); }

/* ---------- Generic cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.section--paper .card { border-color: var(--line); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -26px rgba(6,20,38,0.35); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--slate); line-height: 1.65; }
.card__icon {
  width: 46px; height: 46px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(10,33,64,0.06); color: var(--navy-800); margin-bottom: 18px;
  transition: background .3s ease, color .3s ease;
}
.card:hover .card__icon { background: var(--navy-800); color: var(--gold); }
.card__icon svg { width: 22px; height: 22px; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--navy-800); font-weight: 800; font-size: 0.88rem;
}
.text-link span { color: var(--gold-strong); transition: transform .3s ease; }
.text-link:hover span { transform: translateX(6px); }

/* ---------- Intro split ---------- */
.intro__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.intro__statement {
  font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.4; color: var(--ink); border-left: 3px solid var(--gold); padding-left: 28px;
}
.intro__body p { color: var(--slate); margin-bottom: 16px; }

/* ---------- Service cards (home) ---------- */
.svc-card { display: flex; flex-direction: column; gap: 12px; text-decoration: none; }
.svc-card h3 { margin-bottom: 0; }
.svc-card p { flex: 1; font-size: 0.88rem; }
.svc-card__more { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-800); }
.svc-card__more em { font-style: normal; color: var(--gold-strong); }

/* ---------- Departments chips band ---------- */
.dept { padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.dept__inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.dept__label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--navy-800); flex: none; }
.dept__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.dept__chips span {
  font-size: 0.8rem; font-weight: 600; color: var(--slate);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.dept__chips span:hover { border-color: var(--gold); color: var(--navy-800); background: var(--gold-soft); }

/* ---------- Why cards (dark) ---------- */
.why-card {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 36px 30px;
  background: rgba(255,255,255,0.03);
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.why-card:hover { border-color: rgba(210,169,78,0.55); background: rgba(210,169,78,0.06); transform: translateY(-4px); }
.why-card__num { font-family: var(--display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.2em; color: var(--gold); }
.why-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.25rem; margin: 16px 0 12px; color: #fff; }
.why-card p { font-size: 0.92rem; color: rgba(255,255,255,0.66); line-height: 1.65; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(6,20,38,0.3); }
.step-card__num {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  background: var(--navy-800); color: var(--gold);
}
.step-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin-bottom: 6px; }
.step-card p { font-size: 0.86rem; color: var(--slate); line-height: 1.6; }

/* Vertical timeline variant (how-we-work page) */
.timeline { display: grid; gap: 0; position: relative; }
.timeline__item {
  display: grid; grid-template-columns: 92px 1fr; gap: 28px;
  padding: 34px 0; border-bottom: 1px solid var(--line);
}
.timeline__item:last-child { border-bottom: none; }
.timeline__num {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  background: var(--navy-800); color: var(--gold);
}
.timeline__item h3 { font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--ink); margin-bottom: 8px; }
.timeline__item > div > p { color: var(--slate); max-width: 68ch; }
.timeline__item .detail-list { margin-top: 14px; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; padding: 110px 0; color: #fff; text-align: center;
  background:
    radial-gradient(720px 380px at 50% -20%, rgba(210,169,78,0.22), transparent 65%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(60% 90% at 50% 0%, #000 20%, transparent 90%);
  mask-image: radial-gradient(60% 90% at 50% 0%, #000 20%, transparent 90%);
}
.cta .inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta h2 { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; margin: 18px 0 16px; }
.cta p { color: rgba(255,255,255,0.7); max-width: 58ch; margin: 0 auto; }
.cta .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.cta .kicker { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.6); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding: 76px 0 56px; }
.site-footer__legal { font-size: 0.8rem; line-height: 1.8; margin-top: 18px; }
.site-footer h3 { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff; text-decoration: none;
  padding: 13px 20px; border-radius: 999px; font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 12px 28px -10px rgba(31,175,87,0.65);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fab-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(31,175,87,0.7); }
.fab-whatsapp svg { width: 20px; height: 20px; }

/* ============================================================
   INNER-PAGE COMPONENTS
   ============================================================ */

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--navy-800);
  margin: 44px 0 14px; padding-top: 10px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--slate); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 22px; color: var(--slate); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--navy-800); font-weight: 600; }
.prose .note {
  font-size: 0.9rem; color: var(--slate); background: var(--paper);
  border-left: 3px solid var(--gold); padding: 16px 20px; border-radius: 0 6px 6px 0; margin-top: 32px;
}

/* ---------- Notice / disclaimer box ---------- */
.notice {
  background: var(--gold-soft); border: 1px solid rgba(210,169,78,0.5);
  border-radius: 8px; padding: 26px 30px; font-size: 0.92rem; color: var(--ink);
}
.notice strong { color: var(--navy-800); }
.notice p { margin-bottom: 10px; color: var(--ink); }
.notice p:last-child { margin-bottom: 0; }
.notice ul { margin: 8px 0 8px 20px; }
.notice li { margin-bottom: 6px; }

/* ---------- Anchor chip nav (services quick nav) ---------- */
.quicknav {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px;
}
.quicknav a {
  text-decoration: none; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px; padding: 8px 16px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.quicknav a:hover { border-color: var(--gold); color: var(--gold); background: rgba(210,169,78,0.08); }

/* ---------- Service blocks (services page) ---------- */
.svc-block { border-bottom: 1px solid var(--line); padding: 54px 0; }
.svc-block:first-of-type { padding-top: 20px; }
.svc-block__head { display: grid; grid-template-columns: 64px 1fr; gap: 26px; align-items: start; }
.svc-block__icon {
  width: 64px; height: 64px; border-radius: 10px; display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold);
}
.svc-block__icon svg { width: 28px; height: 28px; }
.svc-block h2 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--ink); line-height: 1.25; }
.svc-block__num { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.24em; color: var(--gold-strong); display: block; margin-bottom: 6px; }
.svc-block__overview { color: var(--slate); margin-top: 10px; max-width: 72ch; }
.svc-block__body { margin-top: 22px; padding-left: 90px; }
.svc-block__cta { margin-top: 20px; }

/* Chips (tags) */
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.tag-list li {
  font-size: 0.8rem; font-weight: 600; color: var(--navy-800);
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
}
.tag-list--gold li { background: var(--gold-soft); border-color: rgba(210,169,78,0.45); color: var(--navy-900); }

/* Details / summary accordion */
details.acc {
  border: 1px solid var(--line); border-radius: 8px; margin-top: 18px; background: var(--white);
  transition: border-color .25s ease;
}
details.acc[open] { border-color: rgba(10,33,64,0.35); }
details.acc summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 22px; font-weight: 700; font-size: 0.88rem; color: var(--navy-800);
  letter-spacing: 0.02em;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after {
  content: '+'; font-size: 1.25rem; font-weight: 600; color: var(--gold-strong);
  transition: transform .25s ease; flex: none;
}
details.acc[open] summary::after { content: '–'; }
details.acc .acc__body { padding: 4px 22px 24px; }
.acc__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.acc__cols h4 {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-strong); margin-bottom: 12px;
}
.acc__cols ul { margin-left: 18px; color: var(--slate); font-size: 0.9rem; }
.acc__cols li { margin-bottom: 7px; }

/* ---------- Tabs (departments) ---------- */
.tabs { margin-top: 8px; }
.tabs__bar {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: thin; margin-bottom: 28px;
}
.tabs__btn {
  flex: none; background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-family: var(--body-font); font-weight: 700; font-size: 0.84rem;
  color: var(--slate); cursor: pointer; white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tabs__btn:hover { border-color: var(--gold); color: var(--navy-800); }
.tabs__btn[aria-selected="true"] { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.dept-panel { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.dept-panel h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 10px; }
.dept-panel__intro { color: var(--slate); margin-bottom: 18px; }
.dept-panel .note {
  font-size: 0.85rem; color: var(--slate); background: var(--paper);
  border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 0 6px 6px 0; margin-top: 18px;
}
.dept-panel h4 {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-strong); margin-bottom: 14px;
}

/* ---------- Profile (about) ---------- */
.profile { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; max-width: 860px; }
.profile__photo {
  width: 180px; height: 180px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 3rem;
  letter-spacing: 0.06em; position: relative; overflow: hidden;
}
.profile__photo::after {
  content: ''; position: absolute; inset: 10px; border: 1px solid rgba(210,169,78,0.4); border-radius: 8px;
}
.profile h3 { font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: var(--ink); }
.profile__title { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-strong); margin: 8px 0 16px; }
.profile p { color: var(--slate); max-width: 60ch; }
.profile__placeholder-note {
  margin-top: 16px; font-size: 0.85rem; color: var(--slate); background: var(--paper);
  border-left: 3px solid var(--gold); padding: 12px 16px; border-radius: 0 6px 6px 0; max-width: 60ch;
}

/* ---------- Data table (company details) ---------- */
.data-table { width: 100%; border-collapse: collapse; max-width: 760px; }
.data-table th, .data-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.data-table th {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-strong); width: 34%; vertical-align: top;
}
.data-table td { color: var(--ink); }
.data-table a { color: var(--navy-800); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(10,33,64,0.25); }
.data-table a:hover { border-color: var(--gold); color: var(--gold-strong); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 36px 34px;
}
.contact-card h2 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 22px; }
.contact-list { list-style: none; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list__icon {
  flex: none; width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(10,33,64,0.06); color: var(--navy-800);
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list b { display: block; color: var(--navy-800); font-size: 0.92rem; }
.contact-list a { color: var(--slate); text-decoration: none; font-size: 0.95rem; border-bottom: 1px solid transparent; }
.contact-list a:hover { color: var(--gold-strong); border-color: var(--gold); }
.contact-list .muted { color: var(--slate); font-size: 0.92rem; }
.map-frame { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.map-frame iframe { display: block; width: 100%; height: 340px; border: 0; }
.coverage-note {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 20px; padding: 16px 18px; border-radius: 8px;
  background: var(--gold-soft); border: 1px solid rgba(210,169,78,0.4);
  font-size: 0.88rem; color: var(--ink); line-height: 1.6;
}
.coverage-note svg { flex: none; width: 20px; height: 20px; color: var(--gold-strong); margin-top: 2px; }

/* ---------- Package cards ---------- */
.pkg-card { display: flex; flex-direction: column; }
.pkg-card__badge {
  align-self: flex-start; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-strong); border: 1px solid rgba(210,169,78,0.5); background: var(--gold-soft);
  border-radius: 999px; padding: 5px 12px; margin-bottom: 14px;
}
.pkg-card h3 { font-size: 1.15rem; }
.pkg-card .suit { font-size: 0.85rem; color: var(--slate); margin-bottom: 14px; }
.pkg-card .tag-list { margin-top: auto; padding-top: 6px; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 28px; }
.error-page__code {
  font-family: var(--display); font-weight: 700; font-size: clamp(5rem, 14vw, 9rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--gold);
}
@supports not (-webkit-text-stroke: 1px black) { .error-page__code { color: var(--gold); } }
.error-page h1 { font-family: var(--display); font-weight: 600; font-size: 1.8rem; color: var(--navy-800); margin: 20px 0 12px; }
.error-page p { color: var(--slate); max-width: 46ch; margin: 0 auto 30px; }
.error-page .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.muted { color: var(--slate); }
.mt-sm { margin-top: 12px; } .mt-md { margin-top: 24px; } .mt-lg { margin-top: 40px; } .mt-xl { margin-top: 56px; }
.mb-md { margin-bottom: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__rings { opacity: 0.5; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .nav__cta-wrap { display: none; }
  .menu-toggle { display: block; }
  .intro__grid, .dept-panel, .contact-grid, .acc__cols, .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .svc-block__body { padding-left: 0; }
  .timeline__item { grid-template-columns: 64px 1fr; gap: 18px; }
  .timeline__num { width: 56px; height: 56px; font-size: 1.2rem; }
}
@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero { padding: 92px 0 80px; }
  .page-hero { padding: 72px 0 64px; }
  .steps-grid, .grid--4 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .fab-whatsapp span { display: none; }
  .fab-whatsapp { padding: 15px; }
  .dept__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .svc-block__head { grid-template-columns: 1fr; gap: 16px; }
  .profile { grid-template-columns: 1fr; }
  .cta .btns { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn, .page-hero .hero__ctas .btn { width: 100%; }
}
