 /* ==========================================================================
     Strategy Hero                                                                                           
     ========================================================================== */
                                                                                                             
  .strategy-hero {                                          
    background: #f3eeff;
    border-top: 1px solid #f1eaf8;
    padding: 60px 0 80px;                                                                                    
    overflow: hidden;                                                                                        
  }                                                                                                          
                                                                                                             
  .strategy-hero__inner {                                   
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;                                                                                           
    grid-template-columns: 1fr 1fr;
    gap: 48px;                                                                                               
    align-items: start;                                     
  }                                                                                                          
  
  /* ---------- Label ---------- */                                                                          
                                                            
  .strategy-hero__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;                                                                                     
  }
                                                                                                             
  .strategy-hero__label-line {                              
    display: block;
    width: 32px;
    height: 1px;
    background: #6c2dc9;
  }                                                                                                          
  
  .strategy-hero__label-text {                                                                               
    font-family: 'DM Sans', sans-serif;                     
    font-weight: 700;
    font-size: 11.2px;                                                                                       
    letter-spacing: 1.344px;
    text-transform: uppercase;                                                                               
    color: #6c2dc9;                                         
  }                                                                                                          
                                                            
  /* ---------- Title ---------- */

  .strategy-hero__title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 60px;                                                                                         
    line-height: 1;
    letter-spacing: -1.8px;                                                                                  
    color: #000;                                                                                             
    margin: 0 0 24px;
  }                                                                                                          
                                                            
  .strategy-hero__title-accent {
    color: #6c2dc9;
  }                                                                                                          
  
  /* ---------- Description ---------- */                                                                    
                                                            
  .strategy-hero__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: #000;                                                                                             
    margin: 0 0 32px;
    max-width: 517px;                                                                                        
  }                                                         

  /* ---------- Info cards grid ---------- */                                                                
  
  .strategy-hero__cards {                                                                                    
    display: grid;                                          
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }                                                                                                          
  
  .strategy-hero__card {                                                                                     
    background: rgba(255, 255, 255, 0.78);                  
    border: 1px solid #e9e0f3;
    border-radius: 16px;                                                                                     
    padding: 18px 20px;
    box-shadow: 0px 10px 30px 0px rgba(29, 6, 60, 0.04);                                                     
  }                                                                                                          
                                                                                                             
  .strategy-hero__card-icon {                                                                                
    width: 36px;                                                                                             
    height: 34px;                                           
    background: #f3eeff;
    border-radius: 7px;
    display: flex;
    align-items: center;                                                                                     
    justify-content: center;
    margin-bottom: 14px;                                                                                     
  }                                                         

  .strategy-hero__card-icon svg {
    display: block;
  }
                                                                                                             
  .strategy-hero__card-title {
    font-family: 'Inter', sans-serif;                                                                        
    font-weight: 700;                                       
    font-size: 14px;
    line-height: 21px;
    color: #171022;                                                                                          
    margin: 0 0 8px;
  }                                                                                                          
                                                            
  .strategy-hero__card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;                                                                                         
    line-height: 21px;
    color: #4b5563;                                                                                          
    margin: 0;                                              
  }

  /* ---------- Form card ---------- */                                                                      
  
  .strategy-hero__form-card {                                                                                
    background: #fff;                                       
    border-radius: 16px;
    padding: 34px;
    filter: drop-shadow(0px 16px 24px rgba(29, 6, 60, 0.09));                                                
  }                                                                                                          
                                                                                                             
  .strategy-hero__form-title {                                                                               
    font-family: 'Sora', sans-serif;                        
    font-weight: 700;
    font-size: 28px;
    line-height: 1.05;
    color: #171022;                                                                                          
    margin: 0 0 28px;
  }                                                                                                          
                                                            
  /* ---------- Gravity Forms overrides inside hero ---------- */                                            
  
  .strategy-hero__form-card .gform_wrapper {                                                                 
    margin: 0;                                              
    padding: 0;
  }
                                                                                                             
  .strategy-hero__form-card .gform_wrapper .gform_body {
    padding: 0;                                                                                              
  }                                                         

  .strategy-hero__form-card .gform_wrapper label.gfield_label,                                               
  .strategy-hero__form-card .gform_wrapper .gfield .gfield_label {
    font-family: 'Inter', sans-serif;                                                                        
    font-weight: 700;
    font-size: 0.9em;
    line-height: 18px;                                                                                       
    color: #3d304c;                                         
    margin-bottom: 8px;                                                                                      
  }
                                                                                                             
  .strategy-hero__form-card .gform_wrapper input[type="text"],
  .strategy-hero__form-card .gform_wrapper input[type="email"],
  .strategy-hero__form-card .gform_wrapper input[type="tel"],                                                
  .strategy-hero__form-card .gform_wrapper select,
  .strategy-hero__form-card .gform_wrapper textarea {                                                        
    background: #fbf8ff;                                                                                     
    border: 1px solid #eee6f7;
    border-radius: 24px!important;                                                                                     
    padding: 12px 14px!important;                                     
    font-family: 'Inter', sans-serif;
    font-size: 14px;                                                                                         
    color: #171022;                                        
    transition: border-color 0.2s;                                                                           
    width: 100%;                                                                                             
    box-sizing: border-box;                                                                                  
  }                                                                                                          
                                                            
  .strategy-hero__form-card .gform_wrapper input[type="text"]:focus,
  .strategy-hero__form-card .gform_wrapper input[type="email"]:focus,
  .strategy-hero__form-card .gform_wrapper input[type="tel"]:focus,                                          
  .strategy-hero__form-card .gform_wrapper select:focus,
  .strategy-hero__form-card .gform_wrapper textarea:focus {                                                  
    border-color: #6c2dc9;                                                                                   
    outline: none;
  }                                                                                                          
                                                            
  .strategy-hero__form-card .gform_wrapper textarea {
    min-height: 152px;
    resize: vertical;                                                                                        
  }
                                                                                                             
  .strategy-hero__form-card .gform_wrapper select {         
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23171022' stroke-width='2' stroke-linecap='round'     stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;                                                                            
    background-position: right 16px center;                 
    background-size: 12px;
    padding-right: 40px;                                                                                     
  }
                                                                                                             
  .strategy-hero__form-card .gform_wrapper .gfield {        
    margin-bottom: 16px;
  }

  .strategy-hero__form-card .gform_wrapper .gform_fields {                                                   
    display: grid;
    grid-template-columns: 1fr 1fr;                                                                          
    gap: 0 16px;                                            
  }                                                                                                          
  
  .strategy-hero__form-card .gform_wrapper .gfield--width-full,                                              
  .strategy-hero__form-card .gform_wrapper .gfield.gfield--width-full {
    grid-column: 1 / -1;                                                                                     
  }
                                                                                                             
  .strategy-hero__form-card .gform_wrapper .gfield_consent_description {                                     
    display: none;
  }                                                                                                          
                                                            
  .strategy-hero__form-card .gform_wrapper .gfield_consent_label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;                                                                                        
    font-size: 14px;
    line-height: 18px;                                                                                       
    color: #6f687b;                                         
  }                                                                                                          
  
  .strategy-hero__form-card .gform_wrapper .gform_footer,                                                    
  .strategy-hero__form-card .gform_wrapper .gform_page_footer {
    display: flex;                                                                                           
    align-items: center;
    justify-content: flex-end;                                                                               
    gap: 16px;                                              
    margin-top: 8px;
  }                                                                                                          
  
  .strategy-hero__form-card .gform_wrapper input[type="submit"],                                             
  .strategy-hero__form-card .gform_wrapper .gform_button {  
    background: #3f0082;                                                                                     
    color: #fff;
    font-family: 'DM Sans', sans-serif;                                                                      
    font-weight: 700;                                                                                        
    font-size: 14px;
    line-height: 21px;                                                                                       
    border: none;                                           
    border-radius: 9999px;
    padding: 12px 28px;
    cursor: pointer;                                                                                         
    transition: background 0.2s;
  }                                                                                                          
                                                            
  .strategy-hero__form-card .gform_wrapper input[type="submit"]:hover,
  .strategy-hero__form-card .gform_wrapper .gform_button:hover {
    background: #2d005e;                                                                                     
  }
                                                                                                             
  /* ---------- Responsive ---------- */                    

  @media (max-width: 1200px) {    
	  .strategy-hero__inner {
    grid-template-columns: 1fr;
	  }
}
  @media (max-width: 960px) {                                                                                

    .strategy-hero__title {
      font-size: 42px;
    }                                                                                                        
  }
                                                                                                             
  @media (max-width: 600px) {                               
    .strategy-hero {
      padding: 40px 0 48px;
    }                                                                                                        
  
    .strategy-hero__title {                                                                                  
      font-size: 34px;                                      
      letter-spacing: -1px;
    }                                                                                                        
  
    .strategy-hero__description {                                                                            
      font-size: 15px;                                      
    }

    .strategy-hero__cards {
      grid-template-columns: 1fr;
    }

    .strategy-hero__form-card {                                                                              
      padding: 24px;
    }                                                                                                        
                                                            
    .strategy-hero__form-card .gform_wrapper .gform_fields {
      grid-template-columns: 1fr;
    }                                                                                                        
  }
                      