/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 197:0 Unexpected "<"

**/
<style>
  .seo-features-wrapper {
    /* Padding vertical, fara padding lateral fix pentru a lasa marginile temei sa lucreze */
    padding: clamp(40px, 5vw, 60px) 0; 
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    contain: content;
  }

  .seo-features-header {
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 50px);
  }

  .seo-features-header h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }

  .seo-features-header .accent-line {
    width: 50px;
    height: 3px;
    background-color: #8B0000;
    margin: 0 auto;
    border-radius: 2px;
  }

  .features-auto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
    /* Am eliminat max-width: 1300px */
    margin: 0 auto;
  }

  .feature-card {
    background: #fcfcfc;
    padding: 30px; 
    border-radius: 16px;
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, box-shadow;
  }

  .feature-card:hover {
    background: #ffffff;
    border-color: #8B0000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-5px);
  }

  .feature-icon {
    color: #8B0000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .feature-card h3 {
    font-size: 18px !important; 
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    line-height: 1.3;
    text-transform: none;
  }

  .feature-content {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
  }

  .feature-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .feature-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
  }

  .feature-content li::before {
    content: "→";
    color: #8B0000;
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  /* --- Technology CTA --- */
  .features-tech-cta {
    margin: 60px auto 0;
    padding: 35px;
    background-color: #fcfcfc;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
  }

  .features-tech-cta::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #8B0000;
  }

  .tech-cta-text {
    flex: 1;
  }

  .tech-cta-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
  }

  .tech-cta-text p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
  }

  .tech-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .tech-cta-button:hover {
    background-color: #8B0000;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.2);
    transform: translateX(5px);
  }

  @media (max-width: 1024px) {
    .features-auto-grid { 
      grid-template-columns: repeat(2, 1fr); 
      gap: 25px;
    }
  }

  @media (max-width: 768px) {
    .features-auto-grid { 
      grid-template-columns: 1fr; 
      gap: 15px;
    }
    
    .features-tech-cta {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
      margin-top: 40px;
    }
    
    .tech-cta-button {
      width: 100%;
      justify-content: center;
    }
  }
</style>
