   /* ===== GLOBAL ===== */
   body {
       font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
       background-color: #f8fafc;
       color: #1e293b;
   }

   /* ===== GFX PREFIX ===== */
   .gfx-page {
       --gfx-primary: #0b5e3c;
       --gfx-primary-dark: #094a2f;
       --gfx-light-bg: #f1f5f9;
       --gfx-card-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
   }

   /* ===== BUTTONS ===== */
   .gfx-btn-primary {
       background-color: var(--gfx-primary);
       border: none;
       color: #fff;
       font-weight: 600;
       padding: 0.75rem 1.75rem;
       border-radius: 0.5rem;
       transition: all 0.2s ease;
   }

   .gfx-btn-primary:hover {
       background-color: var(--gfx-primary-dark);
       transform: translateY(-2px);
       box-shadow: 0 8px 20px rgba(11, 94, 60, 0.2);
       color: #fff;
   }

   .gfx-btn-outline {
       background: transparent;
       border: 2px solid var(--gfx-primary);
       color: var(--gfx-primary);
       font-weight: 600;
       padding: 0.75rem 1.75rem;
       border-radius: 0.5rem;
       transition: all 0.2s ease;
   }

   .gfx-btn-outline:hover {
       background: var(--gfx-primary);
       color: #fff;
       transform: translateY(-2px);
       box-shadow: 0 8px 20px rgba(11, 94, 60, 0.15);
   }

   /* ===== CARDS ===== */
   .gfx-card {
       background: #ffffff;
       border: 1px solid #e9edf2;
       border-radius: 1rem;
       padding: 1.5rem;
       transition: all 0.2s ease;
       height: 100%;
       box-shadow: var(--gfx-card-shadow);
   }

   .gfx-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
       border-color: #cbd5e1;
   }

   /* ===== PRICING ===== */
   .gfx-pricing-card {
       background: #ffffff;
       border: 1px solid #e9edf2;
       border-radius: 1.25rem;
       padding: 1.75rem 1.5rem;
       text-align: center;
       transition: all 0.2s ease;
       height: 100%;
       position: relative;
       box-shadow: var(--gfx-card-shadow);
   }

   .gfx-pricing-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
   }

   .gfx-pricing-card.popular {
       border: 2px solid var(--gfx-primary);
       background: #fafffe;
   }

   .gfx-pricing-card .gfx-badge {
       background: var(--gfx-primary);
       color: #fff;
       font-size: 0.75rem;
       font-weight: 600;
       padding: 0.25rem 1rem;
       border-radius: 40px;
       display: inline-block;
       margin-bottom: 0.75rem;
       letter-spacing: 0.3px;
   }

   .gfx-pricing-card .gfx-price {
       font-size: 2.25rem;
       font-weight: 700;
       color: var(--gfx-primary);
   }

   .gfx-pricing-card .gfx-duration {
       font-weight: 600;
       font-size: 1.25rem;
   }

   .gfx-pricing-card .gfx-feature-list {
       list-style: none;
       padding: 0;
       font-size: 0.95rem;
   }

   .gfx-pricing-card .gfx-feature-list li {
       padding: 0.35rem 0;
       border-bottom: 1px solid #f1f5f9;
   }

   .gfx-pricing-card .gfx-feature-list li:last-child {
       border: none;
   }

   /* ===== STEPS ===== */
   .gfx-step {
       background: #ffffff;
       border-radius: 1.25rem;
       padding: 1.75rem 1.5rem;
       border: 1px solid #e9edf2;
       transition: all 0.2s ease;
       text-align: center;
   }

   .gfx-step .gfx-step-number {
       width: 48px;
       height: 48px;
       background: var(--gfx-primary);
       color: #fff;
       border-radius: 60px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 700;
       font-size: 1.25rem;
       margin: 0 auto 1rem auto;
   }

   /* ===== CERTIFICATE PREVIEW ===== */
   .gfx-certificate-preview {
       background: #ffffff;
       border: 1px solid #dce2eb;
       border-radius: 1.25rem;
       padding: 2rem 1.5rem;
       box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
       transition: all 0.3s ease;
       max-width: 550px;
       margin: 0 auto;
   }

   .gfx-certificate-preview:hover {
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
       transform: scale(1.01);
   }

   .gfx-certificate-preview .gfx-cert-placeholder {
       border: 2px dashed #cbd5e1;
       border-radius: 0.75rem;
       padding: 1.5rem 1rem;
       background: #fafcfd;
   }

   /* ===== FAQ ===== */
   .gfx-faq-accordion .accordion-item {
       border: 1px solid #e9edf2;
       border-radius: 0.75rem !important;
       margin-bottom: 0.75rem;
       background: #ffffff;
   }

   .gfx-faq-accordion .accordion-button {
       background: #ffffff;
       font-weight: 600;
       color: #1e293b;
       border-radius: 0.75rem !important;
       padding: 1rem 1.25rem;
   }

   .gfx-faq-accordion .accordion-button:not(.collapsed) {
       background: #f7faf9;
       color: var(--gfx-primary);
       box-shadow: none;
   }

   .gfx-faq-accordion .accordion-button:focus {
       box-shadow: none;
       border-color: #b3cdc0;
   }

   /* ===== TRUST BAR ===== */
   .gfx-trust-icon {
       font-size: 1.75rem;
       color: var(--gfx-primary);
   }

   /* ===== STICKY CTA ===== */
   .gfx-sticky-cta {
       background: #ffffff;
       border-top: 1px solid #e2e8f0;
       padding: 0.75rem 1rem;
       box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
   }

   /* ===== ANIMATIONS ===== */
   .gfx-fade-up {
       opacity: 0;
       transform: translateY(20px);
       transition: opacity 0.6s ease, transform 0.6s ease;
   }

   .gfx-fade-up.visible {
       opacity: 1;
       transform: translateY(0);
   }

   @media (prefers-reduced-motion: reduce) {
       .gfx-fade-up {
           opacity: 1;
           transform: none;
       }

       .gfx-pricing-card:hover,
       .gfx-card:hover,
       .gfx-certificate-preview:hover {
           transform: none;
       }
   }

   /* ===== RESPONSIVE ===== */
   @media (max-width: 576px) {
       .gfx-section {
           padding: 2.5rem 0;
       }

       .gfx-pricing-card {
           padding: 1.25rem;
       }

       .gfx-certificate-preview {
           padding: 1.25rem;
       }
   }

   /* ===== UTILITY ===== */
   .gfx-section {
       padding: 4rem 0;
   }

   .gfx-section-sm {
       padding: 2.5rem 0;
   }

   .gfx-bg-light {
       background-color: #f8fafc;
   }

   .gfx-bg-white {
       background-color: #ffffff;
   }

   .gfx-text-muted {
       color: #475569;
   }

   .gfx-text-accent {
       color: var(--gfx-primary);
   }

   .gfx-border-light {
       border-color: #e9edf2;
   }

   .gfx-rounded-xl {
       border-radius: 1.25rem;
   }

   .gfx-shadow-soft {
       box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
   }

   .gfx-verify-badge {
       background: #eef7f2;
       border-radius: 60px;
       padding: 0.4rem 1.2rem;
       display: inline-block;
       font-weight: 500;
       color: var(--gfx-primary);
   }