/* ─── Design System ──────────────────────────────────────────────────────── */
:root {
  --bg:          #fdf6f8;
  --bg-card:     #ffffff;
  --bg-soft:     #f5ecf0;
  --bg-dark:     #1e0a10;
  --text:        #1c1316;
  --text-on-dark:#f5edf0;
  --muted:       #7a5c64;
  --muted-dark:  #9e7a84;
  --line:        #e8d8dd;
  --line-dark:   #3a1820;
  --primary:     #d4688a;
  --primary-dark:#b8506e;
  --primary-dim: rgba(212, 104, 138, 0.10);
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow:      0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.13);
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(253, 246, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ─── Logo ───────────────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  height: 36px;
  width: auto;
  display: block;
}

.logo-mark--sm { height: 26px; }

.logo-wordmark {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}

.logo-wordmark em {
  font-style: normal;
  color: var(--primary);
}

/* ─── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--text);
  background: var(--bg-soft);
}

/* ─── Header end ─────────────────────────────────────────────────────────── */
.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── Burger ─────────────────────────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.burger:hover { border-color: var(--primary); }
.burger:hover .burger-line { background: var(--primary); }

.burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.15s;
  transform-origin: center;
}

.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s, color 0.16s, border-color 0.16s;
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 4px 4px 0 0 var(--text);
  transform: translate(-2px, -2px);
}

.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  padding-left: 2px;
  padding-right: 2px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.925rem;
}

.btn-ghost:hover { color: var(--primary); }

.btn-full { width: 100%; }

