* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0b0f14;
  color: white;
}

::selection {
  background: #00d1b2;
  color: #000;
}
::-moz-selection {
  background: #00d1b2;
  color: #000;
}

.hero-text span::selection,
.nav-center a:hover::selection,
.why-card h3::selection,
.good::selection,
.member a::selection,
.footer-logo em::selection,
.feature-card h4::selection {
  background: #00d1b2;
  color: #000;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: rgba(11, 15, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo img {
  width: 35px;
}

.logo span {
  font-size: 18px;
  font-weight: bold;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.nav-center a {
  margin: 0 15px;
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

.nav-center a:hover {
  color: #00d1b2;
}

.nav-center a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00d1b2;
  transition: 0.3s;
}

.nav-center a:hover::after {
  width: 100%;
}

.btn-download {
  background: #00d1b2;
  color: black;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn-download:hover {
  box-shadow: 0 0 15px #00d1b2;
}
/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .navbar { padding: 0 24px; }

  .hamburger { display: flex; }

  .nav-center {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(11, 15, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-center.open {
    max-height: 420px;
    padding: 16px 0 24px;
  }

  .nav-center a {
    margin: 0;
    padding: 14px 0;
    font-size: 16px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .nav-center a:last-child { border-bottom: none; }
}

/* ── Scroll offset for fixed navbar ── */
section[id], footer[id], .team-section {
  scroll-margin-top: 68px;
}

/* Hero Section */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 60px 80px;
  min-height: 100vh;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-text span {
  color: #00d1b2;
}

.hero-text p {
  margin: 20px 0;
  color: #aaa;
  line-height: 1.6;
}

.hero-buttons {
  margin: 20px 0;
}

.btn-primary {
  background: #00d1b2;
  color: black;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 0 20px #00d1b2;
}

.store-buttons img {
  width: 140px;
  margin-right: 10px;
  margin-top: 10px;
}

.hero-image img {
  animation: float 4s ease-in-out infinite;
  width: 420px;
  transform: rotate(10deg) translateX(-40px);
  filter: drop-shadow(0 0 30px rgba(0, 209, 178, 0.3));
}

@keyframes float {
  0% { transform: translateY(0) translateX(-40px) rotate(10deg); }
  50% { transform: translateY(-15px) translateX(-40px) rotate(10deg); }
  100% { transform: translateY(0) translateX(-40px) rotate(10deg); }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
    gap: 40px;
    min-height: auto;
  }

  .hero-text { max-width: 100%; }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-image img {
    width: 260px;
    transform: none;
    animation: none;
    margin-left: 0;
  }
}

/* ===== why kortex ===== */
.why {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}


.why::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.12), transparent 60%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}


.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}


.why h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.why h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00d1b2;
  margin: 10px auto;
}

.why-sub {
  color: #aaa;
  margin-bottom: 60px;
  font-size: 16px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  backdrop-filter: blur(12px);
  position: relative;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent, rgba(0,209,178,0.25), transparent);
  opacity: 0;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #00d1b2;
  box-shadow: 0 0 30px rgba(0, 209, 178, 0.2);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card h3 {
  color: #00d1b2;
  margin-bottom: 10px;
  font-size: 20px;
}

.why-card p {
  color: #bbb;
  line-height: 1.6;
  font-size: 14px;
}
@media (max-width: 900px) {
  .why { padding: 80px 24px; }
  .why-cards,
  .class-cards {
    grid-template-columns: 1fr;
  }
}
/* ===== How It Works ===== */
.how {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.12), transparent 60%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.how-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.how h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00d1b2;
  margin: 10px auto;
}

.how .sub {
  color: #aaa;
  margin-bottom: 60px;
  font-size: 16px;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  width: 220px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-10px);
  border-color: #00d1b2;
  box-shadow: 0 0 30px rgba(0, 209, 178, 0.2);
}

.circle {
  width: 70px;
  height: 70px;
  background: rgba(0, 209, 178, 0.1);
  border: 1px solid #00d1b2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 28px;
  transition: 0.3s;
}

.step:hover .circle {
  background: #00d1b2;
  color: black;
  box-shadow: 0 0 25px #00d1b2;
}

.step h3 {
  margin-top: 15px;
  font-size: 18px;
}

.step p {
  color: #bbb;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.6;
}

.line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #00d1b2, transparent);
  opacity: 0.6;
}

.classification {
  padding: 120px 60px;
  text-align: center;
}

.class-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.class-card {
  width: 250px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.urgent:hover {
  box-shadow: 0 0 25px #FF453A;
}

.normal:hover {
  box-shadow: 0 0 25px #FF9F0A;
}

.noise:hover {
  box-shadow: 0 0 25px #8A9BBE;
}
@media (max-width: 900px) {
  .how { padding: 80px 24px; }
  .classification { padding: 80px 24px; }
  .timeline {
    flex-direction: column;
  }

  .line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #00d1b2, transparent);
  }

  .step { width: 100%; max-width: 400px; }
}
/* ===== Classification ===== */
.classification {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.classification::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.12), transparent 60%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.classification-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}


.classification h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.classification h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00d1b2;
  margin: 10px auto;
}

.classification .sub {
  color: #aaa;
  margin-bottom: 60px;
}

