/* ─────────────────────────────────────────────────────────────
 * shared.css — global tokens, header, footer, breadcrumb
 * Applies to: clicksgeek-home.html, clicksgeek.html, index.html,
 *             web-design.html
 * ───────────────────────────────────────────────────────────── */

/* ── CCM DESIGN TOKENS ──────────────────────────────────────── */
/* Electric Cyan #1DC8EC is the canonical CCM accent color.    */
/* These override the Clicks Geek theme's green (#00C546).     */
:root {
  /* CCM Brand — Electric Cyan */
  --ccm-cyan:          #1DC8EC;
  --ccm-cyan-dark:     #12A0BE;
  --ccm-cyan-muted:    rgba(29,200,236,0.10);
  --ccm-cyan-soft:     rgba(29,200,236,0.12);
  --ccm-cyan-glow:     rgba(29,200,236,0.30);
  --ccm-cyan-tint:     rgba(29,200,236,0.07);

  /* Aliases used by the Clicks Geek theme CSS (overrides their green) */
  --cg-green:          #1DC8EC;
  --cg-green-dark:     #12A0BE;
  --cg-green-light:    rgba(29,200,236,0.10);
  --cg-green-muted:    rgba(29,200,236,0.12);
  --cg-shadow-green:   0 12px 36px -8px rgba(29,200,236,0.15);
  --cg-shadow-hover:   0 20px 40px -15px rgba(29,200,236,0.20);
  --cg-dark:           #101828;
  --cg-dark-70:        rgba(16,24,40,0.7);
  --cg-dark-50:        rgba(16,24,40,0.5);
  --cg-white:          #ffffff;
  --cg-gray-200:       #e4e7ec;
  --cg-radius:         12px;
  --cg-radius-sm:      8px;
  --cg-radius-lg:      16px;
  --cg-shadow-lg:      0 12px 40px -8px rgba(16,24,40,0.14), 0 4px 16px rgba(16,24,40,0.06);
  --cg-ease:           cubic-bezier(0.32,0.72,0,1);

  /* Surface + text */
  --h26-bg:            #f5f8fc;
  --h26-bg-tint:       #eaf4fb;
  --h26-card:          #ffffff;
  --h26-card-alt:      #fafbfa;
  --h26-stroke:        rgba(15,18,22,0.08);
  --h26-stroke-strong: rgba(15,18,22,0.14);
  --h26-text:          #0f1216;
  --h26-text-soft:     rgba(15,18,22,0.72);
  --h26-text-dim:      rgba(15,18,22,0.72);
  --h26-text-dimmer:   rgba(15,18,22,0.48);

  /* h26 accent aliases → CCM cyan */
  --h26-green:         #1DC8EC;
  --h26-green-dark:    #12A0BE;
  --h26-green-deep:    #12A0BE;
  --h26-green-darker:  #0d6e8a;
  --h26-green-tint:    rgba(29,200,236,0.07);
  --h26-green-soft:    rgba(29,200,236,0.12);
  --h26-green-glow:    rgba(29,200,236,0.30);

  /* Shadows */
  --h26-shadow-sm:     0 1px 2px rgba(15,18,22,0.04), 0 1px 3px rgba(15,18,22,0.06);
  --h26-shadow-md:     0 4px 12px -2px rgba(15,18,22,0.08), 0 2px 6px rgba(15,18,22,0.05);
  --h26-shadow-lg:     0 18px 48px -12px rgba(15,18,22,0.16), 0 8px 20px -6px rgba(15,18,22,0.08);
  --h26-shadow-xl:     0 32px 80px -20px rgba(15,18,22,0.2), 0 16px 32px -12px rgba(15,18,22,0.12);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--h26-text);
  background: var(--h26-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
img, svg { display: block; max-width: 100%; }
svg:not([width]) { width: 1em; height: 1em; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: 'Geist', sans-serif; font-weight: 700; color: var(--h26-text); line-height: 1.15; letter-spacing: -0.02em; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINERS ─────────────────────────────────────────────── */
.cg-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}
.h26-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.cg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.2s, background 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.cg-btn--green {
  background: #1DC8EC;
  color: #000;
  border-color: #1DC8EC;
  box-shadow: 0 4px 14px rgba(29,200,236,0.35);
}
.cg-btn--green:hover {
  background: #1259BC;
  border-color: #1259BC;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18,89,188,0.4);
}
.cg-btn--green:active { transform: translateY(0); }
.cg-btn--outline {
  background: transparent;
  border-color: var(--h26-stroke-strong);
  color: var(--h26-text);
}
.cg-btn--outline:hover {
  background: rgba(15,18,22,0.04);
  transform: translateY(-1px);
}
.cg-btn--lg { padding: 15px 28px; font-size: 16px; }
.h26-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 26px;
  background: var(--h26-green);
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.h26-btn--primary:hover {
  background: var(--h26-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--h26-green-glow);
}
.h26-btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  background: transparent;
  color: var(--h26-text-soft);
  border: 1px solid var(--h26-stroke-strong);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s, background .15s;
}
.h26-btn--ghost:hover {
  color: var(--h26-text);
  background: rgba(10,11,13,.04);
}

