@media (max-width: 992px) {
    .feature-hero {
      min-height: 420px;
    }
   
    .feature-hero-content {
      padding: 60px 50px;
    }
   
    .feature-hero-content h1 {
      font-size: 2.8rem;
    }
   }
   
   @media (max-width: 576px) {
    body {
      padding: 0px;
    }
   
    .feature-hero-content {
      padding: 75px 28px;
    }
   
    .feature-hero-content h1 {
      font-size: 2.2rem;
    }
   
    .feature-hero-content p {
      font-size: 1rem;
    }
   }

   @media (max-width: 992px) {
    .process-features {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .process-flow {
      flex-direction: column;
    }
  
    .flow-line {
      width: 60%;
    }
  }
  
  @media (max-width: 576px) {
    .process-features {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 991px) {
    .why-arrow {
      display: none;
    }
  }

  @media (max-width: 991px) {
    .ai-pillars-grid {
      grid-template-columns: 1fr;
    }
  
    .ai-pillars-header h2 {
      font-size: 2.4rem;
    }
  }
  
  @media (max-width: 576px) {
    .ai-pillar-card {
      padding: 36px 28px;
    }
  
    .ai-pillar-card h3 {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 768px) {
    .pricing-cta-container {
      padding: 50px 28px;
    }
  
    .pricing-cta-container h2 {
      font-size: 2.1rem;
    }
  
    .pricing-cta-container p {
      font-size: 1rem;
    }
  }
  

  /* ================================================================
   GRATITEXT — FEATURES PAGE FIX
   File   : Features_Fix.css  (merge into your Main.css)
   Owner  : GratiText
   ----------------------------------------------------------------
   ROOT CAUSE FIX:
     .feature-hero-wrapper had max-width: 1400px + margin: auto
     which caused white gaps on screens > 1400px wide.

   SOLUTION:
     Make the wrapper + hero FULL WIDTH (100vw).
     Constrain only the TEXT CONTENT inside, not the hero itself.
================================================================ */


/* ================================================================
   §1  HERO — FULL-WIDTH FIX  (the main bug)
================================================================ */

/* Remove the width cap from the wrapper — let it stretch full-bleed */
.feature-hero-wrapper {
  max-width: 100%;          /* was 1400px — caused white side gaps */
  width: 100%;
  margin: 0;
}

/* Hero itself full width, full height */
.feature-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 60px 0;
  overflow: hidden;
  background: url("https://i.pinimg.com/1200x/f7/96/4b/f7964b2f2fd2c1cab619a19127f40115.jpg")
    right center / cover no-repeat;
  display: flex;
  align-items: center;
}

/* Constrain only the text content — not the hero bg */
.feature-hero-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 70px 80px;         /* generous side padding keeps text away from edge */
  max-width: 100%;           /* text block stays readable */
  width: 100%;
}

/* On very large screens add more breathing room on the left */
@media (min-width: 1600px) {
  .feature-hero-content {
    padding-left: max(80px, calc((100vw - 1400px) / 2 + 80px));
  }
}


/* ================================================================
   §2  HERO — RESPONSIVE BREAKPOINTS  (cleaned up)
================================================================ */

@media (max-width: 1100px) {
  .feature-hero-content {
    padding: 70px 60px;
    max-width: 680px;
  }
}

@media (max-width: 992px) {
  .feature-hero {
    min-height: 460px;
  }

  .feature-hero-content {
    padding: 60px 50px;
    max-width: 100%;
  }

  .feature-hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .feature-hero {
    min-height: 400px;
    /* On tablet the image can be centered since content takes full width */
    background-position: center center;
  }

  .feature-hero-content {
    padding: 60px 36px;
  }

  .feature-hero-content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .feature-hero {
    min-height: 360px;
  }

  .feature-hero-content {
    padding: 75px 24px 60px;
  }

  .feature-hero-content h1 {
    font-size: 2.0rem;
    letter-spacing: -0.02em;
  }

  .feature-hero-content p {
    font-size: 0.96rem;
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .feature-hero-content {
    padding: 70px 18px 55px;
  }

  .feature-hero-content h1 {
    font-size: 1.8rem;
  }
}


/* ================================================================
   §3  PROCESS SECTION — RESPONSIVE
================================================================ */

@media (max-width: 992px) {
  .process-section {
    padding: 90px 20px;
  }

  .process-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-flow {
    flex-direction: column;
    gap: 20px;
    padding: 30px 28px;
  }

  .flow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(30, 200, 255, 0.6),
      transparent
    );
  }
}

