/* ════════════════════════════════════════════════════════════
   BASKKO GLOBAL — Design System
   Editorial / Consultancy aesthetic
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@500;600;700&display=swap');

:root {
  --c-bg:        #FAFAF7;
  --c-surface:   #FFFFFF;
  --c-surface-2: #F4F3EE;
  --c-ink:       #0A0A0F;
  --c-ink-2:     #1F2024;
  --c-muted:     #5C5F66;
  --c-soft:      #8A8D94;
  --c-line:      #E5E4DE;
  --c-line-2:    #EDECE6;
  --c-accent:    #1A8AF8;          /* Logo blue */
  --c-accent-2:  #06C8E7;          /* Logo cyan */
  --c-accent-deep: #0B5DC4;        /* Darker blue for hover/text */
  --c-dark:      #1E3252;          /* Soft deep blue for nav/footer */
  --c-grad:      linear-gradient(135deg, #1A8AF8 0%, #06C8E7 100%);

  --ff-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-display: 'Inter Tight', 'Inter', -apple-system, sans-serif;

  --container: 1200px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; }
::selection { background: var(--c-ink); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Typography ───────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.08;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); letter-spacing: -0.028em; }
h3 { font-size: 1.2rem; line-height: 1.35; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; line-height: 1.4; letter-spacing: -0.012em; }
h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--c-ink-2); }
p  { margin: 0; color: var(--c-muted); }

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-accent);
  margin: 0 0 18px;
}
.sec-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--c-grad);
  border-radius: 2px;
}
.sec-title { max-width: 720px; margin: 0 0 14px; }
.sec-sub {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-bottom: 56px;
}
.grad-text {
  background: var(--c-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.025em;
}

/* ─── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 16px -8px rgba(11, 93, 196, 0.5);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 12px 24px -10px rgba(11, 93, 196, 0.55);
  filter: brightness(1.04);
}
.btn-outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-outline:hover {
  border-color: var(--c-ink);
  background: var(--c-surface);
}
.btn svg { transition: transform 0.18s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* ─── Navigation ───────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 60px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.nav-wordmark { display: none; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  transition: color 0.15s var(--ease);
}
.nav-menu a:hover { color: #fff; }
.nav-menu a.active { color: #fff; }
.nav-cta {
  margin-left: 12px;
  padding: 9px 18px !important;
  background: var(--c-grad);
  color: #fff !important;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px -6px rgba(11, 93, 196, 0.45);
}
.nav-cta:hover { filter: brightness(1.05); color: #fff !important; }

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  color: #fff;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.06); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-open { display: none; }
.nav-open .nav-toggle .icon-close { display: inline; }
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 20, 0.55);
  backdrop-filter: blur(2px);
  z-index: 49;
}
.nav.nav-open .nav-backdrop { display: block; }
body.nav-locked { overflow: hidden; }

/* ─── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--c-bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(26, 138, 248, 0.10), transparent);
  pointer-events: none;
}
.hero-glow2 { display: none; }
.hero-inner { max-width: 880px; position: relative; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-ink-2);
  margin-bottom: 32px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.hero h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--c-muted);
  max-width: 660px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Metrics bar ──────────────────────────── */
.metrics {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-surface);
  padding: 36px 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.metric-item {
  text-align: left;
  padding: 0 8px 0 20px;
  border-left: 1px solid var(--c-line-2);
}
.metric-item:first-child { border-left: none; padding-left: 8px; }
.metric-num {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  background: var(--c-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 4px;
  line-height: 1.1;
}
.metric-lbl {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin: 0;
}

/* ─── Sections ─────────────────────────────── */
.section { padding: 110px 0; position: relative; }
.section-alt {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

/* ─── Solutions grid ───────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sol-card {
  background: var(--c-surface);
  padding: 40px 36px;
  transition: background 0.2s var(--ease);
  position: relative;
}
.sol-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--c-grad);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.sol-card:hover { background: var(--c-surface-2); }
.sol-card:hover::before { opacity: 1; }
.sol-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26, 138, 248, 0.10), rgba(6, 200, 231, 0.10));
  color: var(--c-accent);
}
.sol-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sol-card h3 { margin-bottom: 12px; color: var(--c-ink); }
.sol-card p { font-size: 0.96rem; line-height: 1.6; color: var(--c-muted); margin: 0; }

/* ─── About / Company ──────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-body p {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--c-ink-2);
  margin-bottom: 18px;
}
.company-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px;
}
.company-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--c-line-2);
}
.company-card-top img { width: 44px; height: 44px; object-fit: contain; }
.company-card-meta { line-height: 1.3; }
.company-card-meta .sec-eyebrow { margin: 0 0 4px; font-size: 0.66rem; }
.company-card-meta .sec-eyebrow::before { display: none; }
.company-card-meta strong {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.cc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line-2);
  font-size: 0.92rem;
}
.cc-item:last-child { border-bottom: none; }
.cc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
}
.cc-item span:nth-child(2) { color: var(--c-muted); }
.cc-item strong {
  font-weight: 500;
  color: var(--c-ink);
  text-align: right;
}

/* ─── Why grid ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  margin-top: 16px;
}
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.why-num {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--c-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 4px;
  letter-spacing: 0.04em;
}
.why-body h4 { margin: 0 0 8px; }
.why-body p { font-size: 0.97rem; line-height: 1.62; color: var(--c-muted); margin: 0; }

/* ─── CTA banner ───────────────────────────── */
.cta-banner {
  background: var(--c-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 100% 100%, rgba(26, 138, 248, 0.28), transparent);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin-bottom: 12px;
}
.cta-banner h2 .grad-text {
  background: linear-gradient(135deg, #5BB1FB 0%, #4DDDF2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 600;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  max-width: 540px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--c-ink);
  border-color: #fff;
}
.cta-banner .btn-primary:hover { background: #F4F3EE; }
.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.cta-banner .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* ─── Footer ───────────────────────────────── */
.footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-brand-logo img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.footer-brand-logo span { display: none; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}
.footer-col h5 { margin-bottom: 18px; color: #fff; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s var(--ease);
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   Inner pages
   ════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg);
}
.page-hero .sec-eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 640px;
  margin: 0;
}

.legal-section { padding: 72px 0 96px; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0 96px;
}
.legal-content > h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.legal-content .updated,
.legal-content .legal-meta {
  display: inline-block;
  padding: 6px 14px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-bottom: 40px;
}
.legal-content h2 {
  margin-top: 56px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 32px; margin-bottom: 10px; font-size: 1.05rem; }
.legal-content p, .legal-content li {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--c-ink-2);
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin: 14px 0 24px;
}
.legal-content ul li { list-style: disc; margin-bottom: 8px; }
.legal-content ol li { list-style: decimal; margin-bottom: 8px; }
.legal-content a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content strong { color: var(--c-ink); font-weight: 600; }
.legal-meta {
  display: inline-block;
  padding: 6px 14px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-bottom: 32px;
}

/* Legal page section dividers */
.legal-content h2 + h2 { margin-top: 56px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding: 72px 0 96px;
}
.contact-card,
.merchant-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}
.contact-card h3,
.merchant-card h3 { margin: 0 0 20px; font-size: 1.05rem; }
.contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line-2);
  font-size: 0.95rem;
}
.contact-row:last-child { border-bottom: none; }
.contact-row a { color: var(--c-ink); font-weight: 500; }
.contact-row a:hover { color: var(--c-accent); }
.c-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.merchant-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--c-line-2);
}
.merchant-row:last-child { border-bottom: none; }
.merchant-row span:first-child { color: var(--c-muted); font-weight: 500; }
.merchant-row span:last-child { color: var(--c-ink); font-weight: 500; }

