/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fafafa;
  --bg-alt: #f0f0f2;
  --text: #111113;
  --text-muted: #6b6b6e;
  --accent: #111113;
  --accent-text: #fafafa;
  --border: rgba(17, 17, 19, 0.08);
  --font: 'DM Sans', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.common-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text);
}

.logo-bold {
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 13px;
  color: var(--text);
  transition: opacity 0.2s;
}

.main-nav a:hover {
  opacity: 0.6;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 30px;
  padding: 4px 4px 4px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.cta-btn:hover {
  opacity: 0.85;
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-text);
  border-radius: 50%;
}

.arrow-circle svg {
  stroke: var(--accent) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 70px 0 60px;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  padding: 0 60px;
}

.hero-section h1 {
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -5px;
  color: var(--text);
  max-width: 100%;
  margin-bottom: 40px;
}


/* Trust Bar — between hero and about */
.trust-bar {
  background: var(--bg);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.trust-logo:hover {
  opacity: 1;
}

.trust-logo svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .trust-bar-inner {
    flex-direction: column;
    gap: 24px;
  }
  .trust-logos {
    justify-content: center;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 24px 0;
  }
  .trust-bar-inner {
    padding: 0 20px;
  }
  .trust-logos {
    gap: 20px;
  }
  .trust-logo span {
    display: none;
  }
}

/* Impact Stats */
.impact-stats {
  background: var(--bg);
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}

.impact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.impact-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.impact-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.impact-stat {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
}

.impact-value {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--text);
}

.impact-unit {
  font-size: 0.5em;
  font-weight: 400;
  margin-left: 4px;
  letter-spacing: -0.5px;
  color: var(--text-muted);
}

.impact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}

.impact-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .impact-stats {
    padding: 60px 0;
  }
  .impact-inner {
    padding: 0 20px;
  }
  .impact-grid {
    flex-direction: column;
    gap: 40px;
  }
  .impact-divider {
    width: 60px;
    height: 1px;
  }
  .impact-stat {
    padding: 0;
  }
}

/* Value Props Strip */
.value-strip {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.value-prop {
  display: flex;
  flex-direction: column;
}

.value-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.4;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.value-prop h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.value-prop p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 320px;
}

@media (max-width: 768px) {
  .value-strip-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 19, 0.15);
  font-size: 12px;
  color: var(--text);
}

.section-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* About Section */
.about-section {
  padding: 140px 0;
}

.about-section h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  max-width: 700px;
  margin-bottom: 32px;
}

.about-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Case Studies Section */
.case-studies-section {
  padding: 140px 0 0;
}

.portfolio-header {
  max-width: 1400px;
  margin: 0 auto 100px;
  padding: 0 48px;
  text-align: center;
}

.portfolio-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  margin-bottom: 32px;
}

.portfolio-header h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .portfolio-header {
    padding: 0 20px;
    margin-bottom: 60px;
  }
  .portfolio-header h2 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
}

/* Full-screen stacking use case panels */
.case-stack {
  position: relative;
}

.case-panel {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 -1px 0 var(--border);
}

.case-panel:nth-child(1) { z-index: 1; }
.case-panel:nth-child(2) { z-index: 2; }
.case-panel:nth-child(3) { z-index: 3; }
.case-panel:nth-child(4) { z-index: 4; }


/* Noise overlay — hidden */
.case-panel .noise-overlay {
  display: none;
}

/* Use case content */
.case-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
}

.case-content h3 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 80px;
}

.case-ps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-bottom: 0;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.case-ps-block label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.case-ps-block p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-muted);
}

.case-ps-block.solution label {
  color: var(--text);
}

.case-ps-block.solution p {
  color: var(--text);
  font-weight: 400;
}

/* Stats row */
.case-stats {
  display: flex;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -1.5px;
  color: var(--text);
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Tool pills */
.tool-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 48px;
}

.tool-pill {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 19, 0.1);
  background: rgba(17, 17, 19, 0.03);
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .case-content {
    padding: 0 24px;
    min-height: 60vh;
  }
  .case-content h3 {
    font-size: 36px;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
  }
  .case-ps {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .case-ps-block p {
    font-size: 17px;
  }
}

.floating-icons { display: none; }

/* Dark theme for sections AFTER use cases */
.dark-mode-section {
  background: #111113 !important;
  color: #f0f0f2 !important;
}
.dark-mode-section h2,
.dark-mode-section h3,
.dark-mode-section p,
.dark-mode-section li,
.dark-mode-section span,
.dark-mode-section a {
  color: #f0f0f2 !important;
}
.dark-mode-section .section-number {
  border-color: rgba(240, 240, 242, 0.2) !important;
}
.dark-mode-section .section-label {
  color: rgba(240, 240, 242, 0.5) !important;
}
.dark-mode-section p,
.dark-mode-section li {
  color: rgba(240, 240, 242, 0.6) !important;
}
.dark-mode-section .service-category,
.dark-mode-section .process-step,
.dark-mode-section .team-card {
  background: rgba(240, 240, 242, 0.04) !important;
  border-color: rgba(240, 240, 242, 0.08) !important;
}
.dark-mode-section .service-category h3 {
  border-color: rgba(240, 240, 242, 0.08) !important;
}
.dark-mode-section .step-number {
  border-color: rgba(240, 240, 242, 0.15) !important;
}
.dark-mode-section .cta-btn {
  background: #f0f0f2 !important;
  color: #111113 !important;
}
.dark-mode-section .arrow-circle {
  background: #111113 !important;
}
.dark-mode-section .arrow-circle svg,
.dark-mode-section .arrow-circle svg path {
  stroke: #f0f0f2 !important;
}

