/* File: assets/css/about.css */
/* About page styles — complements main.css */

/* ═══════════════════════════════════════════
   SITE NAVBAR (public, overrides main.css)
═══════════════════════════════════════════ */
.site-navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0.6rem 0;
}
.site-navbar.scrolled {
  background-color: var(--kcip-green-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.site-navbar__brand {
  color: var(--kcip-white) !important;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.site-navbar__brand-icon {
  width: 34px;
  height: 34px;
  background-color: var(--kcip-green-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.site-navbar__link {
  color: rgba(255,255,255,.88) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem !important;
  border-radius: 4px;
  transition: color 0.18s, background-color 0.18s;
}
.site-navbar__link:hover {
  color: var(--kcip-white) !important;
  background-color: rgba(255,255,255,.12);
}
.site-navbar__lang {
  color: var(--kcip-white);
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.28rem 0.8rem;
  border-radius: 2rem;
  transition: background-color 0.18s, border-color 0.18s;
}
.site-navbar__lang:hover {
  background-color: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.8);
  color: var(--kcip-white);
}
.site-navbar__cta {
  background-color: var(--kcip-orange);
  color: var(--kcip-white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.38rem 1rem;
  border-radius: 2rem;
  border: none;
  transition: background-color 0.18s, transform 0.12s;
}
.site-navbar__cta:hover {
  background-color: #d96a10;
  color: var(--kcip-white);
  transform: translateY(-1px);
}
/* mobile toggler colour */
.site-navbar__toggler i { color: var(--kcip-white); }

/* ═══════════════════════════════════════════
   SCROLL-REVEAL ANIMATION BASE
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }
.reveal-delay-6 { transition-delay: 0.60s; }

/* ═══════════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════════ */
.about-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--kcip-teal-dark) 0%, var(--kcip-green-dark) 55%, #1B5E20 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
/* Subtle geometric pattern overlay */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(102,187,106,.15) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(244,124,32,.10) 0, transparent 40%);
  pointer-events: none;
}
.about-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.about-hero__content {
  position: relative;
  z-index: 1;
}
.about-hero__eyebrow {
  display: inline-block;
  background-color: rgba(102,187,106,.22);
  border: 1px solid rgba(102,187,106,.45);
  color: var(--kcip-green-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.about-hero__headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--kcip-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.about-hero__headline span {
  color: var(--kcip-green-light);
}
.about-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.about-hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.about-hero__btn-primary {
  background-color: var(--kcip-orange);
  color: var(--kcip-white);
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  border: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background-color 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(244,124,32,.35);
}
.about-hero__btn-primary:hover {
  background-color: #d96a10;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,124,32,.45);
  color: var(--kcip-white);
  text-decoration: none;
}
.about-hero__btn-outline {
  color: var(--kcip-white);
  border: 2px solid rgba(255,255,255,.55);
  background: transparent;
  font-weight: 600;
  padding: 0.68rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background-color 0.18s, border-color 0.18s;
}
.about-hero__btn-outline:hover {
  background-color: rgba(255,255,255,.12);
  border-color: var(--kcip-white);
  color: var(--kcip-white);
  text-decoration: none;
}
/* Scroll cue */
.about-hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* Floating cards on hero right side */
.about-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  color: var(--kcip-white);
  position: absolute;
}
.hero-card--main {
  width: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-card--scope1 {
  width: 160px;
  top: 10%;
  right: 0;
  animation: floatCard 5s ease-in-out infinite;
}
.hero-card--scope2 {
  width: 160px;
  bottom: 10%;
  left: 5%;
  animation: floatCard 5.5s ease-in-out infinite 0.8s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.6);
  margin-bottom: 0.3rem;
}
.hero-card__value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--kcip-green-light);
}
.hero-card__unit {
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
}
.hero-card__trend {
  font-size: 0.78rem;
  color: #81C784;
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.about-section {
  padding: 5rem 0;
}
.about-section--alt {
  background-color: var(--kcip-grey-light);
}
.about-section__eyebrow {
  display: inline-block;
  color: var(--kcip-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.about-section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--kcip-text);
  margin-bottom: 1rem;
}
.about-section__title--white {
  color: var(--kcip-white);
}
.about-section__sub {
  font-size: 1rem;
  color: var(--kcip-text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   SECTION 2 — ABOUT
═══════════════════════════════════════════ */
.about-body-text {
  font-size: 1.05rem;
  color: var(--kcip-text);
  line-height: 1.85;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.about-stat-item {
  background: var(--kcip-white);
  border: 1px solid var(--kcip-border);
  border-radius: var(--kcip-radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--kcip-shadow-sm);
}
.about-stat-item__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--kcip-green-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat-item__label {
  font-size: 0.8rem;
  color: var(--kcip-text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SECTION 3 — KEY FEATURES
═══════════════════════════════════════════ */
.feature-card {
  background: var(--kcip-white);
  border: 1px solid var(--kcip-border);
  border-radius: var(--kcip-radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--kcip-shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.feature-card:hover {
  box-shadow: var(--kcip-shadow-md);
  transform: translateY(-4px);
  border-color: var(--kcip-green-light);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--kcip-green-dark);
  margin-bottom: 1rem;
}
.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--kcip-green-dark), var(--kcip-teal-dark));
  color: var(--kcip-white);
}
.feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--kcip-text);
  margin-bottom: 0.5rem;
}
.feature-card__body {
  font-size: 0.875rem;
  color: var(--kcip-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════
   SECTION 4 — ROADMAP
═══════════════════════════════════════════ */
.about-roadmap {
  background: linear-gradient(160deg, var(--kcip-teal-dark) 0%, #005946 50%, var(--kcip-green-dark) 100%);
  padding: 5rem 0;
}
.roadmap-timeline {
  position: relative;
  padding-left: 2.5rem;
}
/* Vertical line */
.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 0.65rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--kcip-green-light), rgba(102,187,106,.15));
}
.roadmap-item {
  position: relative;
  margin-bottom: 2.25rem;
}
.roadmap-item:last-child {
  margin-bottom: 0;
}
/* Dot */
.roadmap-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--kcip-green-light);
  border: 3px solid var(--kcip-teal-dark);
  box-shadow: 0 0 0 3px rgba(102,187,106,.3);
}
.roadmap-item--current::before {
  background-color: var(--kcip-orange);
  box-shadow: 0 0 0 4px rgba(244,124,32,.3);
}
.roadmap-item__year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--kcip-green-light);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.roadmap-item--current .roadmap-item__year {
  color: var(--kcip-orange);
}
.roadmap-item__text {
  font-size: 0.925rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════
   SECTION 5 — STRATEGIC PILLARS
═══════════════════════════════════════════ */
.pillar-card {
  background: var(--kcip-white);
  border-radius: var(--kcip-radius);
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 1px solid var(--kcip-border);
  box-shadow: var(--kcip-shadow-sm);
  height: 100%;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--kcip-green-dark), var(--kcip-green-light));
  opacity: 0;
  transition: opacity 0.22s;
}
.pillar-card:hover {
  box-shadow: var(--kcip-shadow-md);
  transform: translateY(-5px);
}
.pillar-card:hover::after {
  opacity: 1;
}
.pillar-card__number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--kcip-grey-light);
  line-height: 1;
  user-select: none;
}
.pillar-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.25rem;
}
.pillar-card__icon-wrap--green  { background: #E8F5E9; color: var(--kcip-green-dark); }
.pillar-card__icon-wrap--orange { background: #FFF3E0; color: var(--kcip-orange); }
.pillar-card__icon-wrap--teal   { background: #E0F2F1; color: var(--kcip-teal-dark); }
.pillar-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kcip-text);
  margin-bottom: 0.6rem;
}
.pillar-card__sub {
  font-size: 0.875rem;
  color: var(--kcip-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════
   SECTION 6 — DASHBOARD PREVIEW
═══════════════════════════════════════════ */
.about-preview {
  background: #F8FBF8;
  padding: 5rem 0;
}
.preview-window {
  background: var(--kcip-white);
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden;
}
.preview-window__titlebar {
  background: var(--kcip-green-dark);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.preview-window__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.preview-window__dot--red    { background: #EF5350; }
.preview-window__dot--yellow { background: #FFC107; }
.preview-window__dot--green  { background: #66BB6A; }
.preview-window__title {
  font-size: 0.78rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  margin-left: 0.5rem;
}
.preview-window__body {
  padding: 1.5rem;
}
.preview-chart-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--kcip-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.preview-chart-wrap {
  position: relative;
  height: 220px;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════
   SECTION 7 — CTA
═══════════════════════════════════════════ */
.about-cta {
  background: linear-gradient(135deg, var(--kcip-orange) 0%, #E65100 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,.10) 0, transparent 45%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.07) 0, transparent 40%);
  pointer-events: none;
}
.about-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--kcip-white);
  margin-bottom: 1rem;
}
.about-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.about-cta__btn-primary {
  background-color: var(--kcip-white);
  color: var(--kcip-orange);
  font-weight: 700;
  padding: 0.78rem 2rem;
  border-radius: 2rem;
  border: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background-color 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(0,0,0,.20);
}
.about-cta__btn-primary:hover {
  background-color: #FFF8F5;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  color: var(--kcip-orange);
  text-decoration: none;
}
.about-cta__btn-outline {
  color: var(--kcip-white);
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background-color 0.18s, border-color 0.18s;
}
.about-cta__btn-outline:hover {
  background-color: rgba(255,255,255,.15);
  border-color: var(--kcip-white);
  color: var(--kcip-white);
  text-decoration: none;
}

.about-inline-login {
  margin: 1.5rem auto 0;
  max-width: 760px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.about-inline-login__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-inline-login__field {
  text-align: left;
}

.about-inline-login__field label {
  display: block;
  color: rgba(255,255,255,.95);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.about-inline-login__field input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 0.65rem;
  padding: 0.62rem 0.72rem;
  font-size: 0.9rem;
  background: rgba(255,255,255,.95);
  color: #213225;
}

.about-inline-login__field input:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,.25);
}

.about-inline-login__submit {
  margin-top: 0.8rem;
  width: 100%;
  border: none;
  border-radius: 0.7rem;
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--kcip-orange);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.12s, box-shadow 0.18s;
}

.about-inline-login__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.about-inline-login__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.about-inline-login__status {
  min-height: 1.25rem;
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: 0.85rem;
}

.about-inline-login__status.is-error {
  color: #ffe0e0;
}

.about-inline-login__status.is-success {
  color: #d8ffe0;
}

.about-inline-login__authed {
  color: rgba(255,255,255,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.about-inline-login__authed-label {
  font-size: 0.84rem;
  color: rgba(255,255,255,.8);
}

.about-inline-login__dash-btn {
  min-width: 240px;
}

/* ═══════════════════════════════════════════
   SITE FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background-color: #0D2B0D;
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.875rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.site-footer__brand-icon {
  color: var(--kcip-green-light);
  font-size: 1.3rem;
}
.site-footer__brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kcip-white);
}
.site-footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin: 0;
}
.site-footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 0.75rem;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.site-footer__links a {
  color: rgba(255,255,255,.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer__links a:hover {
  color: var(--kcip-green-light);
}
.site-footer__divider {
  border-color: rgba(255,255,255,.10);
  margin: 2rem 0 1.25rem;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
}
.site-footer__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.site-footer__badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.55rem;
  border-radius: 2rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .about-hero {
    text-align: center;
  }
  .about-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero__actions {
    justify-content: center;
  }
  .about-hero__visual {
    min-height: 200px;
    margin-top: 2rem;
    display: none; /* hide floating cards on tablet/mobile */
  }
  .about-hero__scroll-cue {
    display: none;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .about-hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 4rem;
  }
  .about-section {
    padding: 3.5rem 0;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__badges {
    justify-content: center;
  }

  .about-inline-login {
    padding: 0.85rem;
  }

  .about-inline-login__row {
    grid-template-columns: 1fr;
  }
}
