/* ═══════════════════════════════════════════
   D'LOGIA — Sections
   sections.css
═══════════════════════════════════════════ */


/* ── TECH STACK TICKER ─────────────────── */
.ticker-wrap {
  position: relative;
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

/* Fade edges */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.ticker-label {
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
  padding: 0 24px 0 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.ticker-overflow {
  flex: 1;
  overflow: hidden;
  position: relative;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.ticker-item:hover { opacity: 1; }

.ti-icon {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  filter: invert(1) opacity(0.55);
}
/* Inline SVG icons: use color instead of filter */
.ti-icon-svg {
  filter: none;
  color: rgba(255, 255, 255, 0.55);
}

.ticker-item span {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .ticker-label { display: none; }
  .ticker-item { padding: 0 20px; }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.avatar-frame {
  width: 220px; height: 260px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.avatar-initials {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.avatar-name {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.avatar-badge {
  position: absolute;
  bottom: -10px; right: -10px;
  background: var(--teal);
  color: #09090e;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.about-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 8px;
}
.about-lead strong { color: var(--text); font-weight: 500; }
.about-role {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 28px;
}
.achv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}
.achv {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  transition: border-color var(--t-base);
}
.achv:hover { border-color: var(--borderH); }
.achv__num {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.achv__label { font-size: 11px; color: var(--muted); line-height: 1.35; }
.pills { display: flex; flex-wrap: wrap; gap: 7px; }

.about-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 9px 18px;
  border: 1px solid var(--borderH);
  border-radius: var(--r-pill);
  background: var(--surface2);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.about-social-btn:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accentL);
  transform: translateY(-2px);
}

/* ── SERVICES ── */
.section-bridge {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  opacity: 0.85;
}

.srv-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 12px;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}
.srv-card {
  background: var(--bg2);
  padding: 36px 28px;
  transition: background var(--t-base);
}
.srv-card:hover { background: var(--surface); }
.srv-icon {
  width: 40px; height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.srv-icon--p { background: rgba(108,99,255,0.14); }
.srv-icon--t { background: rgba(0,212,170,0.10); }
.srv-icon--c { background: rgba(255,107,107,0.10); }
.srv-title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.srv-result {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.srv-result strong { color: var(--teal); }
.srv-benefit {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
  margin-top: -6px;
}
.srv-ideal {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: var(--bg3);
  border-radius: var(--r-sm);
  border-left: 2px solid var(--accent);
}
.srv-tech {
  font-size: 11.5px;
  color: var(--dim);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── PORTFOLIO ── */
.port-filters {
  display: flex;
  gap: 7px;
  margin: 44px 0 30px;
  flex-wrap: wrap;
}
.fbtn {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--muted);
  transition: all var(--t-fast);
}
.fbtn:hover, .fbtn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pcard {
  perspective: 1000px;
  cursor: pointer;
  min-height: 380px;
}
.pcard__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.pcard:hover .pcard__inner { transform: rotateY(180deg); }
.pcard__front, .pcard__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pcard__front {
  background: var(--surface);
  border: 1px solid var(--border);
}
.pcard__back {
  transform: rotateY(180deg);
  background: var(--surface2);
  border: 1px solid var(--borderH);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px 22px;
}
.pcard__back-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pcard__back-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.pcard__back-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.pcard__demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  align-self: flex-start;
}
.pcard__demo-btn:hover { background: var(--accentH); }
.pcard__demo-btn svg { flex-shrink: 0; }
.pcard__thumb {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pcard__bg-text {
  font-family: var(--fd);
  font-size: 58px;
  font-weight: 800;
  opacity: 0.065;
  letter-spacing: -0.05em;
  color: var(--text);
  user-select: none;
}
.pcard__impact {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,212,170,0.12);
  border: 1px solid rgba(0,212,170,0.28);
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.pcard__type {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(9,9,14,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.pcard__body { padding: 18px; }
.pcard__title {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
/* PSR */
.psr { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.psr-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.45;
}
.psr-label {
  font-weight: 500;
  min-width: 68px;
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 1px;
}
.psr-label--p { color: var(--coral); }
.psr-label--s { color: var(--accent); }
.psr-label--r { color: var(--teal); }
.psr-text { color: var(--muted); }
.psr-text strong { color: var(--text); font-weight: 500; }
.ptags { display: flex; gap: 5px; flex-wrap: wrap; }
.ptag {
  font-size: 10px;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--dim);
}

/* Thumb colors */
.thumb--purple { background: linear-gradient(135deg, #18082e, #200f42); }
.thumb--teal   { background: linear-gradient(135deg, #041a18, #083028); }
.thumb--orange { background: linear-gradient(135deg, #1a0c04, #2a1406); }
.thumb--gold   { background: linear-gradient(135deg, #1a1200, #2e1f00); }

/* bg-text size modifier for longer words */
.pcard__bg-text--sm { font-size: 36px; }

/* Featured card — gradient top line + star badge */
.pcard--star {
  border-color: rgba(108,99,255,0.28);
}
.pcard--star > .pcard__inner > .pcard__front > .pcard__thumb::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.pcard__star {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.3);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

/* ── PRICING ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  position: relative;
  transition: border-color var(--t-base), background var(--t-base);
}
.price-card:hover { border-color: var(--borderH); background: var(--surface); }
.price-card--featured {
  border-color: var(--accent);
  background: var(--surface2);
}
.price-card--featured:hover { border-color: var(--accentH); }
.price-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.price-icon { font-size: 24px; margin-bottom: 14px; }
.price-name {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.price-amount {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.price-amount span { font-size: 14px; font-weight: 400; color: var(--muted); }
.price-time { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.price-items { display: flex; flex-direction: column; gap: 9px; }
.price-items li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.price-items li::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 4px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.28);
  flex-shrink: 0;
  margin-top: 1px;
}
.price-cta {
  display: block;
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  border: 1px solid var(--borderH);
  border-radius: var(--r-sm);
  color: var(--muted);
  transition: all var(--t-fast);
}
.price-cta:hover { border-color: var(--accent); color: var(--accent); }
.price-card--featured .price-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.price-card--featured .price-cta:hover { background: var(--accentH); }
.price-note {
  font-size: 12px;
  color: var(--dim);
  text-align: center;
  margin-top: 18px;
}

/* ── PROCESS ── */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 72px;
  position: relative;
}
/* Línea conectora gradiente */
.proc-grid::before {
  content: '';
  position: absolute;
  top: -36px;
  left: calc(12.5% - 1px);
  right: calc(12.5% - 1px);
  height: 1px;
  background: linear-gradient(90deg,
    var(--accent) 0%,
    var(--teal)   33%,
    var(--coral)  66%,
    var(--amber)  100%
  );
  z-index: 0;
}
.proc-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base);
}
.proc-step:hover { border-color: var(--borderH); transform: translateY(-3px); }
/* Burbuja del número sobre la línea */
.proc-num {
  position: absolute;
  top: -52px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--borderH);
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  z-index: 1;
}
.proc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.proc-title {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.proc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: flex;
  gap: 16px;
  margin-top: 52px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 48px 16px;
  scrollbar-width: none;
  max-width: 1080px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.testi-grid::-webkit-scrollbar { display: none; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color var(--t-base);
  flex: 0 0 340px;
  scroll-snap-align: start;
}
.testi-card:hover { border-color: var(--borderH); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-star { color: var(--amber); font-size: 14px; }
.testi-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-text strong { color: var(--text); font-style: normal; font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-info {}
.testi-name { font-size: 13px; font-weight: 500; color: var(--text); }
.testi-role { font-size: 11px; color: var(--dim); }

/* Add review button */
.testi-add-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--borderH);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  width: 100%;
  justify-content: center;
  transition: all var(--t-fast);
}
.testi-add-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── CTA FINAL ── */
#cta {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 800px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(108,99,255,0.09) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--fd);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--text);
}
.cta-title em { font-style: normal; color: var(--accent); }
.cta-promise {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.cta-promise strong { color: var(--text); font-weight: 500; }
.cta-detail { font-size: 14px; color: var(--dim); margin-bottom: 44px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.contact-row { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  transition: color var(--t-fast);
}
.contact-item:hover { color: var(--text); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.f-logo {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.f-logo .apostrophe { color: var(--accent); }
.f-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.f-socials a {
  color: var(--dim);
  transition: color var(--t-fast), transform var(--t-fast);
  display: flex;
}
.f-socials a:hover { color: var(--text); transform: translateY(-2px); }
.f-socials a[aria-label="WhatsApp"]:hover { color: #25D366; }
.f-socials a[aria-label="LinkedIn"]:hover  { color: #0A66C2; }
.f-copy { font-size: 12px; color: var(--dim); }

/* Nav logo image */
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-img { height: 32px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; align-items: center; gap: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; margin-top: 80px; }
  .proc-grid::before { left: calc(25% - 1px); right: calc(25% - 1px); }
  .testi-grid { padding: 4px 20px 16px; }
  .testi-card { flex: 0 0 280px; }
  .achv-grid { grid-template-columns: repeat(3, 1fr); }
  footer { flex-direction: column; gap: 10px; text-align: center; padding: 20px; }
  #cta { padding: 72px 20px; }
}

@media (max-width: 600px) {
  /* About */
  .about-grid { gap: 32px; margin-top: 36px; }
  .avatar-frame { width: 160px; height: 200px; margin: 0 auto; }
  .avatar-initials { font-size: 40px; }
  .about-lead { font-size: 15px; }
  .achv-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .achv { padding: 12px; }
  .achv__num { font-size: 20px; }
  .about-pills { gap: 6px; }
  .about-socials { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .about-social-btn { flex: 1; min-width: 120px; justify-content: center; }

  /* Services */
  .stitle { font-size: clamp(26px, 7vw, 36px); }
  .srv-card { padding: 24px 18px; }

  /* Process */
  .proc-grid { grid-template-columns: 1fr; margin-top: 40px; gap: 16px; }
  .proc-grid::before { display: none; }
  .proc-step__num { margin: 0 auto 12px; }

  /* Portfolio */
  .pcard { min-height: 340px; }
  .pcard__inner { min-height: 340px; }
  .port-filters { gap: 6px; }
  .fbtn { font-size: 11px; padding: 6px 12px; }

  /* Testimonials */
  .testi-card { padding: 20px 16px; }

  /* CTA */
  #cta { padding: 60px 18px; }
  .cta-title { font-size: clamp(24px, 7vw, 36px); }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }

  /* Footer */
  .f-socials { justify-content: center; }
  footer { padding: 24px 18px; gap: 14px; }
}
