/* ============================================
   SUSAVERDA — Responsive Breakpoints
   ============================================ */

/* ---------- Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 600px;
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-wrapper {
    max-width: 400px;
    margin-inline: auto;
    margin-top: 3rem;
  }

  .hero__profile-img {
    transform: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about__text-content {
    order: 2;
  }

  .about__image {
    order: 1;
    max-width: 450px;
    margin-inline: auto;
  }

  .about__text-content .decor-line {
    margin-inline: auto;
  }

  .about__text-content p {
    margin-inline: auto;
  }

  .pain-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-points__grid > :last-child {
    grid-column: span 2;
    max-width: 450px;
    margin-inline: auto;
  }

  .methods__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .methods__grid > :last-child {
    grid-column: span 2;
    max-width: 450px;
    margin-inline: auto;
  }

  .epigenetics__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .epigenetics__image {
    max-width: 500px;
    margin-inline: auto;
    order: -1;
  }

  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .process__steps::before {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > :first-child {
    grid-column: span 2;
  }
}

/* ---------- Mobile Large (max 768px) ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --gap: 1.5rem;
  }

  .navbar__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 998;
  }

  .navbar__links.active {
    display: flex;
  }

  .navbar__link {
    font-size: 1.3rem;
  }

  .navbar__toggle {
    display: flex;
    z-index: 999;
  }

  .navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar__cta--desktop {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero__float-badge {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
  }

  .pain-points__grid {
    grid-template-columns: 1fr;
  }

  .pain-points__grid > :last-child {
    grid-column: span 1;
  }

  .methods__grid {
    grid-template-columns: 1fr;
  }

  .methods__grid > :last-child {
    grid-column: span 1;
  }

  .process__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .epigenetics__factors {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > :first-child {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .card-3d {
    padding: 2rem;
  }

  .quote-block {
    padding: 2rem;
  }

  .quote-block__text {
    font-size: 1.15rem;
  }
}

/* ---------- Mobile Small (max 480px) ---------- */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    padding: 0.9rem 1.8rem;
  }

  .card-3d {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .card-3d__icon {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .float-shapes {
    display: none;
  }
}
