*, *::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-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(--hero-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(--hero-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; }

.hero {
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 60px 80px;
  min-height: 520px;
}

.hero-content {
  flex: 1;
  max-width: 700px;
  margin-left: 100px;
}

.hero-title {
  font-family: 'Coiny', cursive;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  letter-spacing: 0.12%;
  color: var(--title-color);
  margin-bottom: 20px;
}

.hero-desc {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: var(--text-dark);
  margin-bottom: 36px;
  max-width: 440px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--title-color);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(29,42,91,0.25);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,42,91,0.32); }

.play-icon { width: 18px; height: 18px; }

.hero-images {
  display: flex;
  gap: 24px; 
  flex-shrink: 0;
  width: 440px; 
}
.phone-card {
  flex: 1; 
  background: none;
}
.phone-card img {
  display: block; 
  width: 100%; 
  height: auto;
  border-radius: 10px;
}
.features-section {
  background: var(--white);
  padding: 80px 60px;
  max-height: 994px;
}

.features-layout {
  display: flex;
  gap: 94px;
  align-items: stretch;
  justify-content: center;
}
.features-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 94px;
  flex: 0 0 auto;
  width: 380px;
}
.screenshot-card {
  border-radius: 14px;
  overflow: hidden;
  min-height: 160px;
}
.screenshot-card img { width: 100%; height: 100%; object-fit: cover; }

.features-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}

.feature-card {
  background: var(--feature-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--border-radius);
  padding: 16px;
  max-width: 408px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-card-title {
  font-family: 'Coiny', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--title-color);
  margin-bottom: 4px;
}

.feature-card p {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.12%;
  color: var(--text-dark);
}
.how-section {
  background: var(--white);
  padding: 80px 60px;
  border-top: 1px solid #eee;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  border-radius: 10px;
  border: 1px solid #e0e4f0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 4px rgba(29,42,91,0.1);
  
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card--purple { 
  border-color: #D49CE0; 
  box-shadow: 0 4px 4px #C85AEFA6; 
}
.step-card--orange { 
  border-color: #FFA632; 
  box-shadow: 0 4px 4px #FFA632A6; 
}
.step-card--green  { 
  border-color: #14C328; 
  box-shadow: 0 4px 4px #14C328A6; 
}

.step-title {
  font-family: 'Coiny', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--title-color);
}

