*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #02040e;
    --bg2: #111120;
    --card: #13131f;
    --card2: #181828;
    --border: rgba(255,255,255,0.07);
    --purple: #3b33c7;
    --purple-light: #463ed7;
    --purple-bright: #4239da;
    --purple-glow: #3b33c782;
    --text: #e8e8f0;
    --muted: #8888aa;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* â”€â”€ NAV â”€â”€ */
  #mainNav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: var(--bg);
    backdrop-filter: blur(12px);
  }

  .nav-logo {display: flex;align-items: center;gap: 10px;font-weight: 700;font-size: 16px;color: var(--white);flex: 2;text-decoration: none;}
  .nav-logo .logo-icon {width: 32px;height: 32px;display: flex;align-items: center;justify-content: center;font-size: 16px;}
  .nav-logo .logo-icon img {width:100%;border-radius:100px}

  .nav-links {display: flex;gap: 28px;list-style: none;margin-right: 40px;}
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--white); }
  .nav-links a.active {border-bottom: 2px solid var(--purple);padding-bottom: 5px;}

  .nav-actions { display: flex; gap: 10px; align-items: center; }
  .btn-primary {padding: 8px 18px;background: var(--purple);background: linear-gradient(90deg,var(--purple-light) 0%, var(--purple-light) 50%, #7049f3 100%);border-radius: 6px;color: var(--white);font-size: 14px;font-weight: 600;cursor: pointer;text-decoration: none;border: none;transition: background .2s;}
  .btn-primary:hover {filter: brightness(1.2);}

    #main {
        max-width: 1280px;
        margin:auto;
    }

  /* â”€â”€ HERO â”€â”€ */
  .hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }


  .hero-content { max-width: 560px; position: relative; z-index: 2; }

  .hero h1 {font-size: 45px;font-weight: 800;line-height: 1.15;margin-bottom: 20px;color: var(--white);}
    .hero h1 span {
        background: linear-gradient(to right, #986cf1, #d275ed);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent; /* Ð´Ð»Ñ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ¸ ÑÑ‚Ð°Ñ€Ñ‹Ñ… Ð±Ñ€Ð°ÑƒÐ·ÐµÑ€Ð¾Ð² */
    }

  .hero-sub { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }

  .hero-btns { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
  .btn-hero-primary {display: flex;align-items: center;gap: 8px;padding: 14px 28px;background: var(--purple);background: linear-gradient(90deg, var(--purple-light) 0%, var(--purple-light) 50%, #7049f3 100%);border-radius: 7px;color: var(--white);font-size: 15px;font-weight: 600;text-decoration: none;border: none;cursor: pointer;transition: background .2s, transform .1s;}
  .btn-hero-primary:hover {/* background: var(--purple-light); */transform: translateY(-1px);filter: brightness(1.2);}
  .btn-hero-secondary { display: flex; align-items: center; gap: 8px; padding: 14px 28px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 15px; font-weight: 500; text-decoration: none; background: transparent; cursor: pointer; transition: border-color .2s; }
  .btn-hero-secondary:hover { border-color: rgba(124,58,237,0.5); }

  .hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
  .hero-badge-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
  .hero-badge-item svg { opacity: 0.6; }

  .hero-visual {
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-47%);
    width: 430px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  
  .hero-visual img {
          width: 120%;
  }

  /* â”€â”€ STATS â”€â”€ */
  .stats-bar {
    margin: 0 0px 60px;
    background: #090d18;
    border: 1px solid #0d111c;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    padding: 32px 40px;
    gap: 20px;
  }
  .stat-item {position: relative;display: flex;gap: 10px;}
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #0d111c;
  }
  .stat-num {font-size: 26px;font-weight: 800;color: var(--white);line-height: 1;margin-bottom: 5px;}
  .stat-label { font-size: 13px; color: var(--muted); }

  /* â”€â”€ SECTIONS â”€â”€ */
  section { margin-bottom: 40px; }

  .section-head {/* text-align: center; */margin-bottom: 52px;}
  .section-label {font-size: 13px;font-weight: 600;letter-spacing: 1px;text-transform: uppercase;color: var(--purple-bright);margin-bottom: 10px;}
  .section-head h2 {font-size: 36px;font-weight: 800;color: var(--white);margin-bottom: 12px;/* line-height: 1; */}
  .section-head p { font-size: 15px; color: var(--muted); max-width: 500px; margin: 0 auto; }

  /* â”€â”€ FEATURES â”€â”€ */
  .features-bg {}
  .features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

  .feature-card {
    background: #0b0e19;
    border: 1px solid #0b0f1b;
    border-radius: 14px;
    padding: 28px 22px;
    transition: border-color .2s, transform .2s;
  }
  .feature-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }

  .feature-icon {
    width: 44px; height: 44px;
    background: rgba(124,58,237,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 20px;
  }
  .feature-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .feature-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* â”€â”€ HOW IT WORKS â”€â”€ */
  .steps-container { display: flex; gap: 0; align-items: flex-start; position: relative; margin-bottom: 60px; }
  .steps-container::before {
    content: '';
    position: absolute; top: 24px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--purple), rgba(124,58,237,0.2));
    z-index: 0;
  }
  .step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 10px; }
  .step-num {
    width: 48px; height: 48px;
    background: var(--purple);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: var(--white);
    margin: 0 auto 16px;
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--purple);
  }
  .step h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  .cta-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .cta-card {
    background: #0b0e19;
    border: 1px solid #0b0f1b;
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .cta-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .cta-card .cta-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

  /* â”€â”€ CUSTOM BOT â”€â”€ */
  .custom-bg {background: #0b0c19;padding: 0;border-radius: 15px;}
  .custom-inner {display: flex;gap: 20px;align-items: center;background: #140f24;border-radius: 15px;}
  .robot-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 35px 40px;
    width: 35%;
    background: #140f24;
    border-radius: 15px 0 0 15px;
  }
  
  .robot-wrap img {
      width: 100%;
  }
  
  .custom-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .cf-item { display: flex; align-items: flex-start; gap: 14px; }
  .cf-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(124,58,237,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
  .cf-item h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .cf-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* â”€â”€ BLOG â”€â”€ */
  .blog-inner {
    background: linear-gradient(135deg, var(--card), #1a0f40);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }
  .blog-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.2), transparent 70%);
  }
  .blog-inner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: url(src/gift.webp);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
 
  }
  .blog-crystal {
    width: 160px;
    height: 1;
    z-index: 1;
    flex-shrink: 0;
    top: 0;
    bottom: 0;
  }
  .crystal-shape {
    width: 120px; height: 140px;
    background: linear-gradient(135deg, rgba(124,58,237,0.8), rgba(168,85,247,0.5), rgba(91,33,182,0.9));
    clip-path: polygon(50% 0%, 100% 30%, 100% 70%, 50% 100%, 0% 70%, 0% 30%);
    filter: drop-shadow(0 0 30px rgba(124,58,237,0.8));
    animation: pulse-glow 3s ease-in-out infinite;
  }
  @keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(124,58,237,0.6)); }
    50% { filter: drop-shadow(0 0 50px rgba(124,58,237,1)); }
  }

  .blog-text { position: relative; z-index: 1; }
  .blog-text h2 { font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
  .blog-text p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
  .blog-btns { display: flex; gap: 14px; }

  /* â”€â”€ FOOTER â”€â”€ */
  footer {
    border-top: 1px solid rgb(110 122 206 / 7%);
    padding: 60px 40px 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 280px repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 10px;
  }
  .footer-brand p { font-size: 13px; color: var(--muted); margin: 12px 0 20px; line-height: 1.6; }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 34px; height: 34px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; text-decoration: none; color: var(--muted);
    transition: border-color .2s, color .2s;
  }
  .social-link:hover { border-color: var(--purple); color: var(--purple-bright); }
  .footer-col h3 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {padding-top: 24px;text-align: center;font-size: 13px;color: var(--muted);}

