/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #1D1D1D;
    font-family: Helvetica, sans-serif;
    color: #EBEBEB;
  }

  .container {

    max-width: 1400px; /* optional max width so it doesn't become too wide on huge screens */
    margin: 0 auto; /* <- center horizontally */
  }
  
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    padding-bottom: 0%;
  }

  p {

    font-weight:300;
  }
  
  .logo {
    display: flex;
    flex-direction: column;
  }

  .logo-image img {
    width: 60%; /* Adjust this value as needed */
    height: auto; /* Maintains aspect ratio */
    display: block;
  }
  
  .logo-image {
    margin-left: 0;
    padding-left: 0;
    display: flex;
    align-items: left;
  }
  
  .nav a {
    margin-left: 2rem;
    font-size: 16px;
    text-transform: uppercase;
    color: #EBEBEB;
    text-decoration: none;
  }
  
  /* Layout */
  .grid-layout {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 5%;
    gap: 2rem;
    align-items: stretch;
  }
  
  /* Left and Right Columns */
  .left-side, .right-side {

    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .left-side {
    flex: 6;

  }
  
  .right-side {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;; /* 👈 magic */
    gap: 2rem;
  }

  
  
  /* Image */
  .image-box img {
    width: 100%;
    border: 1.5px solid #EBEBEB;
    border-radius: 5px;
  }
  
  /* LA BEURRE Section */
  .la-beurre-box {
    overflow: hidden;
    border: 1.5px solid #EBEBEB;
    border-radius: 5px;
    padding: 2rem;
    height: 327px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  
  .la-beurre-box h1 {
    font-size: 140px;
    font-weight: 700;
    color: #E6E2E2;
    line-height: 1;
    margin-bottom: -0.4em; /* <-- slight negative margin if needed */
    margin-left: -0.33em;
    text-align: left;
  }
  
  
  
  .compression-text {
    position: absolute;
    top: 2rem;
    right: 2rem;
    max-width: 300px;
    font-size: 20px;
    line-height: 1.6;
    text-align: right;
    font-weight: 300; 
  }
  
  .bold {
    font-weight: 700;
  }
  
  
  /* Surgical Box */
  .surgical-box {
    border: 1.5px solid #EBEBEB;
    border-radius: 5px;
    padding: 2rem;
    text-align: right;
    height: 283px; /* Exact from Figma */
  }
  
  .surgical-box h2 {
    font-size: 45px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 400;
    text-align: right;

  }
  
  .gray {
    color: #A5A5A5;
  }
  
  .blue {
    color: #6186FF;
  }
  
  
  .crafted-text {
    font-size: 20px;
    line-height: 1.6;
    text-align: right;
  }
  
  .uppercase {
    text-transform: uppercase;
  }
  
  .offer-box {
    border: 1.5px solid #EBEBEB;
    border-radius: 5px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* no fixed height */
    margin-top: auto;
    height: 100%;
  }
  
  
  /* Top Text = Right aligned */
  .offer-top {
    text-align: right;
  }
  
  /* Divider = full width, NOT centered */
  .divider {
    width: 100%;
    height: 1px;
    background: #E6E2E2;
    margin: 1rem 0;
  }
  
  /* CTA (button + offer) = Center aligned */
  .cta-center {
    text-align: center;
  }
  
  /* Bottom Text = Left aligned */
  .offer-bottom {
    text-align: left;
  }
  
  .divider.small {
    width: 100%;
  }
  
  .cta-button {
    background: linear-gradient(351deg, #EC5376 58%, #FEB90F 100%);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0;
    display: inline-block;
    transition: all 0.3s ease; /* 👈 important for smooth hover */
    box-shadow: 0 0 0 rgba(0,0,0,0); /* start clean */
    border: none;
  }
  
  /* NEW Hover Effect */
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 104, 3, 0.3); /* soft golden glow */
    filter: brightness(1.3) contrast(1.5);
  }
  
  
  .intro-offer {
    color: #FF4478;
    font-size: 20px;
    margin-top: 1rem;
  }
  
  .terms {
    margin-top: 1rem;
    font-size: 20px;
    line-height: 1.8;
    text-align: left;
  }


    /* Responsive */
    @media (max-width: 1250px) {
      
        .left-side {
            flex: 1;
        
          }
          
          .right-side {
            flex: 1;
        
          }
        .la-beurre-box h1 {
        font-size: 74px;
          margin-bottom: -0.6em; /* <-- slight negative margin if needed */
        margin-left: -0.51em;
        text-align: left;
        }
      
        .surgical-box h2 {
          font-size: 32px;
        }
      }
      
  
    @media (max-width: 768px) {
        .grid-layout {
          flex-direction: column;
          align-items: center;
        }
      
        .left-side, .right-side {
          flex: unset; /* <- no need for flex ratios when stacking vertically */
          width: 100%; /* <- make them 100% width individually */
        }
      
        .la-beurre-box h1 {
          font-size: 64px;
          margin-bottom: -0.4em;
          margin-left: -0.33em;
          text-align: left;
        }
      
        .surgical-box h2 {
          font-size: 32px;
        }

        .surgical-box {
            height: 180px; /* 👈 Adjust this as you want */
          }

          .la-beurre-box {
            height: 200px; /* 👈 Adjust this as you want */
          }
      }
      
  /* Generic box glow effect */
.glow-hover {
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  will-change: transform, box-shadow;
}

.glow-hover:hover {
  box-shadow: 0 0 20px rgba(24, 102, 236, 0.2), 0 0 40px rgba(255, 255, 255, 0.1);
  transform: translate3d(0, -4px, 0);

}




      #background-canvas {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 0; /* stay behind all content */
        width: 100%;
        height: 100%;
        pointer-events: none;
      }
      
      .image-box, .surgical-box, .la-beurre-box, .offer-box {
        background: rgba(255, 255, 255, 0.0); /* <- more transparent, real milky */
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(10px);
 
        transition: all 0.4s ease; /* Add smoothness */
      }
      



      .features-section {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
        padding: 6rem 5%;
        margin-top: 4rem;
      }
      
      .feature {
        background: rgba(255,255,255,0.02);
        border: 1.5px solid #EBEBEB;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 5px;
        font-size: 18px;
        line-height: 1.7;
        transition: all 0.3s ease;
      }
      
      /* Grid positions */
      .feature-title {
        grid-column: 1 / span 12;
        position: relative;
        height: 200px;
        overflow: hidden;
      }
      .feature-title h1 {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        font-size: 140px;
        font-weight: 700;
        color: #E6E2E2;
        line-height: 1;
        margin-left: -3rem;
        margin-bottom: -3.5rem;
        text-align: right;
      }
      

      .feature p strong {
  
        font-weight: 600;
    
      }
      /* 2-wide layout row */
      .feature-a {
        grid-column: 1 / span 6;
      }
      .feature-b {
        grid-column: 7 / span 6;
      }
      
      /* Lower staggered layout */
      .feature-c {
        grid-column: 1 / span 6;
      }
      .feature-d {
        grid-column: 7 / span 3;
      }
      .feature-e {
        grid-column: 10 / span 3;
      }
      
      /* Responsive stacking */
      @media (max-width: 1024px) {
        .features-section {
          grid-template-columns: repeat(6, 1fr);
        }
      
        .feature-title {
          grid-column: 1 / span 6;
          height: 200px;
        }
      
        .feature-title h1 {
          font-size: 72px;
          margin-left: -2.5rem;
          margin-bottom: -2.7rem;
        }
      
        .feature-a,
        .feature-b,
        .feature-c,
        .feature-d,
        .feature-e {
          grid-column: 1 / span 6;
        }
      
        .feature-d,
        .feature-e {
          grid-column: 1 / span 6;
        }
      }
    

      .footer-nav {
        text-align: center;
        margin-top: 4rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        color: white;
      }
      
      .footer-nav a {
        color: white;
        text-decoration: none;
        margin: 0 0.75rem;
      }
      
      .footer-nav a:hover {
        text-decoration: underline;
      }


      .download-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
      }
      
      .download-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        background-color: #333;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        transition: background 0.3s ease;
      }
      
      .download-button:hover {
        background-color: #111;
      }
      


   
      
      .features-texture-section::before {
        content: "";
        
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at center,
          rgba(29, 29, 29, 0) 60%,
          rgba(29, 29, 29, 1) 100%
        );
        pointer-events: none;
        z-index: 1;
      }
      
      
      
      .features-texture-section .layout {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
   
        position: relative;
        z-index: 2;
      }
      
      .features-texture-section .title {
        font-size: 8vw;
        max-font-size: 100px;
        color: #E6E2E2;
        font-family: Helvetica, sans-serif;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
      }

      
      .features-texture-section .plugin-img {
        width: 100%;
        max-width: 700px;
        border-radius: 8px;
        border: 1.5px solid #EBEBEB;
        object-fit: cover;
        box-shadow:
          0 0 2vw #56526F,
          0 0 4vw rgba(86, 82, 111, 0.4),
          0 0 6vw rgba(86, 82, 111, 0.2);
        margin-bottom: 3rem;
        transition: box-shadow 0.3s ease;
      }
      .features-top-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
   
        margin-top: 6rem;
        padding: 0 2rem;
        gap: 3rem;
      }
      
      .plugin-image-box {
        flex: 1;
        display: flex;
        justify-content: center;
      }
      
      .plugin-img {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 8px;
        border: 1.5px solid #EBEBEB;
        box-shadow: 0 0 2vw #56526F, 0 0 4vw rgba(86, 82, 111, 0.4), 0 0 6vw rgba(86, 82, 111, 0.2);
      }
      
      .title-text {
        flex: 1;
      }
      
      .title-text .title {
        font-size: clamp(40px, 6vw, 100px);
        font-weight: 700;
        color: #E6E2E2;
        text-align: left;
        margin: 0;
        line-height: 1;
      }
      
      
      
      #cta-button-feature.big-gradient-button {
        max-width: 350px;
        margin: 0 auto;
      }
      
      
      .features-texture-section .plugin-img:hover {
        box-shadow:
          0 0 3vw #56526F,
          0 0 5vw rgba(86, 82, 111, 0.6),
          0 0 8vw rgba(86, 82, 111, 0.3);
      }
      
      .features-texture-section .cards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        width: 100%;
        margin-top: 4rem;
      }
      
      .features-texture-section .feature-card {
        flex: 1 1 300px;
        max-width: 500px;
        background: rgba(59, 59, 59, 0);
        border-radius: 8px;
        padding: 1.5rem;
        outline: 1.5px solid #EBEBEB;
        backdrop-filter: blur(4px);
        color: #EBEBEB;
        box-sizing: border-box;
      }
      
      .features-texture-section .feature-card strong {
        font-weight: 700;
        display: block;
        margin-bottom: 0.5rem;
      }
      
      .features-texture-section .feature-card p {
        font-weight: 300;
        color: white;
        line-height: 1.8;
        letter-spacing: 0.5px;
        margin: 0;
      }
      
      .features-texture-section .promo {
        background: linear-gradient(351deg, #EC5376 58%, #FEB90F 100%);
        color: #1D1D1D;
        font-family: Helvetica, sans-serif;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      
      .features-texture-section .promo del {
        text-decoration: line-through;
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }
      
      .features-texture-section .promo .price {
        font-weight: 700;
        font-size: 1.2rem;
        letter-spacing: 1px;
      }
      
      .promo-button-card {
        background: none;
        padding: 0;
        border: none;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1 1 100%;
        max-width: 100%;
      }
      
      .big-gradient-button {
        background: url('assets/Gradient.png') center center / cover no-repeat;
        color: white;
        padding: 2rem 3rem;
        border-radius: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        font-size: 1.25rem;
        width: 100%;
        border: none;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: none;
      }
      
      .big-gradient-button:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 104, 3, 0.3); /* soft golden glow */
        filter: brightness(1.3) contrast(1.5);
        outline: none;
      }
      
      
      .big-gradient-button .line-top {
        font-size: 1.2rem;
        font-weight: 400;
      }
      
      .big-gradient-button .line-mid {
        font-size: 1.5rem;
        font-weight: 300;
      }
      
      .big-gradient-button .line-bottom {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
      }
      
      .promo-button-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        background: none;
        border: none;
      }
      
      .features-texture-section .promo-button-card {
        background: none !important;
        border: none !important;
        outline: none !important;
        padding: 0 !important;
        box-shadow: none !important;
      }
      

      @media (max-width: 900px) {
        .features-top-row {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
      
        .title-text .title {
          text-align: center;
        }
      }
      