/* =========================================
   LINK2PRICE
   Grundlayout + Hero
   ========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #f4f7fa;
}


/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(8, 25, 43, 0.93) 0%,
      rgba(10, 31, 52, 0.82) 42%,
      rgba(10, 31, 52, 0.48) 68%,
      rgba(10, 31, 52, 0.30) 100%
    ),
    url("hero-desktop.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
}


/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;

  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  text-decoration: none;

  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 500;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}


/* =========================================
   HERO CONTENT
   ========================================= */

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;

  flex: 1;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;

  gap: 70px;

  padding: 70px 0 90px;
}

.hero-copy {
  max-width: 760px;
}

.status-badge {
  display: inline-flex;

  padding: 8px 13px;
  margin-bottom: 25px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.84);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.hero h1 {
  max-width: 760px;

  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 0.98;

  letter-spacing: -0.055em;

  margin-bottom: 28px;
}

.hero-description {
  max-width: 620px;

  font-size: 1.18rem;
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.88);

  margin-bottom: 20px;
}

.hero-features {
  font-size: 0.92rem;
  font-weight: 600;

  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 34px;
}

.hero-features span {
  color: #f0a536;
  padding: 0 7px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 0 24px;

  border-radius: 12px;

  background: #ffffff;
  color: #163b5c;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.23);
}


/* =========================================
   SHOPPING LIST
   ========================================= */

.hero-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-list img {
  width: min(100%, 430px);
  height: auto;

  display: block;

  transform: rotate(2deg);

  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.38));
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .navbar {
    width: min(100% - 32px, 1180px);
  }

  .nav-links {
    gap: 18px;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);

    grid-template-columns: 1fr 0.72fr;
    gap: 30px;
  }

  .hero-list img {
    width: min(100%, 330px);
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

  .hero {
    min-height: 100svh;

    background:
      linear-gradient(
        180deg,
        rgba(8, 25, 43, 0.94) 0%,
        rgba(8, 25, 43, 0.82) 52%,
        rgba(8, 25, 43, 0.55) 100%
      ),
      url("hero-mobile.png");

    background-size: cover;
    background-position: center;
  }

  .navbar {
    width: calc(100% - 28px);
    min-height: 74px;
  }

  .brand {
    font-size: 1.1rem;
    gap: 9px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    gap: 34px;

    padding: 55px 0 60px;
  }

  .status-badge {
    font-size: 0.62rem;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.96;

    margin-bottom: 24px;
  }

  .hero-description {
    font-size: 1.02rem;
    line-height: 1.55;

    margin-bottom: 18px;
  }

  .hero-features {
    font-size: 0.8rem;
    line-height: 1.6;

    margin-bottom: 28px;
  }

  .hero-button {
    min-height: 48px;
    padding: 0 20px;
  }

  .hero-list {
    width: 100%;
  }

  .hero-list img {
    width: min(82%, 330px);
  }
}

/* =========================================
   SO FUNKTIONIERT'S
   ========================================= */

.how-it-works {
  background: #f4f7fa;
  color: #17354f;

  padding: 110px 0 120px;
}

.section-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}


/* Überschrift */

.section-heading {
  max-width: 900px;
  margin-bottom: 32px;
}