.class-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.title {
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.desc {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}
.class-card {
   width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  text-align: left;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px; 
}
  .label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.class-card:hover {
  transform: translateY(-10px);
}

.class-card h4 {
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-size: 13px;
}

.chips {
   margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
   padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  background: rgba(255,255,255,0.05);
  color: #ccc;
}

.urgent {
  border-color: rgba(255,69,58,0.3);
}

.urgent:hover {
  box-shadow: 0 0 30px rgba(255,69,58,0.3);
}

.normal {
  border-color: rgba(255,159,10,0.3);
}

.normal:hover {
  box-shadow: 0 0 30px rgba(255,159,10,0.3);
}

.noise {
  border-color: rgba(138,155,190,0.3);
}

.noise:hover {
  box-shadow: 0 0 30px rgba(138,155,190,0.3);
}

/* ===== Privacy Section ===== */

.privacy {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.privacy::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.15), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.privacy-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.privacy h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00d1b2;
  display: block;
  margin: 10px auto;
}

.sub {
  color: #aaa;
}

.privacy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.privacy-info .desc {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #ccc;
  transition: 0.3s;
}

.feature:hover {
  border-color: #00d1b2;
  transform: translateX(5px);
}

.privacy-card {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 209, 178, 0.25);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 40px rgba(0, 209, 178, 0.08);
  text-align: center;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,209,178,0.25), transparent 60%);
  animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
  0% { transform: translate(-20%, -20%); }
  50% { transform: translate(10%, 10%); }
  100% { transform: translate(-20%, -20%); }
}

.privacy-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  position: relative;
}

.card-sub {
  color: #aaa;
  margin-bottom: 25px;
}

.flow-drive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.node {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ccc;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  transition: 0.3s;
}

.node:hover {
  transform: translateY(-4px);
  border-color: #00d1b2;
}

.node.center {
  border-color: rgba(0,209,178,0.5);
  box-shadow: 0 0 20px rgba(0,209,178,0.15);
}

.arrow {
  color: #00d1b2;
  font-size: 18px;
}

.note {
  display: block;
  margin-top: 20px;
  color: #aaa;
  font-size: 12px;
}

@media (max-width: 900px) {
  .privacy { padding: 80px 24px; }
  .compare { padding: 80px 24px; }
  .download { padding: 80px 24px; }
  .footer { padding: 80px 24px 40px; }

  .privacy-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .flow-drive {
    flex-direction: column;
    gap: 8px;
  }

  .arrow { transform: rotate(90deg); }

  .compare-table .row {
    font-size: 13px;
    padding: 12px 12px;
  }
}

.compare {
  padding: 120px 60px;
  position: relative;
}

.compare::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,209,178,0.12), transparent 60%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.compare-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.compare h2 {
  font-size: 42px;
}

.compare h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00d1b2;
  margin: 10px auto;
}

.sub {
  color: #aaa;
  margin-bottom: 50px;
}

.compare-table {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
}

.row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}

.row.head {
  background: rgba(0,209,178,0.08);
  font-weight: bold;
  color: #fff;
}

.row div:first-child {
  color: #ddd;
  text-align: left;
}

.bad {
  color: #888;
}

.good {
  color: #00d1b2;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0,209,178,0.2);
}


.row:not(.head):hover {
  background: rgba(255,255,255,0.03);
  transform: scale(1.01);
  transition: 0.2s;
}

/*  TEAM SECTION */
.team-section {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.team-section::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,209,178,0.1), transparent 60%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}

.team-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
}

.team-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.team-title::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: #00d1b2;
  margin: 10px auto;
}

.team-sub {
  color: #aaa;
  margin-bottom: 60px;
  font-size: 16px;
}

.team {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.member {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 20px;
  border-radius: 18px;
  width: 200px;
  backdrop-filter: blur(12px);
  transition: 0.3s;
  text-align: center;
}

.member:hover {
  transform: translateY(-10px);
  border-color: #00d1b2;
  box-shadow: 0 0 25px rgba(0,209,178,0.25);
}

.member img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #00d1b2;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.member h4 {
  margin-bottom: 10px;
  font-size: 15px;
}

.member a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #00d1b2;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.member a .material-symbols-outlined {
  font-size: 15px;
}

.member a:hover {
  text-shadow: 0 0 10px #00d1b2;
}

@media (max-width: 900px) {
  .team-section { padding: 80px 24px; }
  .team { gap: 20px; }
  .member { width: 160px; padding: 20px 14px; }
}

/*  FOOTER */

.footer {
  position: relative;
  background: #05080c;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,209,178,0.08), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 50px 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 32px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-logo em {
  color: #00d1b2;
  font-style: normal;
}

.footer-brand-desc {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

.footer-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00d1b2;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.25s, background 0.25s;
  position: relative;
}

.footer-download-btn:hover {
  background: #00e8c8;
  box-shadow: 0 0 15px #00d1b2, 0 0 30px rgba(0, 209, 178, 0.35);
  transform: translateY(-2px);
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.qr-wrapper {
  position: relative;
}

.qr-wrapper img {
  width: 140px;
  border-radius: 12px;
  border: 2px solid rgba(0,209,178,0.2);
}

.qr-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,209,178,0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
}

.qr-label {
  color: #aaa;
  font-size: 12px;
}

.footer-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
   align-items: flex-end;
}

.feature-card {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: 0.3s;
   width: 240px;
}

.feature-card:hover {
  border-color: #00d1b2;
  transform: translateY(-3px);
}

.feature-card h4 {
  color: #00d1b2;
  font-size: 14px;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 13px;
  color: #888;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  padding: 18px 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: #555;
}

.footer-nav {
  display: flex;
  gap: 16px;
}

.footer-nav a {
  color: #666;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #00d1b2;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    max-width: 100%;
  }

  .footer-features {
    align-items: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .store-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}