.step-card p {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1D1D1D;
  text-align: center;
}
   .faq-section {
    background: var(--faq-bg);
    padding: 80px 60px;
  }
  
  .faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px; 
  }
  
  .faq-item {
    background: #FFFFFF; 
    border-radius: 10px;
    border: 1px solid #e0e4f0; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); 
    overflow: hidden; 
    transition: box-shadow 0.3s ease;
  }
  
  .faq-item:first-child { border-top: 1px solid #e0e4f0; } 
  
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 24px; 
    text-align: left;
  }
  
  .faq-num {
    font-family: 'Coiny', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: var(--title-color);
    min-width: 32px;
  }
  
  .faq-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    flex: 1;
  }
  
  .faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f44;
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
  }
  
  .faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
    background: var(--title-color);
  }
  
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.3s ease;
  }
  
  .faq-answer.open { 
    max-height: 300px; 
  }
  
  .faq-answer p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 155%;
    color: #444;
    padding: 0 24px 20px 72px; 
  }
   .reviews-section {
    background: var(--reviews-bg);
    padding: 80px 60px;
  }
  
  .reviews-section .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .reviews-track-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px; 
    max-width: 1040px; 
    margin: 0 auto;
  }
  .reviews-track {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center; 
  }
  .review-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px;
    width: calc((100% - 48px) / 3); 
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;    
    gap: 12px;              
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  }
  .review-text {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: #555;
    text-align: center;     
  }
  
  .reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #b0c4de;
  }
  .reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
  
  .reviewer-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
  }
  
  .stars { color: #FFCC00; font-size: 25px; letter-spacing: 2px; }
  
     .review-arrow {
      position: static; 
      transform: none;      
      color: #74CE7D; 
      background: none;
      border: none;  
      box-shadow: none; 
      
      width: 44px;
      height: 44px;
      font-size: 28px; 
      cursor: pointer;
      display: inline-flex; 
      align-items: center;
      justify-content: center;
      transition: color 0.2s ease;
    }
    .review-arrow:hover {   
      color: #009E34; 
      background: none; 
    }
    
    .review-arrow:active {
      color: #006B21; 
    }
    .review-arrow--prev, .review-arrow--next {
      position: absolute;
      bottom: -64px; 
      top: auto;
    }
    
    .review-arrow--prev {
      left: calc(50% - 54px); 
    }
    
    .review-arrow--next {
      right: calc(50% - 54px); 
    }
.bounce-left {
  animation: shiftLeft 0.3s ease;
}

.bounce-right {
  animation: shiftRight 0.3s ease;
}

@keyframes shiftLeft {
  0% { transform: translateX(0); }
  30% { transform: translateX(-20px); }
  100% { transform: translateX(0); }
}

@keyframes shiftRight {
  0% { transform: translateX(0); }
  30% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}
.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;
}
   @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;
    }
    .hero {
      flex-direction: column !important;
      align-items: flex-start !important;
      text-align: left !important;
      padding: 40px 20px 48px !important;
      gap: 32px !important;
      width: 100% !important;
    }
  
    .hero-content {
      width: 100% !important;
      max-width: 100% !important;
      margin-left: 0 !important;
    }
  
    .hero-title { 
      font-size: 36px !important;
      line-height: 120% !important;
      margin-bottom: 16px !important;
    }
  
    .hero-desc {
      font-size: 14px !important;
      line-height: 150% !important;
      margin-bottom: 24px !important;
      max-width: 100% !important;
    }
  
    .cta-btn {
      padding: 12px 24px !important;
      font-size: 15px !important;
      width: auto !important;
      display: inline-flex !important;
    }
  
    .hero-images {
      display: flex !important;
      gap: 16px !important; 
      width: 100% !important;
      max-width: 280px !important; 
      margin: 0 auto !important;
    }
  
    .phone-card {
      flex: 1 !important;
      min-width: 0 !important;
      min-height: auto !important;
    }
  
    .phone-card img {
      display: block !important;
      width: 100% !important;
      height: auto !important;
      border-radius: 10px !important;
    }
  
    .features-section {
      padding: 40px 20px !important;
      max-height: none !important; 
      height: auto !important;
      width: 100% !important;
    }
  
    .features-layout {
      flex-direction: column !important;
      gap: 28px !important;
      align-items: center !important;
      width: 100% !important;
    }
    
    .features-screenshots {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important; 
      gap: 12px !important; 
      width: 100% !important;
      max-width: 240px !important; 
      margin: 0 auto !important;
    }
  
    .screenshot-card {
      width: 100% !important;
      max-height: none !important;
      background: none !important; 
      padding: 0 !important;
    }
  
    .screenshot-card img {
      width: 100% !important;
      height: auto !important;
      object-fit: contain !important;
      border-radius: 8px !important;
    }
  
    .features-cards {
      width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
      align-items: center !important;
    }
  
    .feature-card {
      max-width: 100% !important;
      width: 100% !important;
      padding: 20px 16px !important; 
    }
  
    .feature-card-title {
      font-size: 18px !important;
      margin-bottom: 8px !important;
    }
    
    .feature-card p {
      font-size: 14px !important;
      line-height: 140% !important;
    }
  
    .how-section {
      padding: 40px 20px !important;
      width: 100% !important;
    }
  
    .steps-grid {
      grid-template-columns: 1fr !important; 
      gap: 16px !important;
      width: 100% !important;
    }
  
    .step-card {
      padding: 24px 16px !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important; 
    }
  
    .step-title {
      font-size: 20px !important;
    }
    
    .step-card p {
      font-size: 14px !important;
    }
  
    .faq-section {
      padding: 40px 20px !important;
      width: 100% !important;
    }
  
    .faq-list {
      width: 100% !important;
    }
  
    .faq-num {
      font-size: 20px !important;
    }
    
    .faq-text {
      font-size: 16px !important;
    }
  
    .faq-answer p {
      padding: 0 16px 16px 16px !important; 
      font-size: 14px !important;
    }
  .reviews-section {
    padding: 40px 16px !important; 
    overflow: visible !important;
    width: 100% !important;
  }

  .reviews-track-wrapper {
    max-width: 100% !important;
    position: relative !important; 
    width: calc(100% - 32px) !important;
    margin: 0 auto !important; 
    overflow: hidden !important; 
  }

  .reviews-track {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
    overflow: visible !important;
    transition: transform 0.3s ease-in-out !important; 
    padding-left: 16px !important; 
    box-sizing: border-box !important;
  }

  .review-card {
    width: 100% !important; 
    max-width: 100% !important;
    flex: 0 0 100% !important;     
    flex-shrink: 0 !important;
    padding: 24px 20px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05) !important;
    margin-bottom: 60px !important; 
  }
  .review-arrow {
    position: absolute !important;   
    bottom: 5px !important;
    top: auto !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;       
    width: 44px !important;
    height: 44px !important;
    background: none !important;     
    border: none !important;
    box-shadow: none !important;
    color: #74CE7D !important; 
    font-size: 32px !important;      
    font-weight: bold !important;
    cursor: pointer !important;
  }
  .review-arrow--prev {
    left: calc(50% - 50px) !important; 
    right: auto !important;
  }
  
  .review-arrow--next {
    right: calc(50% - 50px) !important;
    left: auto !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;
    }
  }