﻿:root {
  --bg: #ffffff;
  --text: #0f1724;
  --muted: #64748b;
  --line: #dbe3ee;
  --accent: #000000;
  --radius: 12px;
  --site-max: 1320px;
  --site-gutter: 24px;
  --heading-font: "Montserrat", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 17.5px;
}

h1,
h2,
.faq-kicker,
.section-kicker,
.portfolio-placeholder {
  font-family: var(--heading-font);
}

main {
  padding-top: 82px;
}

.container {
  max-width: var(--site-max);
  margin: 8px auto;
  padding: 0 var(--site-gutter);
}

section {
  padding: 68px 0;
  border-bottom: 1px solid #d1d5db;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p.lead {
  margin: 0;
  max-width: 76ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.muted {
  color: var(--muted);
}

.section-kicker,
.faq-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  font-weight: 600;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding-top: 12px;
}

.header-shell {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: flex;
  justify-content: center;
  align-items: center;
}

header .nav {
  margin: 0;
  width: max-content;
  max-width: 100%;
  padding: 12px 22px;
  border-radius: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

header.is-scrolled .nav {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.menu-logo {
  height: 40px;
  width: auto;
  border-radius: 9px;
  display: block;
  transform: translateY(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: #4b5563;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  color: #000000;
  background: transparent;
  transform: none;
}

.nav a.active {
  color: #4b5563;
  background: transparent;
}

.nav a.active:hover {
  color: #000000;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
  max-width: var(--site-max);
  margin: 14px auto 16px;
  padding: 60px var(--site-gutter);
}

.hero-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 30px;
  align-items: center;
}

.hero-meta {
  flex: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4b5563;
  font-weight: 700;
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111827;
}

.hero-title {
  margin: 0 0 14px;
  max-width: 18ch;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(30px, 4.2vw, 48px);
}

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

.hero-art {
  flex: 0 0 360px;
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.hero-art img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(15, 23, 36, 0.06);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-ghost {
  border: 1px solid #e6eef6;
  background: transparent;
  color: var(--text);
}

.brand-strip {
  margin: 36px 0 16px;
  overflow: hidden;
}

.brand-strip-copy {
  margin: 0 0 16px;
}

.brand-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.brand-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 88%, #ffffff 100%);
}

.brand-track {
  display: flex;
  gap: 18px;
  min-width: max-content;
  will-change: transform;
}

.brand-item {
  flex: 0 0 170px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 36, 0.8);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.card {
  background: #ffffff;
  color: var(--text);
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

#home .grid {
  gap: 18px;
}

#home .card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

#home .card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #111827 0%, #334155 100%);
  opacity: 0.85;
}

#home .card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

#home .card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

#home .card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.portfolio-layout {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.portfolio-card {
  min-height: 360px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.portfolio-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.portfolio-placeholder {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.portfolio-widzety {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.widget {
  flex: 1 1 calc(50% - 6px);
  background: #f8fafc;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widzet-etykieta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.widzet-wartosc {
  font-weight: 700;
}

.portfolio-image {
  flex: 0 0 320px;
  min-height: 260px;
  background: #f7f7f7;
  border: 1px dashed #d1d5db;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

#cennik .plan-title {
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 6px;
}

#cennik .price {
  font-weight: 900;
  font-size: 28px;
  margin: 10px 0;
  color: var(--text);
}

#cennik .price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#cennik .old-price {
  font-size: 15px;
  color: #6b7280;
  text-decoration: line-through;
}

#cennik .discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

#cennik .features {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

#cennik .features li {
  padding: 8px 0;
  border-top: 1px dashed rgba(15, 23, 36, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

#cennik .features li::before {
  content: "?";
  color: var(--accent);
  font-weight: 700;
  min-width: 18px;
}

#cennik .card .cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.card.plan.standard {
  position: relative;
  border: 2px solid #000000;
  background-color: #f8fafc;
  overflow: visible;
  color: #0f1724;
}

.card.plan.standard .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.about-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 36px;
  border-radius: 22px;
  border: 1px solid #e7ecf2;
  max-width: 1080px;
  margin: 28px auto 0;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

section.revealed .about-card {
  opacity: 1;
  transform: translateY(0);
}

.about-content {
  display: grid;
  gap: 18px;
}

.about-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-logo {
  height: 46px;
  width: auto;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 4px;
  background: #ffffff;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  font-weight: 700;
}

.about-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111827;
}

.about-text {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
  margin: 0;
}

.about-points,
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-point,
.about-stat {
  background: #ffffff;
  border: 1px solid #e7ecf2;
  border-radius: 12px;
  padding: 14px 14px 14px 16px;
}