/* ─── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .about-grid { gap: 56px; }
  .why-grid { gap: 40px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .container { padding: 0 22px; }
  .nav .container { height: 72px; }
  .nav-logo img { height: 50px; }
  .nav-toggle { display: inline-flex; }
  .nav > .container > nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    background: var(--c-dark);
    z-index: 50;
    padding: 88px 28px 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.28s var(--ease);
    overflow-y: auto;
  }
  .nav.nav-open > .container > nav { transform: translateX(0); }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-menu li:not(:last-child) { display: block; }
  .nav-menu a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
  }
  .nav-menu a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
  .nav-menu li:last-child { margin-top: 16px; }
  .nav-cta { width: 100%; text-align: center; }

  .hero { padding: 72px 0 56px; }
  .section { padding: 72px 0; }
  .solutions-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .metric-item:nth-child(3) { border-left: none; padding-left: 8px; }
  .cta-banner { grid-template-columns: 1fr; padding: 44px 32px; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .nav .container { height: 64px; }
  .nav-logo img { height: 42px; }
  .hero { padding: 56px 0 48px; }
  .hero-tag { font-size: 0.72rem; padding: 6px 12px; margin-bottom: 24px; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.3rem); margin-bottom: 20px; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 32px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .metrics { padding: 28px 0; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .metric-item { padding: 0 4px 0 14px; }
  .metric-item:nth-child(3) { padding-left: 4px; }
  .metric-num { font-size: 1.35rem; }
  .section { padding: 56px 0; }
  .sec-eyebrow { font-size: 0.7rem; }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .sol-card { padding: 28px 22px; }
  .why-grid { gap: 28px; }
  .why-item { gap: 16px; }
  .company-card, .contact-card, .merchant-card { padding: 22px; }
  .cta-banner { padding: 32px 22px; border-radius: var(--radius); }
  .cta-banner h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer { padding: 56px 0 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .merchant-row { grid-template-columns: 1fr; gap: 4px; }
  .merchant-row span:last-child { font-size: 0.92rem; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; align-items: flex-start; }
  .contact-row .c-tag { justify-self: start; }
  .legal-content { padding: 48px 0 64px; }
  .legal-content h2 { font-size: 1.3rem; margin-top: 40px; }
  .page-hero { padding: 48px 0 36px; }
}