@media (max-width: 768px) {
  .glass-card {
    padding: 32px 24px;
    margin: 0 16px;
  }
  .glass-card h3 {
    font-size: 24px;
  }
  .float-icon {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* About Us Section */
.about-us-section {
  padding: 160px 0 80px;
  position: relative;
  z-index: 10;
  background: var(--bg);
}

/* Founder spotlight */
.founder-row {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  gap: 100px;
  width: 100%;
}

.founder-photo {
  width: 480px;
  min-height: 620px;
  flex-shrink: 0;
  border-radius: 28px;
}

.founder-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
  flex: 1;
}

.founder-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.founder-name {
  display: block;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.founder-role {
  display: block;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.founder-info p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.founder-info p:last-of-type {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 500;
}

.founder-info .founder-cta {
  margin-top: 32px;
  align-self: flex-start !important;
  width: fit-content !important;
  max-width: max-content !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
}

/* Certifications — full width under the founder row */
.certs-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 48px 0;
}

.certs-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.cert-badge:hover {
  opacity: 1;
}

.cert-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .founder-row {
    gap: 60px;
  }
  .founder-photo {
    width: 360px;
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .founder-row {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }
  .founder-photo {
    width: 100%;
    min-height: 350px;
  }
  .founder-name {
    font-size: 36px;
  }
}

/* Services Section */
.services-section {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
  z-index: 10;
}

.services-layout {
  display: flex;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: flex-start;
}

.services-left {
  width: 400px;
  flex-shrink: 0;
  position: sticky;
  top: 140px;
}

.services-left h2 {
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2px;
}

.services-right {
  flex: 1;
}

.service-row {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  outline: none;
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-row h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -1px;
  transition: opacity 0.2s;
}

.service-detail {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.service-row:hover .service-detail,
.service-row:focus .service-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 16px;
}

.service-row:hover h3,
.service-row:focus h3 {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .services-layout {
    flex-direction: column;
    gap: 48px;
    padding: 0 20px;
  }
  .services-left {
    width: 100%;
    position: static;
  }
  .service-row h3 {
    font-size: 24px;
  }
}

/* Process / How We Work Section */
.process-section {
  padding: 140px 0;
  position: relative;
  z-index: 10;
  background: var(--bg);
}

.process-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.process-section h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.process-card {
  background: var(--bg);
  padding: 80px 64px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.35;
  margin-bottom: 24px;
}

.process-card h3 {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.process-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 440px;
}

@media (max-width: 768px) {
  .process-wrap {
    padding: 0 20px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    padding: 48px 32px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  padding: 140px 0;
  text-align: center;
  position: relative;
  z-index: 10;
  background: var(--bg);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
}

.calendly-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
}

.calendly-wrap .calendly-inline-widget {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Hide duplicate Calendly loading spinner */
.calendly-inline-widget .calendly-spinner {
  display: none !important;
}

.cta-btn-large {
  padding: 6px 6px 6px 24px;
  font-size: 16px;
}

.cta-btn-large .arrow-circle {
  width: 36px;
  height: 36px;
}

/* Footer */
.site-footer {
  padding: 90px 0 40px;
  background: var(--text);
  color: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.site-footer .logo-text {
  color: var(--bg);
}

.site-footer .cta-btn {
  background: var(--bg);
  color: var(--text);
}

.site-footer .arrow-circle {
  background: var(--text);
}

.site-footer .arrow-circle svg {
  stroke: var(--bg) !important;
}

.site-footer .arrow-circle svg path {
  stroke: var(--bg) !important;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.footer-cta-col {
  max-width: 400px;
}

.footer-label {
  display: block;
  font-size: 13px;
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 32px;
}

.footer-links-col {
  display: flex;
  gap: 80px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-group-title {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 6px;
}

.footer-link-group a {
  font-size: 14px;
  color: var(--bg);
  transition: opacity 0.2s;
}

.footer-link-group a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.5);
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 0.7;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .case-grid,
  .team-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .common-wrap {
    padding: 0 20px;
  }
  .header-inner {
    padding: 0 20px;
  }
  .main-nav {
    display: none;
  }
  .hero-section h1 {
    font-size: 48px;
    letter-spacing: -1px;
  }
  .case-grid,
  .team-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 60px;
  }
  .footer-links-col {
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
