body {
font-family: Relative, Bricolage Grotesque Variable, Inter Variable, Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  margin: 0;
  color: #333;

  display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    margin: 0;
    padding: 0;
        overflow-y: auto;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: var(--background-color);
    transition-property: background-color;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
    background-color: #F2F2F7
}

section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(242, 242, 247, 0.2); /* bg-[#F2F2F7]/20 */
  position: sticky;
  top: 0;
  z-index: 50; /* z-50 */
  backdrop-filter: blur(24px); /* backdrop-blur-xl */
  -webkit-backdrop-filter: blur(24px);

  /* Responsive padding */
  padding-left: 1.25rem; /* px-5 */
  padding-right: 1.25rem;
  padding-top: 1rem; /* py-4 */
  padding-bottom: 1rem;
}

@media (min-width: 1280px) {
  .header {
    padding-left: 0; /* xl:px-0 */
    padding-right: 0;
  }
}

.hero-description {
  opacity: 0.6;
  font-size: 1rem;      /* text-base */
  font-weight: 400;     /* font-normal */
  max-width: 510px;
  margin: 1.5rem 0;
  line-height: 1.7;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}


.btn {
  text-decoration: none;
  background: #2DA6FE; /* changed from #eee */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: white;         /* changed from #333 */
}

/* Contact link styled as simple text */
.contact-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #2DA6FE;
  cursor: pointer;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}
.btn {
  text-decoration: none;
  background: #eee;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: #333;
}
.btn.primary {
  background: #2DA6FE;
  color: white;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 2.5rem; /* mt-10 */
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem; /* px-4 */
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem; /* p-5 */
  margin-top: -2.5rem; /* -mt-10 */
  background: rgba(255,255,255,0.95); /* optional: subtle background */
  border-radius: 1rem; /* optional: rounded corners */
}

@media (min-width: 640px) {
  .hero-text {
    padding: 0; /* sm:p-0 */
    background: none;
    border-radius: 0;
  }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;

  flex-wrap: wrap;
}
.feature {
  text-align: center;
  max-width: 500px;
}
.feature img {
  border-radius: 15%;
  width: 250px;
  margin-bottom: 1rem;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* tighter spacing between elements */
  max-width: 510px;
}

.hero-text h1 {
  font-size: 3.25rem; /* Similar to 52px */
  font-weight: 700;
  line-height: 1.1;
  margin: 0; /* remove extra margin */
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.hero-description {
  opacity: 0.6;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.hero-text a img {
  margin-top: 0.5rem; /* smaller space before button */
}


/* HOW IT WORKS */
.how-it-works {
  padding: 3rem 2rem;
  text-align: center;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.step {
  max-width: 200px;
}
.step span {
  display: inline-block;
  font-size: 1.5rem;
  background: #2DA6FE;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 3rem 2rem;

  background: #2DA6FE;
  color: white;
}
.cta .btn {
  background: white;
  color: #2DA6FE;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-img {
  height: 48px; /* adjust size as needed */
  border-radius: 25%;
  margin-right: 0.5rem;
}

.logo-text {
  font-size: 1.2rem;
}


/* FOOTER */
.footer {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto;
  grid-template-areas: "link-list . signature";
  background-color: var(--card-background-color);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 48px 38px 40px 38px;
  text-align: center;

  font-size: 0.9rem;
  background: #f8f8f8;

}
.link:link, .link:visited {
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            color: #8E8E93;}
.footer-padding-container {
    padding: 0 var(--side-padding);
    margin-top: 100px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}
    .link-list {
        grid-area: link-list;
        display: grid
;
        grid-template-columns: repeat(4, auto);
        grid-template-rows: auto;
        gap: 20px;
    }

        .signature {
        grid-area: signature;
        font-size: 16px;
        font-weight: 400;
        text-align: end;
        color: #8E8E93;
    }
/* SHOWCASE SECTION */
.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .showcase {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left side (phone image + dots) */
.showcase-phone {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.showcase-phone img {
  width: 280px;
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}

.showcase-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.showcase-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.showcase-dots button.active {
  background: #2DA6FE;
}

/* Right side (feature cards) */
.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.showcase-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #ddd;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.showcase-card:hover {
  transform: scale(1.03);
  border-color: #2DA6FE;
  background: #f8f8f8;
}

.showcase-card.active {
  border-color: #2DA6FE;
  background: #f0f0f0;
  transform: scale(1.05);
}

.showcase-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.showcase-card p {
  font-size: 0.95rem;
  opacity: 0.75;
}