@media (max-width: 576px) {
  .process-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-flow {
    padding: 24px 20px;
    gap: 16px;
  }

  .feature-card {
    padding: 26px 22px;
  }
}


/* ================================================================
   §4  WHY SLIDER SECTION — RESPONSIVEs
================================================================ */

@media (max-width: 991px) {
  .why-arrow {
    display: none;
  }

  .why-slider-container {
    padding: 0 24px;
  }

  .why-slider-header h2 {
    font-size: 2.4rem;
  }

  .why-card {
    height: auto;
    min-height: 300px;
    margin: 0 8px;
    padding: 32px 28px;
  }
}

@media (max-width: 576px) {
  .why-slider-section {
    padding: 80px 0;
  }

  .why-slider-container {
    padding: 0 16px;
  }

  .why-slider-header h2 {
    font-size: 2.0rem;
  }

  .why-card {
    padding: 28px 22px;
    margin: 0 6px;
  }

  .why-card h3 {
    font-size: 1.25rem;
  }

  .why-card p {
    font-size: 0.90rem;
  }

  .card-contact-btn {
    padding: 10px 18px;
    font-size: 0.88rem;
  }
}


/* ================================================================
   §5  AI PILLARS SECTION — RESPONSIVE
================================================================ */

@media (max-width: 991px) {
  .ai-pillars-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ai-pillars-header {
    max-width: 100%;
    margin-bottom: 52px;
  }

  .ai-pillars-header h2 {
    font-size: 2.4rem;
  }

  .ai-pillar-card {
    padding: 40px 36px;
  }
}

@media (max-width: 576px) {
  .ai-pillars-section {
    padding: 80px 0;
  }

  .ai-pillars-container {
    padding: 0 18px;
  }

  .ai-pillar-card {
    padding: 32px 24px;
  }

  .ai-pillar-card h3 {
    font-size: 1.55rem;
  }

  .ai-pillar-card p {
    font-size: 0.93rem;
  }

  .ai-pillars-header h2 {
    font-size: 2.0rem;
  }

  .btn-ai-contact {
    padding: 11px 22px;
    font-size: 0.88rem;
  }
}

@media (max-width: 375px) {
  .ai-pillar-card {
    padding: 28px 18px;
  }

  .ai-pillar-card h3 {
    font-size: 1.4rem;
  }
}


/* ================================================================
   §6  PRICING CTA SECTION — RESPONSIVE
================================================================ */

@media (max-width: 992px) {
  .pricing-cta-container {
    padding: 60px 44px;
  }

  .pricing-cta-container h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .pricing-cta-section {
    padding: 80px 16px;
  }

  .pricing-cta-container {
    padding: 50px 28px;
    border-radius: 24px;
  }

  .pricing-cta-container h2 {
    font-size: 2.1rem;
  }

  .pricing-cta-container p {
    font-size: 0.97rem;
  }

  .btn-pricing-cta {
    padding: 14px 30px;
    font-size: 0.94rem;
  }
}

@media (max-width: 576px) {
  .pricing-cta-container {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .pricing-cta-container h2 {
    font-size: 1.85rem;
  }

  .pricing-cta-container p {
    font-size: 0.93rem;
  }

  .btn-pricing-cta {
    padding: 13px 26px;
    font-size: 0.90rem;
    gap: 9px;
  }
}

@media (max-width: 375px) {
  .pricing-cta-container h2 {
    font-size: 1.65rem;
  }
}


/* ================================================================
   §7  TOUCH DEVICE OPTIMIZATIONS
================================================================ */

@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .why-card:hover,
  .ai-pillar-card:hover {
    transform: none;
  }

  .btn-pricing-cta,
  .btn-ai-contact,
  .card-contact-btn {
    min-height: 48px;
  }
}