/* â”€â”€ FAQ â”€â”€ */
.faq-section {
  padding: 100px 40px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}

.faq-q:hover {
  color: #a58fff;
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(112, 73, 243, 0.12);
  color: #7049f3;
  transition: transform .3s ease, background .2s;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: rgba(112, 73, 243, 0.22);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-a.open {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 0;
  transition: padding-bottom .3s ease;
}

.faq-a.open .faq-a-inner {
  padding-bottom: 22px;
}

/* â”€â”€ REVIEWS â”€â”€ */
.reviews-section {
  padding: 100px 0;
  overflow: hidden;
  margin-bottom: 0;
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.reviews-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
}

.reviews-track-wrap {
  overflow: hidden;
  margin: 0 -40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 40s linear infinite;
  padding: 8px 40px;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .2s;
}

.review-card:hover {
  border-color: rgba(112, 73, 243, 0.4);
  transform: translateY(-3px);
}

.review-stars {
  color: #f5c842;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.review-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

#how {
    padding: 100px 0;
}
/* â”€â”€ CONTACTS â”€â”€ */
.contacts-section {
  padding: 100px 40px;
  margin-bottom: 0;
}

.contacts-inner {
  max-width: 860px;
  margin: 0 auto;
}

.contacts-inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.contacts-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
}