/* ─── Contact bracket button ─────────────────────────────────────────────── */
.btn-contact {
  position: relative;
  background: transparent;
  border: none;
  padding: 8px 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.btn-contact::before,
.btn-contact::after {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1;
  display: inline-block;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.18s ease;
}

.btn-contact::before { content: "["; margin-right: 5px; }
.btn-contact::after  { content: "]"; margin-left: 5px; }

.btn-contact:hover { color: var(--primary-dark); }
.btn-contact:hover::before { transform: translateX(-4px); }
.btn-contact:hover::after  { transform: translateX(4px); }

/* ─── Eyebrow ────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-dim);
  padding: 4px 10px;
  border-radius: 4px;
}

.eyebrow--light {
  color: rgba(212, 104, 138, 0.9);
  background: rgba(212, 104, 138, 0.14);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-copy h1 span { color: var(--primary); }

.hero-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ─── Browser chrome ─────────────────────────────────────────────────────── */
.hero-visual { position: relative; }

.browser-chrome {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
}

.browser-bar {
  padding: 10px 16px;
  background: var(--line-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.chrome-address {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-family: "Nunito Sans", sans-serif;
  letter-spacing: 0.02em;
}

.browser-screenshot {
  width: 100%;
  display: block;
}

/* ─── Stats Band ─────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--bg-dark);
  padding: 0;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
  padding: 36px clamp(12px, 3vw, 28px);
  border-right: 1px solid var(--line-dark);
  text-align: center;
  overflow: hidden;
}

.stats-grid article:last-child { border-right: 0; }

.stats-grid h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
  word-break: break-word;
  hyphens: auto;
}

.stats-grid p {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: var(--muted-dark);
}

/* ─── Section Base ───────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ─── Feature Cards ──────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 28px 24px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-top-color: var(--primary);
  background: #fffafc;
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Roles ──────────────────────────────────────────────────────────────── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.role-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.role-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.role-card--featured {
  border-color: var(--primary);
  background: var(--bg-card);
}

.role-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-dim);
  color: var(--primary-dark);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.role-card--featured .role-badge {
  background: var(--primary);
  color: #fff;
}

.role-card p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.role-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.role-list li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.role-list li::before {
  content: "→";
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─── Flow Steps ─────────────────────────────────────────────────────────── */
.flow-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flow-step {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  background: var(--bg-card);
  transition: background 0.2s;
}

.flow-step:last-child { border-right: 0; }
.flow-step:hover { background: #fffafc; }

.flow-num {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.flow-body h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.flow-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Slider ─────────────────────────────────────────────────────────────── */
.section-slider { padding-top: 40px; }

.project-slider {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slider-track {
  position: relative;
  min-height: 500px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.slide-copy {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-card);
}

.slide-copy h3 {
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.slide-copy p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 72ch;
}

.slider-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.slider-btn svg { width: 18px; height: 18px; }

.slider-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-50%) scale(1.04);
}

.slider-btn-prev { left: 14px; }
.slider-btn-next { right: 14px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
  padding: 0;
}

.dot.is-active {
  width: 22px;
  background: var(--primary);
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.section-cta { padding-top: 48px; }

.cta-box {
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: var(--bg-card);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ─── CTA Brand Panel ────────────────────────────────────────────────────── */
.cta-brand {
  position: relative;
  background-color: #2d0e18;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.cta-brand-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='80' height='80' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.cta-brand-blocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-brand-blocks::before,
.cta-brand-blocks::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
}

.cta-brand-blocks::before {
  width: 80px; height: 160px;
  top: 10%; left: 6%;
  box-shadow:
    0      0     0  0   rgba(255,255,255,0.04),
    190px  240px 0  80px rgba(212,104,138,0.06),
    -40px  340px 0  0   rgba(255,255,255,0.03);
}

.cta-brand-blocks::after {
  width: 160px; height: 80px;
  bottom: 14%; right: 8%;
  box-shadow:
    0      0     0  0   rgba(255,255,255,0.04),
    -200px -160px 0 0   rgba(212,104,138,0.05),
    60px   -280px 0 80px rgba(255,255,255,0.025);
}

.cta-brand-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 48px 36px;
}

.cta-brand-emblem {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.cta-brand-emblem img { width: 62%; height: auto; }

.cta-brand-content h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
}

.cta-brand-content > p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  max-width: 34ch;
}

/* ─── CTA Form ───────────────────────────────────────────────────────────── */
.cta-form {
  background: var(--bg-card);
  border: 0;
  border-left: 1.5px solid var(--line);
  border-radius: 0;
  padding: 40px 36px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.cta-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: grid;
  gap: 6px;
  letter-spacing: 0.01em;
}

.cta-form input {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 14px;
  font: inherit;
  font-size: 0.925rem;
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.15s;
}

.cta-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-status.is-success {
  display: block;
  background: rgba(30, 120, 40, 0.08);
  color: #1e5c28;
  border: 1px solid rgba(30, 120, 40, 0.2);
}

.form-status.is-error {
  display: block;
  background: rgba(190, 40, 40, 0.07);
  color: #7a1c1c;
  border: 1px solid rgba(190, 40, 40, 0.18);
}

#demo-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 28px 0;
  background: var(--bg);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-top {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s;
}

.footer-top:hover { color: var(--primary); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero       { min-height: auto; padding: 72px 0 56px; }
  .hero-grid  { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
  .hero-lead  { max-width: 62ch; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid article { border-bottom: 1px solid var(--line-dark); }
  .stats-grid article:nth-child(odd)  { border-right: 1px solid var(--line-dark); }
  .stats-grid article:nth-child(even) { border-right: 0; }
  .cta-box    { grid-template-columns: 1fr; }
  .cta-brand  { border-radius: var(--radius-lg) var(--radius-lg) 0 0; min-height: 340px; }
  .cta-form   { border-left: 0; border-top: 1.5px solid var(--line); }
}

@media (max-width: 720px) {
  .site-header { position: static; }

  .header-row {
    justify-content: space-between;
    padding: 10px 0;
  }

  .burger { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1.5px solid var(--line);
    padding: 10px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    z-index: 40;
    box-shadow: var(--shadow);
  }

  .nav.nav-open { display: flex; }

  .nav a {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .header-end .btn-contact { display: none; }

  .hero { padding: 48px 0 36px; }

  .feature-grid { grid-template-columns: 1fr; }
  .roles-grid   { grid-template-columns: 1fr; }
  .flow-grid    { grid-template-columns: 1fr; }

  .flow-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-step:last-child { border-bottom: 0; }

  .section { padding: 56px 0; }

  .slider-track { min-height: auto; }
  .slide img    { height: 240px; }
  .slider-btn   { width: 36px; height: 36px; top: 34%; }

  .cta-brand { min-height: 280px; }
  .cta-brand-emblem { width: 120px; height: 120px; }
  .cta-brand-content { padding: 32px 24px; gap: 14px; }

  .footer-row { flex-direction: column; text-align: center; gap: 8px; }
}