.section-eyebrow {
  margin-bottom: 14px;

  color: #44739b;

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-heading h2 {
  margin-bottom: 20px;

  color: #17354f;

  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-intro {
  max-width: 720px;

  color: #5c7183;

  font-size: 1.08rem;
  line-height: 1.7;
}


/* Hinweis Produktvorschau */

.preview-notice {
  max-width: 900px;

  margin-bottom: 52px;
  padding: 16px 19px;

  border: 1px solid #dbe4eb;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.62);

  color: #6b7d8c;

  font-size: 0.84rem;
  line-height: 1.6;
}

.preview-notice strong {
  color: #355b7a;
}


/* =========================================
   MOCKUP GRID
   ========================================= */

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.mockup-card {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(37, 70, 98, 0.10);
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 18px 50px rgba(27, 54, 78, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mockup-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 24px 60px rgba(27, 54, 78, 0.13);
}

.mockup-card img {
  display: block;

  width: 100%;
  height: auto;
}

/* Nummer 01–04 */

.mockup-number {
  position: absolute;
  z-index: 2;

  top: 16px;
  left: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255, 255, 255, 0.50);
  border-radius: 12px;

  background: rgba(20, 55, 84, 0.88);

  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;

  box-shadow: 0 7px 20px rgba(20, 45, 66, 0.18);

  backdrop-filter: blur(8px);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .how-it-works {
    padding: 90px 0 100px;
  }

  .section-container {
    width: min(100% - 32px, 1180px);
  }

  .mockup-grid {
    gap: 22px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

  .how-it-works {
    padding: 75px 0 80px;
  }

  .section-container {
    width: calc(100% - 28px);
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .section-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .preview-notice {
    margin-bottom: 34px;

    padding: 14px 15px;

    font-size: 0.78rem;
  }

  .mockup-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .mockup-card {
    border-radius: 18px;
  }

  .mockup-number {
    top: 12px;
    left: 12px;

    width: 40px;
    height: 40px;

    border-radius: 10px;
  }

}

/* =========================================
   PREMIUM
   ========================================= */

.premium-section {
  position: relative;

  padding: 115px 0 125px;

  background:
    linear-gradient(
      180deg,
      #eaf0f5 0%,
      #edf3f7 100%
    );

  color: #17354f;

  overflow: hidden;
}


/* Sehr dezente Hintergrundtiefe */

.premium-section::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  top: -260px;
  right: -180px;

  border-radius: 50%;

  background: rgba(49, 103, 148, 0.07);

  pointer-events: none;
}


/* =========================================
   PREMIUM HEADING
   ========================================= */

.premium-heading {
  position: relative;
  z-index: 1;

  max-width: 950px;

  margin-bottom: 42px;
}

.premium-label {
  display: inline-flex;
  align-items: center;

  margin-bottom: 22px;
  padding: 7px 12px;

  border-radius: 999px;

  background: #173f63;
  color: #ffffff;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.premium-heading .section-eyebrow {
  margin-bottom: 13px;
}

.premium-heading h2 {
  margin-bottom: 22px;

  color: #17354f;

  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.premium-intro {
  max-width: 760px;

  color: #5b7183;

  font-size: 1.08rem;
  line-height: 1.7;
}


/* =========================================
   PREMIUM BENEFITS
   ========================================= */

.premium-benefits {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-bottom: 48px;
}

.premium-benefit {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 20px;

  border: 1px solid rgba(37, 70, 98, 0.10);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.62);
}

.benefit-icon {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 10px;

  background: #e3ebf2;
  color: #24577f;

  font-size: 1rem;
  font-weight: 800;
}

.premium-benefit strong {
  display: block;

  margin-bottom: 6px;

  color: #234763;

  font-size: 0.92rem;
}

.premium-benefit p {
  color: #687d8d;

  font-size: 0.82rem;
  line-height: 1.55;
}


/* =========================================
   PREMIUM MOCKUPS
   ========================================= */

.premium-mockups {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 32px;

  align-items: start;
}

.premium-mockup-card {
  position: relative;

  overflow: hidden;

  border: 1px solid rgba(37, 70, 98, 0.11);
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 18px 50px rgba(27, 54, 78, 0.09);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.premium-mockup-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 24px 60px rgba(27, 54, 78, 0.14);
}

.premium-mockup-card img {
  display: block;

  width: 100%;
  height: auto;
}


/* =========================================
   PREMIUM TABLET
   ========================================= */

@media (max-width: 900px) {

  .premium-section {
    padding: 90px 0 100px;
  }

  .premium-benefits {
    gap: 12px;
  }

  .premium-benefit {
    padding: 16px;
  }

  .premium-mockups {
    gap: 22px;
  }

}


/* =========================================
   PREMIUM MOBILE
   ========================================= */

@media (max-width: 700px) {

  .premium-section {
    padding: 75px 0 85px;
  }

  .premium-heading {
    margin-bottom: 32px;
  }

  .premium-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .premium-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .premium-benefits {
    grid-template-columns: 1fr;

    margin-bottom: 34px;
  }

  .premium-benefit {
    padding: 17px;
  }

  .premium-mockups {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .premium-mockup-card {
    border-radius: 18px;
  }

}

/* =========================================
   FÜR HANDELSPARTNER
   ========================================= */

.partner-section {
  padding: 115px 0 125px;

  background: #f7f9fb;
  color: #17354f;
}


/* =========================================
   PARTNER HEADING
   ========================================= */

.partner-heading {
  max-width: 900px;

  margin-bottom: 55px;
}

.partner-heading h2 {
  margin-bottom: 22px;

  color: #17354f;

  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.partner-intro {
  max-width: 720px;

  color: #5b7183;

  font-size: 1.08rem;
  line-height: 1.7;
}


/* =========================================
   PARTNER CARDS
   ========================================= */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 22px;

  margin-bottom: 34px;
}

.partner-card {
  min-height: 245px;

  padding: 30px;

  border: 1px solid rgba(37, 70, 98, 0.10);
  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 14px 40px rgba(27, 54, 78, 0.055);
}

.partner-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  margin-bottom: 24px;

  border-radius: 10px;

  background: #e6edf3;
  color: #285c84;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.partner-card h3 {
  margin-bottom: 12px;

  color: #21445f;

  font-size: 1.18rem;
  line-height: 1.3;
}

.partner-card p {
  max-width: 470px;

  color: #687d8d;

  font-size: 0.92rem;
  line-height: 1.65;
}


/* =========================================
   NETWORK / JOURNEY
   ========================================= */

.partner-network {
  margin-top: 22px;
  padding: 42px;

  border-radius: 24px;

  background:
    linear-gradient(
      135deg,
      #173b59 0%,
      #214e70 100%
    );

  color: #ffffff;

  box-shadow:
    0 20px 55px rgba(24, 56, 82, 0.14);
}

.partner-network-copy {
  max-width: 750px;

  margin-bottom: 36px;
}

.partner-network-label {
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.partner-network h3 {
  margin-bottom: 17px;

  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.partner-network-copy > p:last-child {
  max-width: 690px;

  color: rgba(255, 255, 255, 0.74);

  font-size: 0.96rem;
  line-height: 1.65;
}


/* Journey */

.partner-journey {
  display: flex;
  align-items: stretch;

  gap: 10px;
}

.journey-step {
  flex: 1;

  min-height: 90px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 15px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;

  background: rgba(255, 255, 255, 0.07);

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.journey-step span {
  margin-bottom: 7px;

  color: rgba(255, 255, 255, 0.42);

  font-size: 0.64rem;
  font-weight: 800;
}

.journey-highlight {
  border-color: rgba(240, 165, 54, 0.45);

  background: rgba(240, 165, 54, 0.12);

  color: #ffffff;
}

.journey-highlight span {
  color: #f0b55c;
}

.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.35);

  font-size: 1.05rem;
}


/* =========================================
   PARTNER CTA
   ========================================= */

.partner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;

  margin-top: 34px;
  padding: 36px 40px;

  border: 1px solid rgba(37, 70, 98, 0.10);
  border-radius: 22px;

  background: #ffffff;
}

.partner-cta > div {
  max-width: 720px;
}

.partner-cta-label {
  margin-bottom: 9px;

  color: #44739b;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.partner-cta h3 {
  margin-bottom: 10px;

  color: #21445f;

  font-size: 1.45rem;
}

.partner-cta p {
  color: #687d8d;

  font-size: 0.9rem;
  line-height: 1.6;
}

.partner-button {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 0 22px;

  border-radius: 12px;

  background: #173f63;
  color: #ffffff;

  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(23, 63, 99, 0.16);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 30px rgba(23, 63, 99, 0.22);
}


/* =========================================
   PARTNER TABLET
   ========================================= */

@media (max-width: 900px) {

  .partner-section {
    padding: 90px 0 100px;
  }

  .partner-journey {
    flex-wrap: wrap;
  }

  .journey-step {
    flex: 1 1 28%;
  }

  .journey-arrow {
    display: none;
  }

}


/* =========================================
   PARTNER MOBILE
   ========================================= */

@media (max-width: 700px) {

  .partner-section {
    padding: 75px 0 85px;
  }

  .partner-heading {
    margin-bottom: 36px;
  }

  .partner-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .partner-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .partner-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .partner-card {
    min-height: auto;

    padding: 24px;
  }

  .partner-network {
    padding: 28px 22px;

    border-radius: 20px;
  }

  .partner-network h3 br {
    display: none;
  }

  .partner-journey {
    display: grid;
    grid-template-columns: 1fr;

    gap: 9px;
  }

  .journey-step {
    min-height: 72px;
  }

  .partner-cta {
    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    padding: 28px 24px;
  }

  .partner-button {
    width: 100%;
  }

}

/* =========================================
   FOOTER / KONTAKT / RECHTLICHES
   ========================================= */

.site-footer {
  padding: 90px 0 32px;

  background: #102d45;
  color: #ffffff;
}


/* Oberer Footer */

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 90px;

  padding-bottom: 58px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 22px;

  color: #ffffff;
  text-decoration: none;

  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-logo img {
  width: 48px;
  height: 48px;

  object-fit: contain;
}

.footer-claim {
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.90);

  font-size: 1.08rem;
  font-weight: 700;
}

.footer-status {
  max-width: 450px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.84rem;
  line-height: 1.6;
}


/* Kontakt */

.footer-contact {
  max-width: 520px;
}

.footer-label {
  margin-bottom: 12px;

  color: #f0b55c;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.footer-contact h3 {
  margin-bottom: 12px;

  font-size: 1.45rem;
  line-height: 1.3;
}

.footer-contact > p:not(.footer-label) {
  margin-bottom: 19px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-mail {
  display: inline-block;

  color: #ffffff;
  text-decoration: none;

  font-size: 0.94rem;
  font-weight: 700;

  border-bottom: 1px solid rgba(255, 255, 255, 0.35);

  padding-bottom: 3px;
}

.footer-mail:hover {
  border-color: #ffffff;
}


/* Trennlinie */

.footer-divider {
  height: 1px;

  margin-bottom: 28px;

  background: rgba(255, 255, 255, 0.11);
}


/* =========================================
   RECHTLICHES
   ========================================= */

.legal-area {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 14px;

  margin-bottom: 42px;
}

.legal-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.035);
}

.legal-item summary {
  position: relative;

  padding: 17px 46px 17px 18px;

  cursor: pointer;

  list-style: none;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.84rem;
  font-weight: 700;
}

.legal-item summary::-webkit-details-marker {
  display: none;
}

.legal-item summary::after {
  content: "+";

  position: absolute;

  right: 18px;
  top: 50%;

  transform: translateY(-50%);

  color: rgba(255, 255, 255, 0.50);

  font-size: 1.15rem;
  font-weight: 400;
}

.legal-item[open] summary::after {
  content: "−";
}

.legal-content {
  padding: 0 18px 19px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.78rem;
  line-height: 1.65;
}

.legal-content p + p {
  margin-top: 10px;
}


/* Unterste Zeile */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.38);

  font-size: 0.72rem;
}


/* =========================================
   FOOTER MOBILE
   ========================================= */

@media (max-width: 700px) {

  .site-footer {
    padding: 70px 0 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-bottom: 45px;
  }

  .legal-area {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;
  }

}