/* --- Google Play Popup Styles --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 105, 115, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: background 0.3s;
}

.popup-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(14,105,115,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 350px;
  width: 90vw;
  text-align: center;
  position: relative;
  border: 2px solid #bad9ce;
}

.popup-title {
  color: #0e6973;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}

.popup-message {
  color: #0e6973;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.popup-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #0e6973;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-close:hover {
  color: #f2bb16;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  font-family: 'Inter', sans-serif;
}

.root-bg {
  background: #bad9ce;
  margin: 0;
  padding-top: 64px; /* Account for fixed navbar */
}

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  height: 64px;
  background: #bad9ce;
  box-shadow: 0 2px 8px rgba(14,105,115,0.04);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: white;
  box-shadow: 0 2px 12px rgba(14,105,115,0.15);
}

.nav-brand {
  position: absolute;
  left: 2rem;
}
.brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0e6973;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  position: absolute;
  right: 2rem;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #0e6973;
  border-radius: 2px;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  font-family: 'Inter', sans-serif;
  color: #0e6973;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}
.nav-menu li a:hover {
  color: #118c8c;
  transform: translateY(-2px);
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #118c8c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-menu li a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
}
.download-btn {
  font-family: 'Inter', sans-serif;
  background: #f2bb16;
  color: #0e6973;
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(14,105,115,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 1px;
}
.download-btn:hover {
  background: #118c8c;
  color: #fff;
}

/* Hero Section Styles */
.hero-section {
  padding: 4rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  text-align: left;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0e6973;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-cta-btn {
  font-family: 'Inter', sans-serif;
  background: #f2bb16;
  color: #0e6973;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(242, 187, 22, 0.3);
  transition: all 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 1px;
  text-align: center;
  width: fit-content;
  transform: translateY(0);
}

.hero-cta-btn:hover {
  background: #118c8c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(17, 140, 140, 0.4);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}

/* Benefits Section Styles */
.benefits-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 80vh;
  position: relative;
}

.benefits-left {
  background: #0e6973;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.benefits-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-image {
  position: absolute;
  width: 80%;
  height: 100%;
  max-width: 400px;
  border-radius: 15px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  object-fit: contain;
}

.benefit-image.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.benefit-image.slide-out {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-navigation {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10;
}

.nav-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.nav-dot.active {
  background: #f2bb16;
  border-color: #f2bb16;
  box-shadow: 0 0 0 4px rgba(242, 187, 22, 0.3);
}

.nav-dot:hover {
  background: #f2bb16;
  transform: scale(1.2);
  border-color: #f2bb16;
}

.benefits-right {
  background-image: url('img/pear_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.benefits-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #0e6973;
  margin: 4rem 0 0 0;
  letter-spacing: -0.01em;
  position: relative;
  text-align: center;
}

.benefits-content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 2rem;
}

.benefit-content {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  transform: translateY(-50%);
  text-align: center;
}

.benefit-content.active {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.benefit-name {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.benefit-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Download Section Styles */
.download-section {
  min-height: 70vh;
  background-image: url('img/pear_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
}

.download-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.download-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.download-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  text-align: left;
}

.download-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0e6973;
  margin: 0;
  letter-spacing: -0.02em;
}

.google-play-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.google-play-btn:hover {
  transform: translateY(-3px);
}

.google-play-badge {
  width: 180px;
  height: auto;
  border-radius: 8px;
}

/* FAQ Section Styles */
.faq-section {
  min-height: 60vh;
  background: #bad9ce;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
}

.faq-container {
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.faq-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #0e6973;
  text-align: center;
  margin: 0 0 3rem 0;
  letter-spacing: -0.01em;
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0e6973;
  flex: 1;
}

.faq-toggle {
  font-size: 2rem;
  font-weight: 300;
  color: #0e6973;
  transition: transform 0.3s ease, color 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2bb16;
  color: #0e6973;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: #118c8c;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
    min-height: 70vh;
  }
  
  .faq-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-text {
    font-size: 1.1rem;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    width: 25px;
    height: 25px;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 2rem 1rem;
    min-height: 50vh;
  }
  
  .faq-title {
    font-size: 2.1rem;
  }
  
  .faq-question {
    padding: 1rem 1.2rem;
  }
  
  .faq-text {
    font-size: 1rem;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    padding: 0 1rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #bad9ce;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(14,105,115,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }

  .navbar.scrolled .nav-content {
    background: white;
  }
  
  .nav-content.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }
  
  .nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 80%;
    margin: 0 auto;
  }
  
  .nav-actions {
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2rem 1rem;
    min-height: auto;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-tagline {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  
  .hero-cta-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    align-self: center;
  }
  
  .hero-img {
    max-width: 100%;
    border-radius: 15px;
  }

  /* Download Section Mobile */
  .download-section {
    padding: 3rem 1rem;
    min-height: 60vh;
  }
  
  .download-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .download-right {
    text-align: center;
    align-items: center;
    order: 1;
  }
  
  .download-left {
    order: 2;
  }
  
  .download-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .download-img {
    max-width: 300px;
  }
  
  .google-play-badge {
    width: 160px;
  }

  /* Benefits Section Mobile */
  .benefits-section {
    min-height: auto;
  }
  
  .benefits-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  
  .benefits-left {
    min-height: 50vh;
    order: 1;
    padding: 0.5rem;
  }
  
  .benefit-image {
    width: 85%;
    height: 100%;
    max-width: 280px;
  }
  
  .benefits-navigation {
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    top: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 1.5rem;
    z-index: 20;
  }
  
  .nav-dot {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
  
  .benefits-right {
    order: 2;
    padding: 2rem 1.5rem;
    min-height: 35vh;
    display: flex;
    flex-direction: column;
  }
  
  .benefits-title {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    flex-shrink: 0;
  }
  
  .benefits-content-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
  }
  
  .benefit-content {
    position: absolute;
    top: 50%;
    left: 0.5rem;
    right: 0.5rem;
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .benefit-content.active {
    opacity: 1;
  }
  
  .benefit-name {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .benefit-description {
    font-size: 1.2rem;
    line-height: 1.4;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .benefits-left {
    min-height: 45vh;
    padding: 0.25rem;
  }
  
  .benefit-image {
    width: 90%;
    height: 100%;
    max-width: 250px;
  }
  
  .benefits-right {
    padding: 1.5rem 1rem;
    min-height: 20vh;
  }
  
  .benefits-title {
    font-size: 2.1rem;
    margin-top: 0rem;
  }
  
  .benefit-content {
    left: 0.25rem;
    right: 0.25rem;
  }
  
  .benefit-name {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  
  .benefit-description {
    font-size: 1rem;
    max-width: 280px;
    line-height: 1.3;
  }
  
  .nav-dot {
    width: 16px;
    height: 16px;
  }
  
  .benefits-navigation {
    gap: 1rem;
    bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .download-section {
    padding: 2rem 1rem;
    min-height: 50vh;
  }
  
  .download-title {
    font-size: 2rem;
  }
  
  .download-img {
    max-width: 250px;
  }
  
  .google-play-badge {
    width: 140px;
  }
  
  .hero-tagline {
    font-size: 2rem;
  }
  
  .hero-cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
}

/* Footer Styles */
.footer {
  background: #0e6973;
  color: white;
  padding: 3rem 2rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.footer-link:hover {
  color: #f2bb16;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-copyright,
.footer-developer {
  font-family: 'Inter', sans-serif;
  margin: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.footer-developer {
  font-weight: 500;
  color: white;
}

.developer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #f2bb16;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1.5rem 1rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-link {
    font-size: 1rem;
  }
  
  .footer-copyright,
  .footer-developer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1rem;
  }
  
  .footer-links {
    gap: 0.8rem;
  }
  
  .footer-link {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
  
  .footer-copyright,
  .footer-developer {
    font-size: 0.85rem;
  }
}