/* ── HEADER / NAV ───────────────────────────────────────────── */
.cg-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
.cg-header--scrolled { box-shadow: 0 4px 20px rgba(16,24,40,0.06); }
.cg-header--v2 { background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.cg-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.cg-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.cg-logo-mark {
  width: 36px; height: 36px;
  background: var(--cg-green);
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cg-logo-mark svg { width: 20px; height: 20px; color: #fff; }
.cg-header__logo-text { font-size: 19px; font-weight: 800; color: #0f1216; letter-spacing: -0.03em; }
.cg-header__logo-text span { color: var(--cg-green); }
.cg-header__logo-img { height: 77px; width: auto; display: block; }
.cg-header--v2 .cg-header__inner { max-width: 1320px; margin: 0 auto; padding: 0 32px !important; height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px !important; }
.cg-header--v2 .cg-header__logo-img { height: 77px; width: auto; display: block; }
.cg-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: center;
}
.cg-nav__item { position: relative; display: flex; align-items: center; }
.cg-nav__item::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 12px; }
.cg-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.cg-nav__trigger:hover { background: rgba(15,18,22,0.05); }
.cg-nav__caret { width: 14px; height: 9px; flex-shrink: 0; transition: transform 0.15s; }
.cg-nav__item:hover .cg-nav__caret { transform: rotate(180deg); }
.cg-header__right { display: flex; align-items: center; gap: 8px; }
.cg-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  background: #1DC8EC;
  color: #fff;
  border: 1.5px solid #1DC8EC;
  box-shadow: 0 4px 14px rgba(29,200,236,0.35);
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.cg-nav__cta:hover {
  background: #1259BC;
  border-color: #1259BC;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18,89,188,0.4);
}

.cg-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  background: #fff;
  border: 1px solid rgba(15,18,22,0.08);
  border-radius: 16px;
  box-shadow: 0 20px 48px -8px rgba(15,18,22,0.16), 0 4px 12px rgba(15,18,22,0.06);
  padding: 12px;
  min-width: 240px;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateY(-4px);
}
.cg-nav__dropdown--solutions { min-width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.cg-nav__item:hover .cg-nav__dropdown,
.cg-nav__item:focus-within .cg-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.cg-nav__group-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h26-text-dimmer);
  padding: 6px 12px 4px;
}
.cg-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s;
  color: #101828;
  text-decoration: none;
}
.cg-nav__link:hover { background: var(--h26-bg); }
.cg-nav__link-ico {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(29,200,236,.12);
  flex-shrink: 0;
}
.cg-nav__link-ico--emoji { background: none; border-radius: 0; font-size: 18px; }
.cg-nav__link-ico svg { width: 16px; height: 16px; stroke: #057190; }
.cg-nav__link-title { font-weight: 600; font-size: 14px; display: block; }
.cg-nav__link-desc { font-size: 12px; color: var(--h26-text-dim); display: block; margin-top: 1px; }
.cg-nav__link-text { display: block; }

/* ── TEAM SECTION (shared across pages) ─────────────────────── */
.cg-team-strip { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.cg-team-strip__header { text-align: center; margin-bottom: 56px; }
.cg-team-strip__title { font-family: 'Geist', sans-serif; font-size: clamp(32px, 3.4vw, 48px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 14px; }
.cg-team-strip__sub { color: var(--h26-text-dim); font-size: 17px; line-height: 1.55; margin: 0 auto; max-width: 640px; }
.cg-team-spotlight { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; align-items: stretch; }
.cg-team-feature { background: var(--h26-card, #fff); border: 1px solid var(--h26-stroke, rgba(0,0,0,.08)); border-radius: 24px; padding: 40px; box-shadow: 0 4px 24px -8px rgba(15,18,22,.12); position: relative; overflow: hidden; }
.cg-team-feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 400px 300px at 100% 0%, rgba(29,200,236,.08), transparent 60%); pointer-events: none; }
.cg-team-feature > * { position: relative; z-index: 1; }
.cg-team-feature__head { display: flex; gap: 22px; align-items: center; margin-bottom: 28px; }
.cg-team-feature__photo { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 12px 28px -8px rgba(15,18,22,.25); flex-shrink: 0; }
.cg-team-feature__role { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #057190; font-weight: 600; margin-bottom: 6px; }
.cg-team-feature__name { font-family: 'Geist', sans-serif; font-size: 28px; font-weight: 600; letter-spacing: -0.025em; margin: 0 0 6px; line-height: 1.15; }
.cg-team-feature__quote { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 22px; line-height: 1.45; margin: 0; padding-left: 20px; border-left: 3px solid #1DC8EC; }
@media (max-width: 1100px) { .cg-team-spotlight { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 780px) { .cg-team-feature { padding: 28px 24px; } .cg-team-feature__head { flex-direction: column; text-align: center; gap: 18px; } }

/* Mobile toggle (hidden on desktop) */
.cg-header__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.cg-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--h26-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.cg-header__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.cg-header__toggle.is-active span:nth-child(2) { opacity: 0; }
.cg-header__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.cg-mobile-drawer { background: #fff; border-top: 1px solid var(--h26-stroke); }
.cg-mobile-drawer[hidden] { display: none; }
.cg-mobile-drawer__inner { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 4px; }
.cg-mobile-drawer__group summary { font-size: 15px; font-weight: 500; padding: 12px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--h26-text); }
.cg-mobile-drawer__group summary::-webkit-details-marker { display: none; }
.cg-mobile-drawer__chev { font-size: 18px; color: var(--h26-text-dimmer); }
.cg-mobile-drawer__sub { padding: 4px 0 12px 12px; display: flex; flex-direction: column; gap: 2px; }
.cg-mobile-drawer__sublabel { font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--h26-text-dimmer); padding: 8px 0 4px; }
.cg-mobile-drawer__sub a, .cg-mobile-drawer__link { display: block; padding: 8px 0; font-size: 14px; color: var(--h26-text-soft); }
.cg-mobile-drawer__sub a:hover, .cg-mobile-drawer__link:hover { color: var(--cg-green); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.cg-breadcrumb { background: #fff; border-bottom: 1px solid #e8ecf1; padding: 10px 0; }
.cg-breadcrumb__list { display: flex; align-items: center; gap: 6px; list-style: none; font-size: 13px; color: #667085; }
.cg-breadcrumb__list a { color: #667085; text-decoration: none; transition: color .15s; }
.cg-breadcrumb__list a:hover { color: #1DC8EC; }
.cg-breadcrumb__list li[aria-current="page"] { color: #101828; font-weight: 500; }
.cg-breadcrumb__sep { color: #d0d5dd; font-size: 14px; }

/* ── STICKY TOP GRADIENT ────────────────────────────────────── */
/* ── STICKY BLUE PAGE HAZE — matches body.home-2026::before in main.css ── */
/* Applies to all pages. home-2026 has higher-specificity override in main.css
   so home page still uses its own rule; all other pages get this. */
body::before {
  content: "";
  position: fixed;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 700px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(29,200,236,.14), transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(29,200,236,.05), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Strip the spoke-page hero's own gradient — let body::before show through */
.cg-hero-spoke {
  background: transparent !important;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.h26-footer {
  background: #000;
  color: rgba(255,255,255,0.7);
  padding: 14px 0 0;
}
.h26-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.h26-footer__logo { display: block; margin-bottom: 4px; }
.h26-footer__logo img { height: 90px; width: auto; display: block; }
.h26-footer__logo-img { height: 44px; width: auto; display: block; margin-bottom: 16px; filter: brightness(0) invert(1); }
.h26-footer__col--brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 13px;
}
.h26-footer__ccm-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
  text-decoration: none;
}
.h26-footer__ccm-link svg { opacity: 0.5; flex-shrink: 0; }
.h26-footer__ccm-link:hover { color: var(--cg-green); background: none; }
.h26-footer__ccm-link:hover svg { opacity: 1; }
.h26-footer__partners { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 11px; }
.h26-footer__partner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.h26-footer__partner-dot {
  width: 6px; height: 6px;
  background: var(--cg-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(29,200,236,0.15);
  flex-shrink: 0;
}
.h26-footer__heading {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 11px;
  font-weight: 600;
}
.h26-footer__col a {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}
.h26-footer__col a:hover { color: var(--cg-green); }
.h26-footer__bottom { padding: 8px 0; }
.h26-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.h26-footer__bottom-inner > span {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.h26-footer__bottom-inner > div { display: flex; gap: 24px; }
.h26-footer__bottom-inner a {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.h26-footer__bottom-inner a:hover { color: rgba(255,255,255,0.7); }

/* ── FADE-UP SCROLL ANIMATION ───────────────────────────────── */
.fade-up { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .fade-up.will-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22,0.61,0.36,1), transform 0.65s cubic-bezier(0.22,0.61,0.36,1);
  }
  .fade-up.will-animate.is-visible { opacity: 1; transform: none; }
}

/* ── COMPONENT OVERRIDES ────────────────────────────────────── */
.cg-wd-card__tag { background: rgba(29,200,236,.08) !important; color: #057190 !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 780px) {
  .cg-container { padding: 0 20px; }
  .h26-container { padding: 0 20px; }
  .cg-header { position: relative; }
  .cg-header__inner { grid-template-columns: auto 1fr auto; padding: 0 14px 0 8px; gap: 8px; }
  .cg-header--v2 .cg-header__inner { grid-template-columns: auto 1fr auto; padding: 0 14px 0 8px !important; gap: 8px !important; }
  .cg-header__nav { display: none; }
  .cg-header__right { justify-self: center; }
  .cg-header__right .cg-btn { padding: 7px 11px !important; font-size: 11px !important; white-space: nowrap !important; }
  .cg-header__toggle { display: inline-flex; justify-self: end; }
  .cg-header__logo { min-width: max-content; }
  .cg-header__logo-img { height: 50px !important; width: auto; transform: scale(1.2); transform-origin: left center; }
  .cg-header--v2 .cg-header__logo-img { height: 50px !important; width: auto; transform: scale(1.2); transform-origin: left center; }
  .h26-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cg-fab-cta { font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; }
  .h26-rstack__hint { display: none !important; }
  .h26-rstack__num-circle { background: #e0f6fd !important; }
  .cg-hero-spoke__title { font-size: 52px !important; }
  .cg-hero-spoke__sub { font-size: 19px !important; }
  .cg-hero-spoke__eyebrow { font-size: 10px !important; letter-spacing: .06em !important; padding: 5px 12px !important; }
  .cg-hero-spoke__grid { grid-template-columns: 1fr !important; }
  .cg-hero-spoke__copy { order: 1 !important; }
  .cg-hero-spoke__visual { order: 2 !important; }
}
@media (max-width: 480px) {
  .h26-footer__inner { grid-template-columns: 1fr 1fr; row-gap: 20px; padding-bottom: 20px; }
  .h26-footer__col--brand { grid-column: 1 / -1; }
  .h26-footer__col--brand p { margin-bottom: 0; }
  .h26-footer__logo { display: none; }
  .h26-footer__col:not(.h26-footer__col--brand) { justify-self: center; }
  .h26-footer__bottom-inner { flex-direction: column; align-items: center; gap: 6px; }
}
