/* ---------------------------------
  TABLET MODE
--------------------------------- */
/* 
IPHONE 12 PRO LAND, 
IPHONE 14 PROMAX LAND 
*/
@media (max-width: 991px) {

  .hero {
    min-height: 450px;
  }

  .hero h2 {
    font-size: 13pt;
  }

  /* NAV */
  /* 427 - 465 */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 12px;
    padding: 16px;
    gap: 10px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;
  }

  .nav-links.open {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-indicator {
    display: none; /* indicator hidden in stacked mode */
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  /* FEATURE SECTION */
  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card h4 {
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 20px;
    height: 20px;
  }

  /* WHAT SECTION */
  /* 806 - 814 */
  .what-image {
    height: 200px;
  }

  .what-item {
    padding: 1.5rem;
  }

  /* ABOUT SECTION */
  /* 819 - 826 */
  .about-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-portrait {
    width: 100%;
    height: 280px;
  }

  /* PLATFORM SECTION */
  /* 928 - 931 */
  .platform-dropdown {
    margin-top: 2rem;
    margin-left: 0;
  }

  /* VISION */
  .vision-bg {
    min-height: 620px;
  }

  .philosophy-card h5 {
    font-size: 16px;
  }

  .approach-card.left {
    left: 13%;
  }

  .approach-card.right {
    right: 13%;
  }

  .approach-card.center {
    top: 58%;
  }

  /* FAQ */
  .faq-question h5 {
    font-size: 17px;
  }

  .faq-item {
    padding: 12px;
  }

  .faq-img {
    height: 200px;
    width: 200px;
  }

  .faq-answer {
    padding-right: 40px;
  }

  /* FOOTER */
  /* 1184 - 1201 */
  /* .footer-cta {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    margin-top: 30px;
  }

  .footer-center {
    margin: 30px 0;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  } */

  .footer-logo {
    margin-left: -30px;
  }
}

/* IPAD MINI */
@media (max-width: 770px) {
  .navbar a {
    max-width: 100%;
  }

  .approach-cards {
    display: none;
  }

  .vision-bg,
  .approach-bg {
    background-attachment: scroll;
  }

  .approach-bg {
    min-height: 1000px !important;
  }

  .approach-card-sm {
    margin-top: 15px;
    display: block !important;
    position: static;       
    transform: none;        
    border: 1px solid #D9E8B5;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    padding: 28px;
    text-align: center;
  }
}