/* ============================================
   Nortex Global — Plan Premium
   Paleta clara y pastel · Multi-idioma
   ============================================ */
:root {
  --bg-deep: #F8F6F8;
  --bg-panel: #F0ECF2;
  --bg-panel-2: #E8E2EC;
  --bg-card: #FFFFFF;
  --text-primary: #1A1420;
  --text-secondary: #5A4A60;
  --text-muted: #8A7A90;
  --accent: #D481C0;
  --accent-light: #F0D8E8;
  --accent-dark: #B86A9A;
  --accent-secondary: #7AB8D4;
  --accent-gradient: linear-gradient(135deg, #D481C0, #7AB8D4);
  --border: rgba(26, 20, 32, 0.06);
  --border-light: rgba(26, 20, 32, 0.03);
  --shadow-sm: 0 1px 3px rgba(26, 20, 32, 0.04);
  --shadow-md: 0 4px 20px rgba(26, 20, 32, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 20, 32, 0.08);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ============================================
   ICONOS SVG
   ============================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: currentColor;
}
.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--filled svg {
  fill: currentColor;
  stroke: none;
}
.icon--lg { width: 24px; height: 24px; }
.icon--xl { width: 32px; height: 32px; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.topbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 20px rgba(212, 129, 192, 0.15);
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav a {
  position: relative;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-bottom: 4px;
  font-weight: 500;
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.site-nav a:hover {
  color: var(--text-primary);
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}
.site-nav a.is-active {
  color: var(--text-primary);
}

.lang-picker {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}
.lang-picker a {
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-picker a:hover {
  color: var(--text-primary);
  background: rgba(212, 129, 192, 0.04);
}
.lang-picker a.is-current {
  color: var(--accent);
  font-weight: 600;
}
.lang-picker span {
  color: var(--text-muted);
  opacity: 0.3;
}

.btn-cta {
  background: var(--accent-gradient);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta::after {
  display: none !important;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 129, 192, 0.2);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.4rem;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 129, 192, 0.06), transparent 70%);
  top: -180px;
  right: -140px;
  filter: blur(50px);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border: 1px solid rgba(212, 129, 192, 0.15);
  border-radius: 999px;
  background: rgba(212, 129, 192, 0.04);
  margin-bottom: 1.1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  max-width: 680px;
  margin-bottom: 1.1rem;
  color: var(--text-primary);
}
.page-hero .lede {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.8;
}

/* ============================================
   BOTONES
   ============================================ */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  padding: 0.9rem 2.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 30px -10px rgba(212, 129, 192, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-solid .icon {
  width: 18px;
  height: 18px;
}
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(212, 129, 192, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 0.9rem 2.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.btn-outline .icon {
  width: 18px;
  height: 18px;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(212, 129, 192, 0.04);
}

/* ============================================
   SECCIONES
   ============================================ */
.block {
  padding: 5rem 0;
}
.block:not(:first-of-type) {
  border-top: 1px solid var(--border);
}
.block-head {
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.block-head .kicker {
  margin-bottom: 0.5rem;
}
.block-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}
.block-head p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}
.block-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   TARJETAS
   ============================================ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tile {
  padding: 2.25rem 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.tile:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 129, 192, 0.12);
  box-shadow: var(--shadow-md);
}
.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-gradient);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 129, 192, 0.1);
}
.tile-icon .icon {
  width: 24px;
  height: 24px;
}
.tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.tile p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   REGIONES
   ============================================ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.region-tile {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.region-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.region-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.region-tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.region-tile span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FILAS DE SERVICIOS
   ============================================ */
.svc-row {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.svc-row:first-child {
  padding-top: 0;
}
.svc-row:last-child {
  border-bottom: none;
}
.svc-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.25;
}
.svc-row h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.svc-row p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}
.svc-row .svc-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.svc-row .svc-detail strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   EQUIPO
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 129, 192, 0.12);
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}
.team-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.team-card .team-bio {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ============================================
   CASOS DE ÉXITO
   ============================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-card {
  padding: 2rem 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 129, 192, 0.12);
  box-shadow: var(--shadow-md);
}
.case-card .result {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.case-card .result-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.case-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.case-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 129, 192, 0.12);
  box-shadow: var(--shadow-md);
}
.blog-thumb {
  height: 160px;
  background: linear-gradient(155deg, var(--bg-panel-2), var(--bg-panel));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-thumb .icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  opacity: 0.15;
}
.blog-thumb .icon svg {
  stroke-width: 1.5;
}
.blog-thumb .blog-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}
.blog-body {
  padding: 1.4rem;
}
.blog-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
  color: var(--text-primary);
}
.blog-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.blog-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-meta .icon {
  width: 14px;
  height: 14px;
}

/* ============================================
   CONTACTO
   ============================================ */
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.reach-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 129, 192, 0.06);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.reach-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.reach-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}
.reach-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
}
.reach-row:last-child {
  border-bottom: none;
}
.reach-row span:first-child {
  color: var(--text-secondary);
}
.reach-row span:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

.reach-extra {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--bg-panel);
  text-align: center;
}
.reach-extra p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.reach-extra .highlight {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================
   ARTÍCULO INDIVIDUAL
   ============================================ */
.article-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.article-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.article-body {
  max-width: 680px;
  margin: 3rem auto 0;
}
.article-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.3rem;
  line-height: 1.8;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 2.2rem 0 1rem;
  color: var(--text-primary);
}
.article-body ul {
  margin: 0 0 1.3rem 1.2rem;
  color: var(--text-secondary);
}
.article-body li {
  margin-bottom: 0.5rem;
}

/* ============================================
   PÁGINAS LEGALES
   ============================================ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  color: var(--text-primary);
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content ul {
  margin: 0 0 1rem 1.2rem;
  color: var(--text-secondary);
}
.legal-content li {
  margin-bottom: 0.4rem;
}

/* ============================================
   PORTAL DE IDIOMAS
   ============================================ */
.portal {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.portal::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 129, 192, 0.08), transparent 70%);
  top: -200px;
  left: -160px;
  filter: blur(70px);
  pointer-events: none;
}
.portal::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 184, 212, 0.06), transparent 70%);
  bottom: -180px;
  right: -140px;
  filter: blur(70px);
  pointer-events: none;
}
.portal-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.portal .brand {
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.portal h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.portal p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}
.portal-options {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.portal-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.portal-option:hover {
  border-color: var(--accent);
  background: rgba(212, 129, 192, 0.02);
  transform: translateY(-2px);
}
.portal-option-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.portal-option-code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.portal-option .icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  opacity: 0.4;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg-panel);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand small {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  background: #fff;
}
.footer-social a .icon {
  width: 16px;
  height: 16px;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 100%;
}
.footer-bottom .accent {
  color: var(--accent);
}

/* ============================================
   SCROLL-REVEAL
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.is-shown {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .tile-grid {
    grid-template-columns: 1fr 1fr;
  }
  .region-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-cluster {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    z-index: 49;
    box-shadow: var(--shadow-lg);
  }
  .nav-cluster.is-open {
    transform: translateY(0);
  }
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .lang-picker {
    border-left: none;
    padding-left: 0;
  }
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 680px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }
  .region-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .svc-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .site-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .article-meta {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}