:root {
  --color-bg: #121212;
  --color-text: #FFFFFF;
  --color-accent: #00B641;
  --color-accent2: #0729D3;
  --color-secondary: #888888;
}

@charset "UTF-8";
@font-face {
  font-family: "Archivo";
  src: url("/static/landing/fonts/Archivo/Archivo-VariableFont_wdth,wght.ttf");
}
@font-face {
  font-family: "PP Monument Extended";
  src: url("/static/landing/fonts/MonumentExtended-FreeForPersonalUse/MonumentExtended-Regular.otf") format("opentype");
}


body.dark-mode {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'PP Monument Extended', sans-serif;
  margin: 0.5rem 0;
}

h2, .h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 50px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

h3, .h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: 44px;
  text-transform: uppercase;
}

h4, .h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

h6, .h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 50px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin: 0px 0px 0px 0px;
}

@media screen and (min-width: 800px) {
  h2, .h2 {
    font-size: 50px;
    line-height: 50px;
  }
  h3, .h3 {
    font-size: 27px;
    line-height: 34px;
  }
  h4, .h4 {
    font-size: 20px;
    line-height: 25px;
  }
}
@media screen and (min-width: 1440px) {
  h2, .h2 {
    font-size: 50px;
  }
  h3, .h3 {
    font-size: 22px;
    line-height: 31px;
  }
  h4, .h4 {
    font-size: 21px;
    line-height: 22px;
  }
  p {
    font-size: 19px;
    line-height: 16px;
  }
}
@media screen and (min-width: 1780px) {
  h3, .h3 {
    font-size: 27px;
    line-height: 34px;
  }
}



p{
  font-family: 'Archivo', sans-serif;
  font-size: 19px;

}

.logo { height: 40px; }

.store-badge { height: 36px; }

/* ============================= */
/* NAV HEADER */
/* ============================= */

.site-header {
    position: sticky;
    top: 0;
    background: #121212;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;

    display: flex;
    align-items: center;          /* vertical alignment */
    justify-content: space-between;
}

/* Logo */

.logo {
    height:50px;
    width: auto;
    display: block;
}

/* Desktop nav */

.nav-menu {
    display: flex;
    gap: 1.5rem;
    text-transform: uppercase;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #00B641;
}

/* Hamburger */

.hamburger {
    display: none;

    width: 32px;              /* 🔥 force width */
    height: 24px;             /* enough for 3 bars */

    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger span {
    display: block;           /* important */
    width: 100%;              /* fill parent */
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    margin: 3px 0;             /* space between bars */
}
/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1B1B1B;

        flex-direction: column;
        align-items: center;
        gap: 2rem;

        padding: 2rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


.hero {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

.app-preview{
 width: 100%;
  height: 600px; /* desktop height */
  overflow: hidden;
}

.hero-sub {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hero .app-preview  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 2rem auto 0 auto;
}





.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-family: 'PP Monument Extended', sans-serif;
}

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

.btn.secondary {
  background-color: var(--color-accent2);
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  align-items: center;
}

.split-column {
  background-color: #1E1E1E;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.split-column.highlight {
  background-color: #222222;
}

.bullets {
  list-style: disc;
  padding-top: 0.5rem;
  color: var(--color-text);
}

.bullets li {
  margin-bottom: 0.75rem;
}

.screenshot {
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
}

@media(min-width: 1220px) {
  .screenshot {
    max-width: 500px;
  }
}

.testimonials {
  padding: 2rem 1rem;
  background-color: #181818;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
}

.final-cta {
  text-align: center;
  padding: 2rem 1rem;
}

@media(min-width: 768px) {
  .split {
    flex-direction: row;
    gap: 2rem;
  }

  .split-column {
    flex: 1;
  }
}
@media(max-width: 768px) {
 .split-column {
    flex-direction: column;
    gap: 2rem;
    align-items: left;
  }
}

/* Get App Section */
#get-app {
  padding: 4rem 1.5rem;
  background-color: #1B1B1B;
  text-align: center;
  color: #fff;
}

#get-app h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#get-app p {
  font-size: 1.1rem;
  color: #CCCCCC;
  margin-bottom: 2rem;
}

/* Container for buttons */
.get-app-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Store buttons wrapper */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Google Play Button */
.google-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.google-play-btn:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.google-play-btn .gp-icon {
  width: 32px;
  height: 32px;
}

.google-play-btn .gp-text {
  display: inline-block;
  line-height: 1;
}

/* iOS PWA Button */
.ios-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0729D3;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ios-btn:hover {
  background-color: #00B641;
  transform: translateY(-2px);
}

/* Mobile-first responsiveness */
@media (max-width: 768px) {
  .store-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .google-play-btn,
  .ios-btn {
    width: 80%;
    justify-content: center;
  }

  #get-app h2 {
    font-size: 1.5rem;
  }

  #get-app p {
    font-size: 1rem;
  }
}

