* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Sora', sans-serif;
  background-image: linear-gradient(to bottom, #FFFFFF,#FFFFF0, #F0F8FF, #FFFFF0);
  color: #000;
}

section {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 64px auto;
  scroll-margin-top: 80px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header nav * {
  margin-left: 32px;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 48px;
}

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

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 0px;
}

h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

p {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-text p {
  color: #555;
}

.hero-button-container {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.waitlist-button {
  background-color: #485E93;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.waitlist-button-sm {
  background-color: #485E93;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 150px;
}

.hero-badges {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding: 8px;
  border: 1px solid lightgrey;
  margin-bottom: 24px;
}

.hero-badges img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 4px;
}

.store-buttons img {
  width: 150px;
  margin-right: 12px;
}

.phone-img-1 {
  height: 580px;
  border-radius: 32px;
  transform: rotate(-5deg) translateY(32px);
}

.phone-img-2 {
  height: 580px;
  border-radius: 32px;
  transform: rotate(8deg) translateY(0px);
}

.arrow-img {
  height: 80px;
  transform: rotate(8deg) translateY(-240px) translateX(-24px);
}

.container {
  display: flex;
  flex-direction: column;
}

.column-container {
  display: flex;
  justify-content: space-around;
}

.carousel-column {
  flex: 1;
  position: relative;
  max-width: 300px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 640px;
  border-radius: 24px;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-image.active {
  opacity: 1;
  z-index: 1;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #111827;
}

.info-column {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  padding: 0 12px;
  gap: 1rem;
}

.info-card {
  padding: 0 1.5rem;
  border-radius: 12px;
  background: #f9f9f9;
  border: 1px solid lightgrey;
  cursor: pointer;
  transition: border 0.3s, background 0.3s;
}

.info-card p {
  font-size: 16px;
}

.info-card.active {
  border: 1px solid #111827;
  background: #ffffff;
}

.plus-button {
  background-color: #111;
  color: white;
  font-size: 1.5rem;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 12px;             
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  padding-bottom: 4px;
}

.plus-button:hover {
  background-color: #222;
  transform: scale(1.05);
}

.plus-button:active {
  transform: scale(0.95);
}

.accordion-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  max-width: 640px;
  display: flex;
}

.accordion {
  border-bottom: 1px solid lightgrey;
  cursor: pointer;
  border-radius: 16px;
  flex-flow: column;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.accordion-trigger {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion-content p {
  font-size: 16px;
}

.accordion-content.expanded {
  height: auto;
}

.site-footer {
  background-color: #222;
  color: #ccc;
  padding: 3rem 2rem;
  border-radius: 2rem;
  font-family: 'Sora', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

hr {
  border: none;
  border-top: 1px solid #444;
  margin: 2rem 0 1rem;
}

.footer-bottom {
  color: #aaa;
  font-size: 0.875rem;
  text-align: left;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: 'Sora', sans-serif;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

/* Form Styles */
form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

form button[type="submit"] {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 28px;
  }

  header {
    padding: 12px 16px;
  }

  section {
    margin-bottom: 24px;
  }

  nav a {
    display: none;
  }

  .hero-images {
    display: none;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .text-section, .image-section img {
    max-width: 90%;
  }

  .features {
    flex-direction: row;
    justify-content: space-between;
  }

  .feature-card {
    flex: 1;
    max-width: 32%;
  }

  .column-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .carousel-column {
    margin-bottom: 16px;
    width: 320px;
  }
}