 /* Main Variables - Polished White Theme */
 :root {
     --primary-color: #28a745;
     /* Success Green */
     --primary-hover: #218838;
     /* Gradients */
     --primary-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
     --text-gradient-green: linear-gradient(90deg, #1e7e34, #28a745, #155724, #28a745);

     --secondary-color: #007bff;
     /* Trust Blue */
     --accent-color: #ffc107;
     /* Warning/Highlight Yellow */
     --accent-gradient: linear-gradient(135deg, #ffc107 0%, #ffdb4d 100%);

     --danger-color: #dc3545;

     /* Backgrounds */
     --bg-white: #ffffff;
     --bg-off-white: #f8f9fa;
     /* Very light gray for alternate sections */
     --bg-active-green: #d4edda;
     /* Light Green for FAQ */

     /* Text */
     --text-dark: #1a1a1a;
     --text-muted: #6c757d;
     --text-white: #ffffff;

     --font-main: 'Inter', sans-serif;
     --font-heading: 'Outfit', sans-serif;

     /* Shadows & Effects */
     --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
     --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1);
     --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.08);

     --border-radius: 12px;
     --container-width: 1140px;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: var(--font-main);
 }

 html,
 body {
     overflow-x: hidden;
     background-color: var(--bg-white);
     color: var(--text-dark);
     line-height: 1.6;
     -webkit-font-smoothing: antialiased;
 }

 .container {
     max-width: var(--container-width);
     margin: 0 auto;
     padding: 0 20px;
 }

 /* --- Scarcity & Banners --- */
 .scarcity-bar {
     background-color: var(--primary-color);
     color: #ffffff;
     text-align: center;
     padding: 10px 0;
     font-family: 'Outfit', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     letter-spacing: 0.5px;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .date-banner {
     background: linear-gradient(90deg, #007bff, #00d2ff);
     color: white;
     text-align: center;
     padding: 8px 0;
     font-weight: 600;
     font-size: 0.9rem;
 }

 /* --- Hero Section - COMPACT & ANIMATED --- */
 .hero {
     /* Dynamic Animated Gray Background */
     background: linear-gradient(-45deg, #f8f9fa, #e9ecef, #dee2e6, #f8f9fa);
     background-size: 400% 400%;
     animation: gradientBG 15s ease infinite;

     /* Greatly reduced padding to fit on screen */
     padding: 40px 0 30px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 /* Animated Dark Green Gradient Text */
 .gradient-text {
     background: var(--text-gradient-green);
     background-size: 300% auto;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     animation: textShine 4s linear infinite;
     font-weight: 900;
 }

 @keyframes textShine {
     to {
         background-position: 200% center;
     }
 }

 .hero h1 {
     font-family: var(--font-heading);
     font-size: 2.8rem;
     /* Adjusted for longer text */
     color: var(--text-dark);
     font-weight: 800;
     margin-bottom: 20px;
     letter-spacing: -1px;
     line-height: 1.1;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero h2 {
     font-size: 1.2rem;
     /* Reduced from 1.4rem */
     color: #495057;
     font-weight: 500;
     margin-bottom: 20px;
     line-height: 1.5;
 }

 /* Refined Highlight: Soft Green background with Dark Green text */
 .hero .highlight {
     background-color: rgba(40, 167, 69, 0.15);
     color: var(--primary-color);
     padding: 4px 12px;
     border-radius: 8px;
     font-weight: 700;
     box-shadow: none;
     /* Removed heavy shadow */
     border: 1px solid rgba(40, 167, 69, 0.2);
 }

 .hero p {
     font-size: 1.1rem;
     color: var(--text-muted);
     max-width: 800px;
     margin: 0 auto 15px;
     line-height: 1.5;
 }

 .hero .subheadline {
     font-size: 1.35rem;
     color: var(--text-dark);
     font-weight: 800;
     margin-bottom: 20px;
     line-height: 1.4;
 }

 .hero-image {
     position: relative;
     z-index: 1;
 }

 .hero-image img {
     max-width: 80%;
     /* Reduce image size */
     max-height: 400px;
     /* Limit height */
     width: auto;
     margin-top: 15px;
     border-radius: 15px;
     /* Clean, deep shadow for the mockup */
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease;
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .hero-image img:hover {
     transform: translateY(-5px);
 }

 /* Hero Offer Box - COMPACT */
 .hero-offer {
     background: rgba(255, 255, 255, 0.95);
     /* Slight glass effect */
     backdrop-filter: blur(10px);
     padding: 25px;
     /* Reduced from 40px */
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
     max-width: 600px;
     /* narrowed slightly */
     /* Fixed Positioning - No negative margin */
     margin: 20px auto 0;
     position: relative;
     border: 1px solid #ffffff;
     z-index: 10;
 }

 .price-tag {
     margin-bottom: 25px;
 }

 .price-tag .old-price {
     color: #dc3545;
     /* Red */
     font-size: 1.5rem;
     /* Increased size */
     font-weight: 700;
     /* Bold */
     display: block;
     margin-bottom: 5px;
 }

 .price-tag .new-price-label {
     display: block;
     font-size: 0.9rem;
     font-weight: 700;
     color: var(--text-dark);
     letter-spacing: 1px;
     margin-bottom: -5px;
 }

 .price-tag .new-price {
     font-size: 4rem;
     font-weight: 900;
     color: var(--primary-color);
     line-height: 1;
     display: block;
     text-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
 }

 .hero-offer h3 {
     font-size: 1.1rem;
     color: #343a40;
     margin-bottom: 25px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 /* CLEAN List Styling - No double bullets */
 .benefits-list {
     list-style: none;
     /* Removes default bullets */
     padding: 0;
     margin: 0 auto 30px;
     display: inline-block;
     text-align: left;
 }

 .benefits-list li {
     margin-bottom: 12px;
     font-size: 1.05rem;
     color: var(--text-dark);
     display: flex;
     /* Aligns icon and text */
     align-items: center;
     gap: 12px;
 }

 .benefits-list li i {
     color: var(--primary-color);
     font-size: 1.2rem;
     min-width: 24px;
     /* Ensures alignment even if icon changes */
     text-align: center;
     background: rgba(40, 167, 69, 0.1);
     padding: 6px;
     border-radius: 50%;
 }

 .cta-button {
     background: var(--primary-gradient);
     color: white;
     font-size: 1.4rem;
     font-weight: 800;
     padding: 18px 50px;
     border-radius: 50px;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
     box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
     border: none;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     white-space: nowrap;
     text-align: center;
 }

 .pricing-card.premium .cta-button {
     animation: stretch-bounce 1.5s infinite ease-in-out;
 }

 @keyframes stretch-bounce {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(40, 167, 69, 0.6);
     background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
 }

 /* --- Showcase Section --- */
 .showcase {
     background-color: var(--bg-white);
     padding: 100px 0;
     text-align: center;
 }

 .section-title {
     font-size: 2.2rem;
     color: var(--text-dark);
     margin-bottom: 15px;
     text-transform: uppercase;
     font-weight: 800;
     letter-spacing: -0.5px;
     position: relative;
     display: table;
     /* Was inline-block, table centers with auto margins usually, or block */
     display: block;
     /* Safer for center alignment */
     margin-left: auto;
     margin-right: auto;
     text-align: center;
     /* Ensure internal text is centered */
 }

 .section-title::after {
     content: '';
     display: block;
     width: 60px;
     height: 4px;
     background: var(--primary-color);
     margin: 10px auto 0;
     border-radius: 2px;
 }

 .section-subtitle {
     font-size: 1.5rem;
     color: var(--text-dark);
     font-weight: 800;
     margin-bottom: 25px;
     text-transform: uppercase;
     letter-spacing: 0px;
     line-height: 1.4;
 }

 .highlight-mark {
     background-color: rgba(40, 167, 69, 0.15);
     color: var(--primary-color);
     padding: 2px 8px;
     border-radius: 6px;
     display: inline-block;
     /* Keeps padding nice */
 }

 .showcase-text {
     font-size: 1.25rem;
     color: #495057;
     max-width: 800px;
     margin: 0 auto 50px;
     line-height: 1.6;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
 }

 .gallery-grid img {
     width: 100%;
     border-radius: 10px;
     box-shadow: var(--shadow-sm);
     border: 1px solid #e9ecef;
     transition: all 0.3s ease;
 }

 .gallery-grid img:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-hover);
 }

 /* --- Categories Section --- */
 .categories {
     background-color: var(--bg-off-white);
     padding: 100px 0;
     border-top: 1px solid #e9ecef;
     border-bottom: 1px solid #e9ecef;
 }

 .categories-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
     gap: 20px;
     margin-top: 50px;
 }

 .category-card {
     background: white;
     padding: 25px 20px;
     border-radius: var(--border-radius);
     text-align: center;
     box-shadow: var(--shadow-soft);
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid #f1f3f5;
     border-top: 4px solid transparent;
 }

 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-hover);
     border-top-color: var(--secondary-color);
 }

 .category-card i {
     font-size: 2.2rem;
     color: var(--secondary-color);
     margin-bottom: 15px;
 }

 .category-card p {
     font-size: 0.95rem;
     font-weight: 700;
     color: #495057;
 }

 /* --- Guarantee Section - DEEP GREEN --- */
 .guarantee {
     background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
     padding: 90px 0;
     color: white;
     text-align: center;
 }

 .guarantee-content {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 50px;
 }

 .guarantee-text {
     text-align: left;
 }

 .guarantee-text h2 {
     color: white;
     font-size: 2.2rem;
     margin-bottom: 20px;
     font-weight: 900;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .guarantee-text p {
     color: #f8f9fa;
     font-size: 1.15rem;
     font-weight: 500;
 }

 /* --- Pricing Section --- */
 .pricing {
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     padding: 100px 0;
 }

 .pricing-grid {
     display: flex;
     justify-content: center;
     gap: 40px;
     margin-top: 60px;
     flex-wrap: wrap;
 }

 .pricing-card {
     background: white;
     border-radius: 20px;
     padding: 50px 40px;
     width: 100%;
     max-width: 420px;
     box-shadow: var(--shadow-card);
     position: relative;
     border: 1px solid #e9ecef;
     transition: transform 0.3s ease;
 }

 .pricing-card.basic {
     border-top: 5px solid #6c757d;
 }

 .pricing-card.premium {
     border: 2px solid var(--primary-color);
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
     z-index: 5;
 }

 .pricing-card.premium:hover {
     transform: scale(1.07);
 }

 .premium-mockup {
     width: 100%;
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 auto 10px;
 }

 .pricing-card h3 {
     text-align: center;
     font-size: 1.6rem;
     margin-bottom: 10px;
     font-weight: 800;
     color: var(--text-dark);
 }

 .pricing-card .cta-button {
     width: 100%;
     padding: 15px 5px;
     font-size: 1.1rem;
     box-sizing: border-box;
 }

 .pricing-card .price {
     font-size: 4rem;
     font-weight: 900;
     text-align: center;
     color: var(--text-dark);
     margin: 20px 0;
 }

 .pricing-card.premium .price,
 .pricing-card .price.green-price {
     color: var(--primary-color);
 }

 .pricing-card .features li {
     padding: 12px 0;
     border-bottom: 1px dashed #dee2e6;
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.95rem;
 }

 .features li.no-bonus {
     color: var(--danger-color);
     font-weight: 700;
 }

 .features li i {
     font-size: 1.1rem;
 }

 .payment-type {
     text-align: center;
     margin-bottom: 20px;
     color: #6c757d;
     font-weight: 600;
     font-size: 0.9rem;
     letter-spacing: 1px;
 }

 .stars {
     display: block;
     margin: 0 auto 15px;
 }

 .ribbon {
     position: absolute;
     top: -18px;
     left: 50%;
     transform: translateX(-50%);
     right: auto;
     background: var(--accent-gradient);
     color: #000;
     padding: 8px 30px;
     border-radius: 20px;
     font-weight: 800;
     font-size: 0.9rem;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
     text-transform: uppercase;
     white-space: nowrap;
 }

 /* --- FAQ - LIGHT GREEN --- */
 .faq {
     background-color: var(--bg-active-green);
     padding: 100px 0;
 }

 .accordion-item {
     border: 1px solid #c3e6cb;
     border-radius: 8px;
     margin-bottom: 15px;
     overflow: hidden;
     background: white;
 }

 .accordion-header {
     width: 100%;
     text-align: left;
     padding: 20px;
     background: white;
     border: none;
     font-size: 1.1rem;
     font-weight: 700;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: #155724;
     /* Dark Green Text */
     transition: background 0.2s;
 }

 .accordion-header:hover {
     background: #f8f9fa;
 }

 .accordion-content {
     background: white;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding: 0 20px;
     color: #495057;
     line-height: 1.7;
 }

 .accordion-content.active {
     padding-bottom: 20px;
     border-top: 1px solid #e9ecef;
 }

 /* --- Footer - PURE BLACK --- */
 .footer {
     background-color: #000000;
     color: #ced4da;
     padding: 60px 0 40px;
     text-align: center;
     font-size: 0.95rem;
     border-top: 5px solid var(--primary-color);
 }

 .footer img {
     opacity: 1;
     margin-bottom: 25px;
 }

 .footer-links a {
     color: white;
     text-decoration: none;
     margin: 0 15px;
     font-weight: 600;
     transition: color 0.2s;
 }

 .footer-links a:hover {
     color: var(--accent-color);
 }

 .footer p {
     margin-bottom: 15px;
 }

 .security-badge {
     margin-top: 30px;
     max-width: 250px;
     opacity: 0.9;
     background: white;
     padding: 5px;
     border-radius: 5px;
 }

 /* Mobile Adjustments */
 @media (max-width: 768px) {
     .pricing-card.premium {
         transform: scale(1);
     }

     .hero h1 {
         font-size: 2rem;
     }

     .guarantee-content {
         flex-direction: column;
         text-align: center;
         gap: 30px;
     }

     .guarantee-text {
         text-align: center;
     }

     .hero-offer {
         padding: 30px 20px;
         margin-top: 20px;
     }

     .pricing-grid {
         gap: 30px;
     }

     .cta-button {
         width: 100%;
         padding: 15px 20px;
         font-size: 1.1rem;
         box-sizing: border-box;
     }

     .hero-offer {
         width: 100%;
         max-width: 100%;
         box-sizing: border-box;
         padding: 20px 15px;
     }
 }

 /* Global Animations */
 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
         transform: scale(1);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
         transform: scale(1.03);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
         transform: scale(1);
     }
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .float-animation {
     animation: float 5s ease-in-out infinite;
 }

 .pulse {
     animation: pulse 2s infinite;
 }

 @keyframes gradientBG {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 /* --- Sales Notification Toast --- */
 .sales-toast {
     position: fixed;
     top: 20px;
     right: 20px;
     background-color: #ffffff;
     padding: 12px 18px;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     display: flex;
     align-items: center;
     gap: 12px;
     z-index: 9999;
     border-left: 4px solid var(--primary-color);
     transform: translateX(120%);
     transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
     max-width: 320px;
     opacity: 0;
     pointer-events: none;
 }

 .sales-toast.show {
     transform: translateX(0);
     opacity: 1;
     pointer-events: auto;
 }

 .toast-icon {
     background-color: rgba(40, 167, 69, 0.1);
     color: var(--primary-color);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 1.2rem;
     flex-shrink: 0;
 }

 .toast-text {
     display: flex;
     flex-direction: column;
 }

 .toast-text span.name {
     font-size: 0.9rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 2px;
 }

 .toast-text span.action {
     font-size: 0.8rem;
     color: #6c757d;
     line-height: 1.2;
 }

 .toast-text span.time {
     font-size: 0.75rem;
     color: #adb5bd;
     margin-top: 2px;
 }

 @media (max-width: 768px) {
     .sales-toast {
         top: 10px;
         right: 10px;
         left: 10px;
         max-width: none;
     }
 }

 /* --- Access Info Section --- */
 .access-info {
     max-width: 900px;
     margin: 50px auto 0;
     text-align: center;
 }

 .access-title {
     font-size: 2rem;
     font-weight: 900;
     font-style: italic;
     text-transform: uppercase;
     color: #212529;
     margin-bottom: 30px;
     line-height: 1.2;
 }

 .access-text {
     font-size: 1.25rem;
     color: #0f5132;
     /* Deep Green core text */
     line-height: 1.6;
     margin-bottom: 25px;
     font-weight: 500;
 }

 .access-text strong {
     font-weight: 800;
 }

 /* --- Summary Section --- */
 .summary-section {
     background-color: #ffffff;
     padding: 80px 0;
     text-align: center;
     border-top: 1px solid #e9ecef;
 }

 .summary-headline {
     font-size: 2rem;
     font-weight: 800;
     color: var(--text-dark);
     margin-bottom: 20px;
 }

 .summary-text {
     font-size: 1.15rem;
     color: #495057;
     max-width: 800px;
     margin: 0 auto 30px;
     line-height: 1.6;
 }

 .objective-box {
     border: 2px dashed var(--primary-color);
     border-radius: 15px;
     padding: 20px 30px;
     max-width: 700px;
     margin: 0 auto;
     background-color: rgba(40, 167, 69, 0.05);
 }

 .objective-box p {
     font-size: 1.2rem;
     color: #343a40;
     margin: 0;
     line-height: 1.5;
 }

 .security-row {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin: 30px 0 40px;
     flex-wrap: wrap;
 }

 .security-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 5px;
     color: #495057;
     font-weight: 700;
     font-size: 0.85rem;
     line-height: 1.2;
 }

 .security-item i {
     font-size: 1.8rem;
     color: #343a40;
     margin-bottom: 5px;
 }

 .center-garantia {
     display: block;
     margin: 0 auto;
     max-width: 150px;
 }

 /* --- Scarcity Urgency Box --- */
 .scarcity-box {
     background: #ffffff;
     border: 2px solid #e9ecef;
     border-top: 4px solid var(--primary-color);
     border-radius: 12px;
     padding: 25px 20px;
     max-width: 600px;
     margin: 0 auto 40px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     text-align: center;
 }

 .scarcity-text {
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 15px;
     text-transform: uppercase;
 }

 .scarcity-text span {
     color: var(--primary-color);
     font-weight: 900;
     font-size: 1.3rem;
 }

 .progress-container {
     background: #e9ecef;
     border-radius: 50px;
     height: 26px;
     width: 100%;
     margin-bottom: 10px;
     overflow: hidden;
     position: relative;
     box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
 }

 .progress-bar {
     background: var(--primary-gradient);
     height: 100%;
     width: 91.2%;
     /* Initial Width */
     border-radius: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 0.85rem;
     font-weight: 800;
     transition: width 0.5s ease-out;
     box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
 }

 /* Shimmer Effect Overlay */
 .progress-bar::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
     transform: skewX(-20deg);
     animation: shimmer 1.5s infinite;
 }

 @keyframes shimmer {
     0% {
         transform: translateX(-150%) skewX(-20deg);
     }

     100% {
         transform: translateX(150%) skewX(-20deg);
     }
 }

 .scarcity-footer {
     font-size: 0.9rem;
     color: #6c757d;
 }