footer{
  display:flex;
  align-items:center;
  justify-content:center;

}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: white;
  padding: 20px;
  display: none;
  z-index: 9999;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-primary {
  background: #00B641; /* your brand green */
  border: none;
  padding: 10px 18px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #444;
  padding: 10px 18px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.legal-page {
  padding: 120px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 60px;
  opacity: 0.8;
}

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

.contact-card {
  background: #111;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.contact-card a {
  color: #00B641; /* your brand green */
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}
/* =========================
   FOOTER
========================= */

footer {
  margin: 0;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
}

.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 40px;
  padding: 0px 47px;
  margin-top: 10%;
}

.actions {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.company {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 15px;
  margin-bottom: 99px;
}
.company div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
.company .company-address {
  order: 1;
}
.company .company-email {
  order: 3;
}
.company .company-tax {
  order: 2;
}
.company .company-name {
  order: 4;
}
.company .detail {
  font-family: "Archivo";
  font-size: 12px;
}

.social {
  order: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 60px;
}

.bottom {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 22px;
}

#scroll-to-top {
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .bottom #backnav {
    order: 1;
  }
  .bottom #copyright {
    order: 2;
  }
}
@media screen and (min-width: 800px) {
  footer {
    margin: 41px;
  }
  .details {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    justify-items: flex-start;
    gap: 20px;
    padding: 0px 47px;
    margin-top: 8%;
  }
  .actions {
    order: 1;
    flex-grow: 3;
  }
  .company {
    order: 2;
    flex-grow: 4;
    flex-direction: row;
    font-size: small;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-left: 10%;
    align-items: flex-start;
    justify-content: flex-start;
    justify-items: flex-end;
  }
  .company div {
    height: 43px;
    width: 185px;
    align-items: flex-start;
    justify-content: flex-start;
    justify-items: flex-start;
  }
  .company .company-address {
    margin: 0;
  }
  .company .company-email {
    margin: 0;
  }
  .company .company-tax {
    margin: 0;
    flex-basis: 45%;
  }
  .company .company-name {
    margin: 0;
  }
  .social {
    flex-direction: column;
    flex-grow: 1;
    order: 3;
    gap: 30px;
  }
  .bottom {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0px 47px 20px 47px;
  }
  .bottom #backnav {
    flex-grow: 1;
    text-align: end;
  }
  .bottom #copyright {
    flex-grow: 1;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    margin: 44px;
    margin-top: 65px;
    z-index: 2;
  }
  .company {
    column-gap: 130px;
    row-gap: 30px;
    margin-left: 347px;
  }
  .company div {
    width: 173px;
  }
  .company .company-tax {
    margin: 0;
    flex-basis: 35%;
  }
}
/* =========================
   BUTTONS FROM the OROGINAL
========================= */



.bnbtn {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 2px;
  color: white;
  width: 326px;
  height: 54px;
  text-transform: uppercase;
  font-family: 'PP Monument Extended', sans-serif;

}

.bnbtn.bluebtn:hover {
  background-color: #00B641;
  color: white;
}
.bnbtn.bluebtn:hover.greenbtn:hover {
  color: white;
}

.bluebtn {
  background-color: #0729D3;
  transition: background-color 0.5s;
  transition-timing-function: linear ease-in;
}

.greenbtn {
  background-color: #00B641;
  text-transform: uppercase;
}
.greenbtn a {
  color: white;
}

.greybtn {
  background-color: #101019;
  width: 291px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  text-transform: uppercase;
}

@media screen and (max-width: 412px) {
  .bnbtn {
    width: 353px;
    height: 54px;
  }
  a {
    color: white;
  }
}
@media screen and (min-width: 800px) {
  .bnbtn {
    height: 42px;
  }
  .bluebtn {
    width: 273px;
  }
  .greenbtn {
    width: 179px;
  }
}
@media screen and (min-width: 800px) {
  .bnbtn {
    height: 42px;
  }
  .bluebtn {
    width: 273px;
  }
  .greenbtn {
    width: 179px;
  }
  .greenbtn.start {
    width: 90%;
    height: 54px;
    color: white;
  }
  .greybtn {
    width: 90%;
    height: 54px;
  }
}
@media screen and (min-width: 1439px) {
  .bluebtn {
    height: 42px;
    width: 328px;
  }
  .greenbtn {
    height: 42px;
    width: 215px;
  }
  .greenbtn.start {
    height: 42px;
    width: 291px;
  }
  .greybtn {
    height: 42px;
    width: 291px;
  }
}
.mini-faq-section {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 70px 20px;
}

.mini-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;

}

.mini-faq-container h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  align-self:center;
}

.mini-faq-item {
  border-bottom: 1px solid #222;
  padding: 12px 0;
}

.mini-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.mini-faq-question:hover {
  color: #00B641; /* your brand green */
}

.mini-faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #00B641;
}

.mini-faq-item.active .mini-faq-question::after {
  content: "−";
}

.mini-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mini-faq-answer p,
.mini-faq-answer ul {
  color: #bbbbbb;
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.mini-faq-answer ul {
  padding-left: 20px;
}