.about-point strong,
.about-stat strong {
  display: block;
}

.about-point strong {
  font-size: 15px;
  margin: 0 0 4px;
}

.about-point span,
.about-stat span {
  color: #64748b;
  font-size: 14px;
}

.about-stat strong {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

#faq {
  margin-top: 12px;
  width: 100%;
}

.faq-wrap {
  margin-top: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 24px 30px;
  width: 100%;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.11);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: #111827;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: #9ca3af;
}

.faq-item.is-open summary::after {
  content: "-";
  color: #111827;
}

.faq-item p {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  padding: 0 2px;
  color: #6b7280;
  line-height: 1.68;
  font-size: 15px;
  transition: max-height 0.46s ease, opacity 0.34s ease, transform 0.34s ease, padding 0.34s ease;
}

.faq-item.is-open p {
  max-height: var(--faq-open-height, 360px);
  opacity: 1;
  transform: translateY(0);
  padding: 0 4px 24px;
}

.contact-form {
  max-width: 760px;
  margin: 36px auto 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  color: #334155;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group label::after {
  content: " *";
  color: #111827;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dbe4ee;
  border-radius: 11px;
  font-size: 15px;
  font-family: inherit;
  background: #ffffff;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

.form-group textarea {
  min-height: 138px;
  resize: vertical;
}

.field-error {
  margin-top: 8px;
  font-size: 13px;
  color: #111827;
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-group.invalid .field-error {
  opacity: 1;
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px 22px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 11px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.footer {
  margin-top: 20px;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #fcfcfd 0%, #f8fafc 100%);
  text-align: center;
  padding: 22px var(--site-gutter);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 14px;
}

.footer-links a {
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: #111827;
}

.footer small {
  color: #6b7280;
  font-size: 13px;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 21000;
}

.privacy-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.privacy-modal-card {
  width: min(560px, calc(100% - 28px));
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.2);
  padding: 26px 22px 20px;
  color: #0f172a;
}

.privacy-modal-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.privacy-modal-card p {
  margin: 0 0 18px;
  color: #475569;
  line-height: 1.7;
  font-size: 15px;
}

.privacy-modal-actions {
  display: flex;
  justify-content: flex-end;
}

.privacy-close-btn {
  border: none;
  background: #000000;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

main section > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

main section.revealed > * {
  opacity: 1;
  transform: none;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .portfolio-card {
    flex-direction: column;
  }

  .portfolio-image {
    width: 100%;
    flex: 1;
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  :root {
    --site-gutter: 16px;
  }

  section {
    padding: 52px 0;
  }

  h2 {
    font-size: clamp(20px, 4.8vw, 24px);
    line-height: 1.2;
  }

  p.lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-points,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 15px 2px;
  }

  .faq-item p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 104px;
  }

  header {
    padding-top: 14px;
  }

  header .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "links links";
    align-items: center;
    gap: 12px 12px;
    width: 100%;
    border-radius: 20px;
    padding: 14px 16px;
    position: relative;
  }

  .logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    align-self: center;
    min-height: 44px;
  }

  .menu-toggle {
    grid-area: toggle;
    display: flex;
    justify-self: end;
    align-self: center;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px;
    border-radius: 10px;
    margin-right: 2px;
    margin-top: 5px;
  }

  .menu-logo {
    height: 42px !important;
    width: auto;
    display: block;
    margin: 0;
    transform: translateY(5px);
  }

  .nav-links {
    grid-area: links;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-links.active {
    display: flex;
    margin-top: 2px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero {
    margin: 14px auto 0;
    padding: 20px 16px;
  }

  #home .grid {
    gap: 14px;
  }

  #home .card {
    padding: 20px 18px;
    border-radius: 14px;
  }

  #home .card h3 {
    font-size: 18px;
  }

  .hero-card {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px;
  }

  .hero-meta,
  .hero-meta .hero-title,
  .hero-meta .lead {
    text-align: center;
  }

  .hero-tag {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title,
  .hero-meta .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-art {
    flex-basis: 100%;
    width: 100%;
    max-width: 520px;
  }

  .hero-art img {
    height: 220px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .brand-carousel::before {
    background: none;
  }

  .portfolio-card {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }

  .portfolio-card-content {
    width: 100%;
    min-width: 0;
  }

  .portfolio-placeholder {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
  }

  .portfolio-widzety {
    width: 100%;
    gap: 10px;
  }

  .widget {
    flex: 1 1 100%;
  }

  .portfolio-image {
    width: 100%;
    flex: 0 0 auto;
    min-height: 180px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 20px 16px;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-card {
    padding: 20px;
    margin: 20px 10px;
  }

  .about-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-stat strong {
    font-size: 22px;
  }
}