.contact-card:hover {
  border-color: rgba(112, 73, 243, 0.45);
  background: rgba(112, 73, 243, 0.05);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.contact-arrow {
  color: var(--muted);
  transition: color .2s, transform .2s;
  flex-shrink: 0;
}

.contact-card:hover .contact-arrow {
  color: #7049f3;
  transform: translateX(3px);
}

.robot-info {
    padding: 20px;
    width: 65%;
    padding-top: 0;
    background: #0b0e19;
    padding-right: 70px;
    border-radius: 0 15px 15px 0;
    padding-top: 20px;
}

@media (max-width: 640px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” RANDOMATUSBOT
   1024px â†’ tablet landscape
    768px â†’ tablet portrait
    640px â†’ large phone
    480px â†’ phone
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ 1024px â”€â”€ */
@media (max-width: 1024px) {

  /* NAV */
  .nav-links { gap: 18px; margin-right: 20px; }

  /* HERO */
  .hero { min-height: 70vh; padding: 60px 40px; }
  .hero h1 { font-size: 38px; }
  .hero-visual { width: 340px; height: 340px; right: 3%; }

  /* STATS */
  .stats-bar { padding: 24px 28px; gap: 12px; }
  .stat-num { font-size: 22px; }

  /* FEATURES */
  .features-grid { grid-template-columns: repeat(3, 1fr); }

  /* PRICING */
  .cta-cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* CUSTOM BOT */
  .robot-wrap { padding: 50px 30px; }
  .custom-features { grid-template-columns: 1fr 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 220px repeat(4, 1fr); gap: 28px; }
}

/* â”€â”€ 768px â”€â”€ */
@media (max-width: 768px) {

  /* NAV â€” burger */
  #mainNav { padding: 0 20px; position: relative; }
  .nav-links { display: none; }
  .nav-actions .btn-primary { padding: 8px 14px; font-size: 13px; }

  /* Burger button (JS toggles .nav-open on <nav>) */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0 8px;
    margin-left: 10px;
  }
  .nav-burger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }
  nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    z-index: 200;
    list-style: none;
  }
  nav.nav-open .nav-links li a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    color: var(--text);
  }
  nav.nav-open .nav-links li a:hover,
  nav.nav-open .nav-links li a.active { color: var(--white); background: rgba(112,73,243,.07); }

  /* HERO */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: unset;
    padding: 60px 20px 40px;
    gap: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }
  .hero-visual img { width: 80%; max-width: 320px; }

  .robot-info {
      width: 100%;
      padding: 0;
  }

  /* STATS */
  .stats-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    border-radius: 12px;
    margin: 48px 16px 32px;
  }
  .stat-item {
    width: 50%;
    padding: 20px 24px;
    border-right: 1px solid #0d111c;
    border-bottom: 1px solid #0d111c;
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-item::after { display: none; }

  /* FEATURES */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* HOW */
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .steps-container::before { display: none; }
  .step { width: 100%; max-width: 340px; }

  /* PRICING */
  .cta-cards {grid-template-columns: 1fr;/* max-width: 400px; */margin: 0 auto;}

  /* CUSTOM BOT */
  .custom-inner { flex-direction: column; }
  .robot-wrap {width: 100%;border-radius: 15px 15px 0 0;padding: 40px 20px;display: none;}
  .custom-bg > div {padding: 30px 24px;background: #0b0e19;}
  .custom-features { grid-template-columns: 1fr 1fr; }

  /* BLOG */
  .blog-inner { flex-direction: column; padding: 40px 24px; gap: 24px; }
  .blog-text h2 { font-size: 26px; }

  /* REVIEWS */
  .reviews-section { padding: 60px 0; }
  .reviews-inner { padding: 0 20px; }
  .reviews-track-wrap { margin: 0 -20px; }
  .review-card { width: 280px; }

  /* FAQ */
  .faq-section { padding: 60px 20px; }
  .faq-q { font-size: 15px; }

  /* CONTACTS */
  .contacts-section { padding: 60px 20px; }
  .contacts-grid { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding: 48px 20px 24px; }

  /* SECTION HEADINGS */
  .section-head h2,
  .faq-inner h2,
  .reviews-inner h2,
  .contacts-inner h2 { font-size: 28px; }

  #how, #slot-mechanic { padding: 60px 16px; }
}

/* â”€â”€ 640px â”€â”€ */
@media (max-width: 640px) {

  /* HERO */
  .hero h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero-primary,
  .btn-hero-secondary { justify-content: center; width: 100%; }
  .hero-badges { gap: 12px; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* CUSTOM BOT */
  .custom-features { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* â”€â”€ 480px â”€â”€ */
@media (max-width: 480px) {

  /* NAV */
  .nav-logo { font-size: 14px; }

  /* HERO */
  .hero { padding: 48px 16px 32px; }
  .hero h1 { font-size: 24px; }
  .hero-visual img { width: 90%; }

  /* STATS */
  .stat-item { width: 100%; border-right: none; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: 1px solid #0d111c; }
  .stat-item:last-child { border-bottom: none; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr; }

  /* SECTION PADS */
  .faq-section,
  .contacts-section {padding: 48px 16px;}
  .reviews-inner {padding: 0 16px;}
  .reviews-track-wrap { margin: 0 -16px; }
    .features-bg {
           padding: 48px 16px 32px; 
    }
    
    .custom-bg, #blog {
                margin: 60px 16px;
    }
  
  .blog-inner::after {
    background: none;
  }
    
  /* BLOG */
  .blog-inner { padding: 32px 16px; }

  /* FOOTER */
  footer {padding: 40px 16px 20px;}
  .footer-grid { gap: 24px; }
}

/* â”€â”€ Burger hidden on desktop â”€â”€ */
@media (min-width: 769px) {
  .nav-burger { display: none; }
}