* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --tint-color: #036BBB;
  --hero-color: #0984E3;
  --hover-color: #BAE0FD;
  --footer-color: #494d5f;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1 {
  font-size: 1.6rem;
  font-weight: 600;
}

h2 {
  font-size: 1.4rem;
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.1rem;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

a:any-link {
  cursor: pointer;
}

/* Utiities */

/* Container */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.appstore-button {
  margin: 2rem auto;
  display: block;
  width: fit-content;
}

.divider {
  margin: 1rem auto 1rem;
  display: block;
  width: fit-content;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: left;
  text-align: center;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

/* Navbar */

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;;
}

.navbar {
  background: transparent;
  color: white;
  padding: 0.4rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.navbar .menu_logo{
  cursor: pointer;
  width: 22px;
  height: 22px;
}

.navbar .logo {
  height: 4.0rem;
  cursor: pointer;
}

.navbar.navbar-scroll {
  background-color: rgba(2, 103, 181, 0.9);
  backdrop-filter: blur(10px);
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-title {
  display: flex;
  gap: 6px;
  align-items: center;
}

.navbar-menu-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 600;
}

.navbar a {
  color: #fff;
}

.navbar-menu a:hover {
  color: var(--hover-color);
}

.navbar i {
  font-size: 1.5rem;
}


/* Mobile Menu */
.mobile-menu {
  display: none;
}

.navbar .mobile-menu-toggle {
  color: #fff;
  cursor: pointer;
}

.navbar .mobile-menu-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.navbar .mobile-menu-items.active {
  transform: translateX(0);
}

.navbar .mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.2rem;
}

/* Hero */
.hero {
  background: var(--hero-color);
  padding: 6rem 0rem 2rem;
  color: #fff;
  text-align: left;
  position: relative;
}

.hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}

.hero-flex > :first-child {
  flex: 3; /* 60% */
}

.hero-flex > :last-child {
  flex: 2; /* 40% */
}

.hero h2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.launch {
  padding-top: 1.2rem;
}

.hero-flex .appscreen {
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* Features */

.features {
  background: white;
  padding: 3rem 2rem 0.6rem;
  color: #000;
  margin: 0 auto;
  position: relative;
  
}

.features-title {
    text-align: center;
}

.features-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.features-items img {
  width: 80px
}

.features-items h3 {
  color: var(--tint-color)
}

.features-items p {
  text-align: left;
}

/* Download */

.download {
  background: white;
  padding: 2rem 2rem 0.6rem;
  color: #000;
  margin: 0 auto;
  position: relative;
}

.download-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.download-info {
  flex: 1;
  text-align: center;
}

.download-image {
  flex: 1;
}

.download-info h2 {
  font-size: 1.6rem;
}

.download-info p {
  font-size: 1.1rem;
}


/* Contact */

.contact {
  background: white;
  padding: 2rem 2rem 4rem;
  color: #000;
  margin: 0 auto;
  position: relative;
}


/* Footer */

footer {
  background-color: var(--footer-color);
  color: #fff;
  padding: 1rem;
}

footer p {
  margin: 0.5rem 0;
  text-align: center;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover {
  text-decoration: none;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 44px;
  text-align: center;
  font-size: 16px;
  z-index: 9999;
  display: none;
}
#cookie-banner button {
  background-color: #4caf50;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  margin-left: 20px;
}
#cookie-banner button:hover {
  background-color: #45a049;
}

/* Privacy */

.article {
  margin-top: 10px;
  flex: 1;
}

.article .bold {
  font-weight: 600;
}

.article ol li {
  padding-bottom: 24px;
}

.article .top-space {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  /* Container */
  .container {
    margin: 0 auto;
    padding: 0 1.4rem;
  }

  .nav-container {
    padding: 0;
  }

  /* Navbar */
  .navbar-menu {
    display: none;
  }

  .navbar .mobile-menu {
    display: block;
  }

  .navbar .mobile-menu-toggle {
    display: block;
  }

  /* Hero */
  .hero-flex {
    flex-direction: column;
  }

  .hero-flex .appscreen {
    width: 50%;
  }

  /* Features */
  .features-items {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    padding: 0.5rem 1rem;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
  }

  .footer ul {
    margin: 1rem 0;
  }
}

/* Mini-form styles */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mini-form {
  margin-top: 1rem;
  text-align: center;
}

.mini-form-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mini-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #e6e9ee;
  width: 300px;
  outline: none;
  font-size: 1rem;
  border-right: none;
}

.mini-form input[type="email"]:focus {
  border-color: var(--tint-color);
  box-shadow: 0 0 0 3px rgba(3,107,187,0.08);
}

.mini-form button {
  padding: 0.75rem 1rem;
  border: none;
  background: var(--tint-color);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.mini-form button:hover {
  background: #025a8f;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

@media (max-width: 480px) {
  .mini-form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .mini-form input[type="email"] {
    width: 100%;
    border-radius: 6px;
    border-right: 1px solid #e6e9ee;
  }

  .mini-form button {
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 6px;
  }
}