/* ==========================================================================
   Responsive — Desktop tight / Tablet Landscape
   ========================================================================== */
@media (max-width: 1280px) {
  .nav-list { gap: 1.1rem; }
  .nav-list a { font-size: 0.8rem; }

  .fruit-side { display: none; }
}

@media (max-width: 1024px) {
  .nav-desktop,
  .header-actions { display: none; }

  .nav-toggle { display: flex; }

  .header-inner {
    gap: 0.75rem;
  }

  .logo img {
    height: 40px;
    max-width: min(220px, 58vw);
  }

  .footer-logo {
    height: 40px;
  }

  .hero-fold__bg {
    grid-template-columns: 1fr;
  }

  .hero-fold__bg-left {
    min-height: 100%;
    background:
      url("assets/images/fruits/leaf-pattern.svg") 4% 8% / 180px auto no-repeat,
      linear-gradient(180deg, #f6fbf3 0%, var(--bg-light-green) 70%, #e8f3e4 100%);
  }

  .hero-fold__bg-right {
    display: none;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 8% -8% -2%;
    background: linear-gradient(180deg, #f6fbf3 0%, var(--bg-light-green) 70%, #e8f3e4 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-inline: clamp(1.25rem, 5vw, 2.25rem);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .hero-content > p { margin-inline: auto; }

  .hero-ctas {
    margin-inline: auto;
    max-width: 400px;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
    margin: 0 auto;
    max-width: 400px;
  }

  .hero-photo-card {
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-decor--1 {
    width: min(110px, 16vw);
    top: 10%;
    left: 0.5rem;
  }

  .hero-decor--2 {
    width: min(120px, 17vw);
    bottom: 6%;
    right: 0.75rem;
  }

  .hero-decor--3 {
    width: min(80px, 12vw);
    top: 6%;
    right: 1.25rem;
  }

  .hero-decor--4 {
    width: min(95px, 14vw);
    bottom: 12%;
    left: 1rem;
  }

  .stats-strip .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0;
  }

  .stats-strip .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(27, 67, 50, 0.12);
  }

  .stats-strip .stat-item:nth-child(n + 3) {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(27, 67, 50, 0.1);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-choose-visual { order: -1; }

  .bowl-image-wrap { max-width: 320px; margin: 0 auto; }

  .empowering-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .empowering-content .btn { margin: 0 auto; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo { max-width: 400px; margin: 0 auto; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-nav-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .how-it-works-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .written-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-fruits .pos-5,
  .floating-fruits .pos-6 { display: none; }

  .calc-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 28rem;
  }

  .hero-ctas .btn {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .video-testimonials {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

/* ==========================================================================
   Tablet Portrait (768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
    --nav-height-scrolled: 60px;
    --section-padding: clamp(2.75rem, 7vw, 4rem);
  }

  .section {
    padding: var(--section-padding) 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .btn {
    min-height: 44px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .how-it-works-layout {
    grid-template-columns: 1fr;
  }

  .how-it-works-intro {
    text-align: center;
  }

  .how-it-works-intro .btn {
    margin: 0 auto;
  }

  .video-testimonials {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .written-reviews-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .secondary-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .secondary-cta-content p {
    margin: 0 auto;
  }

  .secondary-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .secondary-cta-actions .btn {
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-grid--compact {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-box {
    padding: 1.75rem 1.25rem;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-nav-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.65rem;
  }

  .footer-nav-row a {
    white-space: normal;
  }

  .calculator-wrapper {
    border-radius: var(--radius-md);
  }

  .calc-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calculator-showcase {
    text-align: center;
    padding: 0;
  }

  .calc-showcase-text {
    margin-left: auto;
    margin-right: auto;
  }

  .calc-showcase-perks {
    align-items: center;
  }

  .calc-showcase-perks li {
    max-width: 22rem;
  }

  .calc-options--grid {
    grid-template-columns: 1fr;
  }

  .calc-nav {
    flex-direction: column-reverse;
  }

  .calc-nav .btn {
    width: 100%;
  }

  .value-pillars--hero .pillar {
    padding: 0 1rem;
  }

  .value-pillars--hero .pillar:not(:last-child)::after {
    display: none;
  }

  .value-pillars,
  .value-pillars--hero {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stats-strip .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip .stat-item {
    border-right: none !important;
    border-top: 1px solid rgba(27, 67, 50, 0.1);
    padding-top: 1rem;
  }

  .stats-strip .stat-item:first-child {
    border-top: none;
    padding-top: 0.5rem;
  }

  .floating-fruits .pos-3,
  .floating-fruits .pos-4 { display: none; }

  .floating-fruits .fruit,
  .fruit { opacity: 0.7; }

  .hero-decor--3,
  .hero-decor--4 { display: none; }

  .home-lower-fruits .lower-fruit--1,
  .home-lower-fruits .lower-fruit--3 { display: none; }

  .home-lower-fruits .lower-fruit--2,
  .home-lower-fruits .lower-fruit--4 {
    opacity: 0.7;
  }
}

/* ==========================================================================
   Mobile (480px)
   ========================================================================== */
@media (max-width: 480px) {
  :root {
    --nav-height: 68px;
    --nav-height-scrolled: 56px;
  }

  .mobile-menu {
    width: min(300px, 92vw);
    padding-inline: 1.25rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float__icon {
    width: 28px;
    height: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .stats-grid,
  .stats-strip .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip .stat-item {
    border-right: none !important;
    border-top: 1px solid rgba(27, 67, 50, 0.1);
    padding-top: 1rem;
  }

  .stats-strip .stat-item:first-child {
    border-top: none;
    padding-top: 0.5rem;
  }

  .hero-grid {
    padding-inline: 1.25rem;
  }

  .hero-decor--1,
  .hero-decor--2 {
    width: min(72px, 18vw);
    opacity: 0.9;
  }

  .hero-decor--3,
  .hero-decor--4 { display: none; }

  .home-lower-fruits { display: none; }

  .credential-pill {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .pricing-card,
  .pricing-tier {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .calculator-wrapper {
    margin-inline: 0;
  }

  .calculator-body {
    padding: 1.25rem 1rem 1.25rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .hero-photo-card {
    max-width: 260px;
  }

  .fruit-wrap.fruit--3,
  .fruit-wrap.fruit--4 { display: none; }

  .floating-fruits .pos-1,
  .floating-fruits .pos-2 {
    opacity: 0.5;
    transform: scale(0.75);
  }

  .floating-fruits .pos-1 { top: 5%; left: 0; }
  .floating-fruits .pos-2 { top: 5%; right: 0; }

  .value-pillars {
    flex-direction: column;
    gap: 1.25rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bowl-image-wrap {
    max-width: 260px;
  }

  .empowering-cards {
    gap: 1rem;
  }

  .contact-social .social-icons--labeled .icon-btn {
    flex: 1 1 100%;
  }

  .footer-nav-row {
    grid-template-columns: 1fr;
    row-gap: 0.35rem;
  }

  .footer-nav-row a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .error-page-header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-page-header-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .error-fruit--1,
  .error-fruit--2 { width: 56px; }
  .error-fruit--3,
  .error-fruit--4 { width: 48px; }
}
