*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hero-bg:       #F6D2FF;
  --faq-bg:        #E2E9FF;
  --reviews-bg:    #DFF4E8;
  --feature-card:  #63B2FF;
  --title-color:   #1D2A5B;
  --text-dark:     #1D1D1D;
  --white:         #ffffff;
  --nav-bg:        #ffffff;
  --step-purple:   #E8DCFF;
  --step-orange:   #FFE8C8;
  --step-green:    #D4F5DC;
  --step-num-purple: #7B4FCC;
  --step-num-orange: #E07B00;
  --step-num-green:  #2E9E50;
  --border-radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

section {
  padding: 20px 40px;
}

.section-title {
  font-family: 'Coiny', cursive;
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0.12%;
  text-align: center;
  color: var(--title-color);
  margin-bottom: 48px;
}


.avatar-fallback {
  background: #b0c4de;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-fallback::after {
  content: '👤';
  font-size: 24px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  max-width: 54px;
  max-height: 54px;
}
.logo-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.logo-fallback { display: none; font-size: 32px; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.12%;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--step-num-purple); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 30%;
  z-index: 200;
  background: var(--nav-bg);
  padding: 60px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  text-decoration: none;
}
.close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 150;
}
.overlay.active { display: block; }

.footer {
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 28px 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  
  .footer-logo { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 15px;
    margin-left: auto;
  }
  .footer-right a {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
  }
  .footer-right a:hover { text-decoration: underline; }
  
  .footer-copy {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
  }
  .footer-left img{
    width: 94px;
    height: 94px;
  }

  h1{
    font-size: 40px;
    margin-bottom: 20px;
  }
  h2{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  h3{
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  @media (max-width: 480px) {

    *, *::before, *::after { 
      box-sizing: border-box !important; 
    }
    .section-title { 
      font-size: 24px; 
      margin-bottom: 32px; 
      text-align: center;
    }
  
    .navbar {
      padding: 14px 20px !important;
    }
  
    .nav-links {
      display: none !important; 
    }
  
    .hamburger {
      display: flex !important;
    }
  
    .footer {
      padding: 24px 20px !important;
      flex-direction: column !important;
      text-align: center !important;
      gap: 20px !important;
      width: 100% !important;
    }
  
    .footer-right {
      margin-left: auto !important;
      margin-right: auto !important;
      gap: 24px !important;
      align-items: center;
    }
  }