@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --font: "Poppins", sans-serif;
  --bg: linear-gradient(
    180deg,
    rgba(31, 126, 235, 1) 0%,
    rgba(172, 43, 126, 1) 100%
  );
  --fg: #fff;
  --accent: #4a90e2;
}
[data-theme="dark"] {
  --bg: radial-gradient(
    circle,
    rgba(31, 126, 235, 1) 0%,
    rgba(172, 43, 126, 1) 100%
  );
  --fg: #eee;
  --accent: #1e90ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}

input {
  border: none;
  outline: none;
  border: 1px solid #8d8e96;
  border-radius: 6px;
}

input:hover,
input:focus {
  border-color: #3e5fff;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  padding: 1rem 0;
  /* z-index: 100; */
}
.lookup-button {
  background: linear-gradient(
    90deg,
    rgba(244, 119, 45, 1) 0%,
    rgba(245, 177, 50, 1) 100%
  );
}
.lookup-button:hover {
  background: linear-gradient(
    180deg,
    rgba(244, 119, 45, 1) 0%,
    rgba(245, 177, 50, 1) 100%
  );
  transition: all 0.3s ease-in-out;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 15%;
}
.logo img {
  width: 100%;
  overflow: hidden;
}
.navbar {
  display: flex;
  align-items: center;
  justify-items: end;
  gap: 1rem;
}
.nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: var(--fg);
}
.btn {
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  border-radius: 0.25rem;
}
.download-btn,
.menu-btn {
  background: var(--accent);
  color: #fff;
}
.menu-btn {
  display: none;
}
.theme-toggle {
  background: none;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}
.hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero-image,
.hero-content {
  flex: 1 1 300px;
}
.hero-image img {
  width: 100%;
  margin-left: -40%;
}
.hero-content h1 {
  font-size: 4.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-content p.hero-description {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.hero-content h3 {
  margin-bottom: 1rem;
}
.play-store {
  display: block;
  width: 30%;
  margin: auto;
}
.play-store img {
  width: 100%;
}

.features {
  padding: 2rem 0;
}
.section-header h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.feature-card {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.5rem;
}
.feature-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  max-width: 70%;
  margin: auto;
  font-size: 0.8rem;
  font-weight: 300;
}

.how-it-works,
.screenshots {
  padding: 4rem 0;
}
.footer {
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 200px;
}
/* .footer-col h4 {
  margin-bottom: 1rem;
} */
.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--fg);
  text-decoration: none;
}
.faq-cards {
  max-width: 700px;
  margin: 2rem auto;
  font-family: "Segoe UI", sans-serif;
}

.faq-cards h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.2s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item input {
  display: none;
}

.faq-item .question {
  display: block;
  padding: 1rem 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.faq-item .question::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s;
}

.faq-item input:checked + .question::after {
  transform: rotate(45deg);
}

.faq-item .answer {
  max-height: 0;
  padding: 0 1.5rem;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item input:checked ~ .answer {
  max-height: 200px; /* enough for most answers */
  padding: 1rem 1.5rem;
}

.w-full {
  width: 100%;
}

.w-50-p {
  width: 50%;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-start {
  justify-content: flex-start;
}

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

.gap-2 {
  gap: 0.5rem;
}

.gap-8 {
  gap: 2rem;
}
.gap-20 {
  gap: 10rem;
}

.text-nowrap {
  white-space: nowrap;
}

.text-h3 {
  font-size: 2.5rem;
}

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

.text-justify {
  text-align: justify;
}

.text-none {
  text-decoration: none;
}

.text-underline {
  text-decoration: underline;
}

.block {
  display: block;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-30 {
  padding: 30px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-12 {
  padding-bottom: 48px;
  padding-top: 48px;
}

.m-auto {
  margin: auto;
}

.mt-10 {
  margin-top: 10px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-40 {
  margin-left: 40px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.my-10 {
  margin: 10px 0;
}

.heading-xl {
  font-size: 2.5rem;
}

.leading-normal {
  line-height: 1.5;
}

.font-base {
  font-size: 14px;
}

.font-thin {
  font-weight: 200;
}

.font-regular {
  font-weight: 300;
}

.font-medium {
  font-weight: 400;
}

.font-semibold {
  font-weight: 500;
}

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

.font-14 {
  font-size: 14px;
}

.uppercase {
  text-transform: uppercase;
}

.list-none {
  list-style: none;
}

.rounded-lg {
  border-radius: 20px;
}

.rounded-md {
  border-radius: 10px;
}

.border-none {
  border: none;
}

.border-lg {
  border-width: 10px;
  border-style: solid;
}

.cursor-pointer {
  cursor: pointer;
}

.border-primary {
  border-color: rgba(212, 226, 247, 1);
}

.text-dark {
  color: #151823;
}

.text-white {
  color: #ffffff;
}

.bg-white {
  background: #ffffff;
}

.bg-gray-6,
.h-bg-gray-6:hover {
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.05) 80%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
  }
  .logo {
    width: 30%;
  }
  .nav {
    position: absolute;
    top: 0;
    left: -100%;
    padding-top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .menu-btn {
    display: block;
  }
  .nav a {
    color: #555;
    font-weight: 400;
    font-size: 12px;
    padding: 5px 20px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

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

  .play-store {
    width: 40%;
  }
}
