/* ===== CSS Variables ===== */
:root {
  --accent-rose: #329EAD;
  --accent-rose-dark: #24727D;
  --accent-rose-light: #EAF9FB;
  --accent-sage: #8BBF9F;
  --accent-sage-light: #E8F5ED;
  --nav-hover: #EDA101;
  --bg-elevated: #FFF0E8;
  --bg-muted: #F5EDE8;
  --bg-primary: #FAFFFC;
  --bg-surface: #FFFFFF;
  --border-subtle: #F0E8E3;
  --text-primary: #2D2A26;
  --text-secondary: #6D6867;
  --text-tertiary: #9C9590;
  --white: #FFFFFF;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before,
body::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}

body::before {
  background: var(--accent-rose);
  top: -150px;
  right: -50px;
}

body::after {
  background: var(--nav-hover);
  top: 40%;
  left: -100px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(max((100vw - 1440px) / 2, 120px));
  height: 80px;
  background-color: var(--white);
  width: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  /* Adjust based on preference, standard nav height */
  width: auto;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
}

.logo-icon {
  font-size: 28px;
  color: var(--accent-rose);
}

.logo-icon svg {
  stroke: var(--accent-rose);
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--nav-hover);
}

.btn-cta-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 100px;
  background-color: var(--accent-rose);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-cta-nav:hover {
  background-color: var(--accent-rose-dark);
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  gap: 60px;
  padding: 80px calc(max((100vw - 1440px) / 2, 120px));
  height: 680px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background-color: var(--accent-rose-light);
  width: fit-content;
}

.badge-icon {
  font-size: 16px;
  color: var(--accent-rose-dark);
}

.badge-icon svg {
  stroke: var(--accent-rose-dark);
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-rose-dark);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  background-color: var(--accent-rose);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-primary i {
  font-size: 20px;
}

.btn-primary:hover {
  background-color: var(--accent-rose-dark);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--accent-rose-dark);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--accent-rose);
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: var(--accent-rose-light);
}

.hero-right {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-right img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 24px;
  /* Move border radius to image */
}

/* Floating Symbols */
.floating-symbol {
  position: absolute;
  width: 80px;
  /* Adjust size as needed */
  height: auto;
  z-index: 10;
  animation: pulse-symbol 2s infinite ease-in-out;
}

.symbol-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.symbol-2 {
  top: 30%;
  right: 13%;
  animation-delay: 1s;
  /* Staggered pulse */
}

@keyframes pulse-symbol {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* Responsive adjustments for symbols */
@media (max-width: 768px) {
  .floating-symbol {
    width: 50px;
  }

  .symbol-1 {
    top: 10%;
    left: 5%;
  }

  .symbol-2 {
    top: 15%;
    right: 5%;
  }
}

/* ===== Features Section ===== */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 80px calc(max((100vw - 1440px) / 2, 120px));
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 700px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-rose-dark);
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
}

.section-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}

.features-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 25, 24, 0.03);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.feature-icon i {
  font-size: 26px;
}

.icon-rose {
  background-color: var(--accent-rose-light);
}

.icon-rose i {
  color: var(--accent-rose-dark);
}

.icon-rose svg {
  stroke: var(--accent-rose-dark);
}

.icon-sage {
  background-color: var(--accent-sage-light);
}

.icon-sage i {
  color: var(--accent-sage);
}

.icon-sage svg {
  stroke: var(--accent-sage);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== Testimonials Section ===== */
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 80px calc(max((100vw - 1440px) / 2, 120px));
  background-color: var(--white);
  width: 100%;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 20px;
  background-color: var(--bg-primary);
  box-shadow: 0 2px 12px rgba(26, 25, 24, 0.03);
  flex: 1;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars i {
  font-size: 18px;
  color: #F5C542;
}

.stars svg {
  stroke: #F5C542;
  fill: #F5C542;
}

.quote {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100px;
}

.avatar i {
  font-size: 22px;
}

.avatar-rose {
  background-color: var(--accent-rose-light);
}

.avatar-rose i {
  color: var(--accent-rose-dark);
}

.avatar-rose svg {
  stroke: var(--accent-rose-dark);
}

.avatar-sage {
  background-color: var(--accent-sage-light);
}

.avatar-sage i {
  color: var(--accent-sage);
}

.avatar-sage svg {
  stroke: var(--accent-sage);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.author-detail {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-tertiary);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px calc(max((100vw - 1440px) / 2, 120px));
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 64px 80px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-rose-dark) 100%);
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
  max-width: 700px;
}

.cta-desc {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-align: center;
  max-width: 550px;
}

.cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-btn-ios {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--accent-rose-dark);
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.cta-btn-ios i {
  font-size: 20px;
}

.cta-btn-ios:hover {
  opacity: 0.9;
}

.cta-btn-android {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background-color: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: background-color 0.2s;
}

.cta-btn-android i {
  font-size: 20px;
}

.cta-btn-android:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.733);
}

/* ===== Footer ===== */
.footer {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 56px calc(max((100vw - 1440px) / 2, 120px)) 32px;
  background-color: var(--text-primary);
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  font-size: 24px;
  color: var(--accent-rose);
}

.footer-logo-icon svg {
  stroke: var(--accent-rose);
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.footer-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.copyright {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  transition: color 0.2s;
}

.social-icon svg {
  stroke: rgba(255, 255, 255, 0.6);
  transition: stroke 0.2s;
}

.social-icon:hover svg {
  stroke: rgba(255, 255, 255, 0.9);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 40px;
  }

  .hero {
    padding: 60px 40px;
    flex-direction: column;
    height: auto;
  }

  .hero-right {
    height: 400px;
  }

  .features,
  .testimonials,
  .cta-section {
    padding: 60px 40px;
  }

  .footer {
    padding: 48px 40px 24px 40px;
  }

  .features-grid {
    flex-direction: column;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .features-col {
    flex-direction: row;
  }

  .cta-card {
    padding: 48px 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .features,
  .testimonials,
  .cta-section {
    padding: 48px 20px;
  }

  .footer {
    padding: 40px 20px 20px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-col {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .stats-row {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }


  .cta-btns {
    flex-direction: column;
  }
}

@media (max-width: 375px) {
  .navbar,
  .hero,
  .features,
  .testimonials,
  .cta-section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== Scroll Animations ===== */

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Slide-up animation */
.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .fade-in,
  .slide-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}