{% require_css %}
<style>
  {% scope_css %}
  /* ==================== BASE STYLES ==================== */
  .investment-guide {
    background-color: ;
    font-family: 'Butler', 'Georgia', serif;
    color: #192031;
  }
  
  /* ==================== ARTICLE LAYOUT ==================== */
  .investment-article {
    position: relative;
    background-color: #FDFBF9;
    padding: 4rem 3rem;
  }
  
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-family: "Libre Franklin", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #192031;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .eye-icon img {
    width: 18px;
    height: 18px;
  }
  
  .article-title {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #192031;
    padding-right: 120px;
  }
  
  .article-intro {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 1.375rem;
    line-height: 1.6;
    color: #284b66;
    margin-bottom: 3rem;
    font-weight: 400;
  }
  
  .article-image {
    margin-bottom: 3rem;
  }
  
  .article-image img {
    width: 100%;
    height: auto;
  }
  
  .article-content {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #192031;
  }
  
  .article-content p {
    margin-bottom: 1.5rem;
  }
  
  .article-content h2,
  .article-content h3,
  .article-content h4 {
    font-family: 'Butler', 'Georgia', serif;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #192031;
    font-weight: 700;
  }
  
  .article-content h2 {
    font-size: 2.25rem;
  }
  
  .article-content h3 {
    font-size: 1.75rem;
  }
  
  .article-content ul,
  .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .article-content li {
    margin-bottom: 0.5rem;
  }
  
  .article-calculator {
    margin-top: 3rem;
  }
  
  .article-cta {
    margin-top: 3rem;
    text-align: center;
  }
  
  /* ==================== LIKE BUTTON (rechts bovenaan) ==================== */
  .article-like-btn {
    position: absolute;
    top: 4rem;
    right: 3rem;
    z-index: 10;
  }
  
  .article-like-btn .button-like {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #E8E1DC;
    border: 1px solid #cdb9a3;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Libre Franklin", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #192031;
  }
  
  .article-like-btn .button-like:hover {
    background-color: #cdb9a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .article-like-btn .button-like svg {
    width: 20px;
    height: 20px;
    stroke: #192031;
    fill: none;
    transition: all 0.3s ease;
  }
  
  /* Liked state */
  .article-like-btn[data-is-active="true"] .button-like {
    background-color: #192031;
    border-color: #192031;
    color: #FDFBF9;
  }
  
  .article-like-btn[data-is-active="true"] .button-like svg {
    fill: #FDFBF9;
    stroke: #FDFBF9;
  }
  
  /* ==================== INLINE PAYWALL (met session unlock support) ==================== */
  
  /* Standaard locked state - alleen actief wanneer NIET session-unlocked */
  .article-content-locked:not(.session-unlocked) {
    position: relative;
    max-height: 550px;
    overflow: hidden;
  }
  
  /* Session-unlocked state: verwijder alle beperkingen */
  .article-content-locked.session-unlocked {
    max-height: none !important;
    overflow: visible !important;
    position: relative;
  }
  
  /* Verberg paywall overlay wanneer session-unlocked */
  .article-content-locked.session-unlocked .paywall-overlay {
    display: none !important;
  }
  
  /* Zorg dat content volledig zichtbaar is wanneer session-unlocked */
  .article-content-locked.session-unlocked .article-content {
    max-height: none !important;
    overflow: visible !important;
  }
  
  .paywall-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4rem;
  }
  
  .paywall-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 450px;
    background: linear-gradient(to top, 
      #FDFBF9 0%,
      rgba(253, 251, 249, 0.98) 30%,
      rgba(253, 251, 249, 0.85) 60%,
      rgba(253, 251, 249, 0) 100%
    );
    pointer-events: none;
  }
  
  .paywall-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 2px solid #cdb9a3;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(25, 32, 49, 0.15);
  }
  
  .paywall-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #192031;
    border-radius: 50%;
    margin-bottom: 1.5rem;
  }
  
  .paywall-icon svg {
    color: #FDFBF9;
  }
  
  .paywall-title {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #192031;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .paywall-description {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #284b66;
    margin-bottom: 2rem;
  }
  
  .paywall-unlock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: #192031;
    color: #FDFBF9;
    border: none;
    border-radius: 6px;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(25, 32, 49, 0.2);
  }
  
  .paywall-unlock-btn:hover {
    background: #284b66;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 32, 49, 0.3);
  }
  
  .paywall-note {
    margin-top: 1.25rem;
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.875rem;
    color: #cdb9a3;
    font-weight: 500;
  }
  
  /* ==================== EXIT INTENT POPUP (LIKE) ==================== */
  .exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
  }
  
  .exit-intent-popup-hidden {
    display: none !important;
  }
  
  .exit-intent-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 32, 49, 0.95);
    backdrop-filter: blur(6px);
  }
  
  .exit-intent-popup-content {
    position: relative;
    background: #FDFBF9;
    border-radius: 8px;
    border: 2px solid #cdb9a3;
    max-width: 580px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    z-index: 1;
    animation: slideUp 0.4s ease;
  }
  
  .exit-intent-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E8E1DC;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    color: #192031;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .exit-intent-popup-close:hover {
    background-color: #cdb9a3;
    transform: rotate(90deg);
  }
  
  .exit-intent-popup-body {
    padding: 3.5rem 3rem;
    text-align: center;
  }
  
  .exit-intent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background: #192031;
    border-radius: 50%;
    margin-bottom: 2rem;
  }
  
  .exit-intent-icon svg {
    color: #FDFBF9;
  }
  
  .exit-intent-title {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #192031;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .exit-intent-subtitle {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #284b66;
    margin-bottom: 2.5rem;
  }
  
  .exit-intent-benefits {
    text-align: left;
    margin-bottom: 2.5rem;
    background: #ffffff;
    border: 1px solid #E8E1DC;
    border-radius: 6px;
    padding: 1.75rem;
  }
  
  .exit-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
  }
  
  .exit-benefit-item:last-child {
    margin-bottom: 0;
  }
  
  .exit-benefit-item svg {
    color: #192031;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .exit-benefit-item span {
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #192031;
    font-weight: 500;
  }
  
  .exit-intent-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: #192031;
    color: #FDFBF9;
    border: none;
    border-radius: 6px;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(25, 32, 49, 0.25);
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .exit-intent-cta:hover {
    background: #284b66;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(25, 32, 49, 0.35);
  }
  
  .exit-intent-dismiss {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #284b66;
    border: none;
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .exit-intent-dismiss:hover {
    color: #192031;
    text-decoration: underline;
  }
  
  /* ==================== 30-SECOND POPUP ==================== */
  .paywall-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
  }
  
  .paywall-popup-hidden {
    display: none !important;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .paywall-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 32, 49, 0.92);
    backdrop-filter: blur(4px);
  }
  
  .paywall-popup-content {
    position: relative;
    background: #FDFBF9;
    border-radius: 8px;
    border: 2px solid #cdb9a3;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: slideUp 0.4s ease;
  }
  
  .paywall-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E8E1DC;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    color: #192031;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .paywall-popup-close:hover {
    background-color: #cdb9a3;
    transform: rotate(90deg);
  }
  
  .paywall-popup-body {
    padding: 3.5rem 3rem;
    text-align: center;
  }
  
  .paywall-popup-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #192031;
    border-radius: 50%;
    margin-bottom: 2rem;
  }
  
  .paywall-popup-logo img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
  }
  
  .paywall-popup-title {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 2.125rem;
    font-weight: 700;
    color: #192031;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .paywall-popup-subtitle {
    font-family: 'Butler', 'Georgia', serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #284b66;
    margin-bottom: 2.5rem;
  }
  
  .paywall-popup-benefits {
    text-align: left;
    margin-bottom: 2.5rem;
    background: #ffffff;
    border: 1px solid #E8E1DC;
    border-radius: 6px;
    padding: 2rem;
  }
  
  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
  }
  
  .benefit-item:last-child {
    margin-bottom: 0;
  }
  
  .benefit-item svg {
    color: #192031;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .benefit-item span {
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #192031;
    font-weight: 500;
  }
  
  .paywall-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: #192031;
    color: #FDFBF9;
    border: none;
    border-radius: 6px;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(25, 32, 49, 0.25);
    width: 100%;
  }
  
  .paywall-popup-cta:hover {
    background: #284b66;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(25, 32, 49, 0.35);
  }
  
  .paywall-popup-login {
    margin-top: 1.5rem;
    font-family: "Libre Franklin", sans-serif;
    font-size: 0.9375rem;
    color: #284b66;
  }
  
  .login-link {
    color: #192031;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  
  .login-link:hover {
    color: #284b66;
    text-decoration: underline;
  }
  
  /* ==================== CHOICE MODAL ==================== */
  .content-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .content-modal-hidden {
    display: none !important;
  }
  
  .content-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 32, 49, 0.85);
  }
  
  .content-modal-content {
    position: relative;
    background-color: #FDFBF9;
    border-radius: 8px;
    border: 2px solid #cdb9a3;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  .content-choice-modal-content {
    max-width: 500px;
  }
  
  .content-email-modal-content {
    max-width: 550px;
  }
  
  .content-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #E8E1DC;
    border: none;
    font-size: 32px;
    line-height: 1;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2;
    color: #192031;
    transition: background-color 0.2s;
  }
  
  .content-modal-close:hover {
    background-color: #cdb9a3;
  }
  
  .content-modal-body {
    padding: 2.5rem 2rem;
  }
  
  .modal-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #192031;
    border-radius: 50%;
    margin-bottom: 1.5rem;
  }
  
  .modal-logo img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
  }
  
  .content-modal-body h3 {
    font-family: 'Butler', 'Georgia', serif;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: #192031;
  }
  
  .content-modal-body p {
    font-family: 'Butler', 'Georgia', serif;
    margin-bottom: 2rem;
    color: #284b66;
    font-size: 1rem;
  }
  
  .content-modal-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 6px;
  }
  
  /* ==================== CHOICE BUTTONS ==================== */
  .content-choice-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .content-choice-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background-color: #ffffff;
    border: 2px solid #E8E1DC;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #192031;
    width: 100%;
    text-align: left;
  }
  
  .content-choice-btn:hover {
    background-color: #E8E1DC;
    border-color: #cdb9a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 32, 49, 0.1);
  }
  
  .content-choice-btn svg {
    flex-shrink: 0;
    color: #192031;
  }
  
  /* ==================== EMAIL FORM ==================== */
  .content-email-form {
    width: 100%;
  }
  
  .content-form-group {
    margin-bottom: 1.5rem;
  }
  
  .content-form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: "Libre Franklin", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #192031;
  }
  
  .content-email-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E1DC;
    border-radius: 6px;
    font-family: 'Butler', 'Georgia', serif;
    font-size: 1rem;
    color: #192031;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
  }
  
  .content-email-input:focus {
    outline: none;
    border-color: #192031;
  }
  
  .content-error-message {
    margin-top: 8px;
    color: #d32f2f;
    font-family: "Libre Franklin", sans-serif;
    font-size: 14px;
  }
  
  /* ==================== CHECKBOXES ==================== */
  .content-checkboxes {
    margin-bottom: 2rem;
  }
  
  .content-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: "Libre Franklin", sans-serif;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .content-checkbox-label.content-required .content-checkbox-text {
    font-weight: 500;
  }
  
  .content-checkbox-input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .content-checkbox-text {
    color: #192031;
  }
  
  .content-checkbox-text a {
    color: #192031;
    text-decoration: underline;
  }
  
  .content-checkbox-text a:hover {
    color: #284b66;
  }
  
  /* ==================== SUBMIT BUTTON ==================== */
  .content-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: #192031;
    color: #FDFBF9;
    border: none;
    border-radius: 6px;
    font-family: "Libre Franklin", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .content-submit-btn:hover:not(:disabled) {
    background-color: #284b66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 32, 49, 0.2);
  }
  
  .content-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  .content-submit-loader {
    display: inline-block;
  }
  
  /* ==================== RESPONSIVE ==================== */
  @media (max-width: 768px) {
    .investment-article {
      padding: 2.5rem 1.5rem;
    }
    
    .article-title {
      font-size: 2rem;
      padding-right: 0;
      margin-bottom: 1rem;
    }
    
    .article-like-btn {
      position: static;
      margin-bottom: 1.5rem;
      display: inline-block;
    }
    
    .article-intro {
      font-size: 1.125rem;
    }
    
    .article-content {
      font-size: 1rem;
    }
    
    .paywall-card {
      padding: 2rem 1.5rem;
    }
    
    .paywall-title {
      font-size: 1.5rem;
    }
    
    .exit-intent-popup-body {
      padding: 2.5rem 1.5rem;
    }
    
    .exit-intent-title {
      font-size: 1.625rem;
    }
    
    .exit-intent-subtitle {
      font-size: 1rem;
    }
    
    .paywall-popup-body {
      padding: 2.5rem 1.5rem;
    }
    
    .paywall-popup-title {
      font-size: 1.625rem;
    }
    
    .paywall-popup-subtitle {
      font-size: 1rem;
    }
    
    .content-modal-content {
      max-width: 95%;
    }
    
    .content-choice-modal-content {
      max-width: 90%;
    }
    
    .content-email-modal-content {
      max-width: 90%;
    }
    
    .content-modal-iframe {
      height: 400px;
    }
    
    .content-modal-body {
      padding: 2rem 1.5rem;
    }
    
    .content-modal-body h3 {
      font-size: 1.5rem;
    }
    
    .content-modal-body p {
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
    }
    
    .content-choice-btn {
      padding: 16px 20px;
      font-size: 0.9375rem;
    }
    
    .content-checkbox-label {
      font-size: 13px;
    }
  }
  
  @media (min-width: 1200px) {
    .article-title {
      font-size: 3.5rem;
    }
  }
  
  {% end_scope_css %}
</style>
{% end_require_css %}