@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
:root {
    --color-primary: #293395;
    --color-accent: #f65215;
    --color-success: #28a745;
    --color-dark: #181e54;
    --color-text: #333;
    --color-heading: #212529;
    --color-light-gray: #f2f4f8;
    --color-white: #fff;
    --font-main: "Inter", sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: var(--color-primary);
}
h1,
h2,
h3 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
h1 {
    font-size: 2em;
    font-weight: 800;
}
h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
}
h3 {
    font-size: 1.6em;
    font-weight: 600;
}
p {
    margin-bottom: 1rem;
}
.content-container {
    width: 90%;
    max-width: 1170px;
    margin-inline: auto;
    padding-inline: 15px;
}
.section-wrapper {
    width: 100%;
    padding-block: 60px;
}
.cta-button-main,
.cta-button-pricing {
    display: inline-block;
    padding: 0.625em 1.75em;
    background-color: var(--color-success);
    color: var(--color-white);
    text-align: center;
    border-radius: 0.375em;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.1);
}
.cta-button-main:hover {
    background-color: #2cb850;
    box-shadow: none;
}
.cta-button-pricing {
    width: 80%;
    margin-bottom: 0.9375em;
    font-size: 1.15em;
    background-image: url(../img/buy-now-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    color: #000;
    font-weight: 800;
    padding: 1.25em 1.875em;
    height: 3.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: background-image 0.3s ease;
}
.cta-button-pricing:hover {
    background-color: transparent;
    box-shadow: none;
    background-image: url(../img/buy-now-button-hover.svg);
}
.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-size: clamp(1em, 4vw, 1.3em);
    white-space: nowrap;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.pro-badge {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 5px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9em;
    display: inline-block;
    vertical-align: baseline;
}
.nav-links-group {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}
.header-nav-link:hover {
    color: var(--color-primary);
}
.header-nav-link[href="#offer"] {
    display: none;
}
.hero-section {
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    min-height: 530px;
    position: relative;
}
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text-content {
    flex: 1;
    max-width: 60%;
    order: 2;
    margin-top: -10px;
}
.hero-text-content h1 {
    font-size: 2em;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-text-content p {
    font-size: 0.95em;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.8;
}
.hero-image-container {
    flex: 1;
    max-width: 40%;
    order: 1;
}
.hero-image-container img {
    max-height: 430px;
}
.hero-badges {
    display: flex;
    gap: 5vw;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin-inline: auto;
}
.hero-badge-item {
    max-height: 14vw;
    min-height: 60px;
    max-width: 14vw;
    min-width: 60px;
    width: auto;
    height: auto;
    }
.hero-bottom-bar {
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    min-height: 150px;
    }
    .hero-benefits {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
    }
.hero-benefits li {
    display: flex;
    align-items: flex-start;
        font-size: 0.95em;
    color: var(--color-white);
    font-weight: 500;
    line-height: 1.6;
    flex: 1;
    }
.hero-benefits img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    }
.hero-benefits strong {
    display: block;
    }
.scroll-arrow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.arrow-down {
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 28px solid var(--color-light-gray);
}
.whats-inside-section .subtitle {
    font-size: 1.1em;
    max-width: 750px;
    margin: 0 auto 30px auto;
    text-align: center;
    line-height: 1.7;
}
.inside-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}
.inside-feature-item {
    text-align: center;
    padding: 25px;
}
.inside-feature-item img {
    width: 250px;
    height: 250px;
    min-width: 250px;
    min-height: 250px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    border: 5px solid var(--color-white);
    box-shadow: 0 2px 14px rgb(0 0 0 / 12%);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.inside-feature-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgb(0 0 0 / 18%);
}
.inside-feature-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}
.inside-feature-item p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 0;
}
.key-features-section {
    background-color: var(--color-dark);
    position: relative;
}
.key-features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(24, 30, 84, 0.8);
    z-index: 1;
}
.key-features-section .content-container {
    position: relative;
    z-index: 2;
}
.key-features-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.key-features-left {
    flex: 1;
    max-width: 60%;
}
.key-features-right {
    flex: 1;
    max-width: 40%;
}
.key-features-product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 2em auto;
    display: block;
}
.key-features-list {
    text-align: left;
}
.key-features-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    font-weight: 500;
    color: var(--color-heading);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.key-features-list li:not(:last-child) {
    margin-bottom: 20px;
}
.key-features-list img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}
.offer-section {
    background-color: var(--color-light-gray);
    text-align: center;
    display: none;
}
.offer-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.offer-product.bonus-placeholder {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    flex: 1;
    max-width: 480px;
    min-width: 300px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.bonus-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 4px 0 0 4px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.offer-product.bonus-placeholder img {
    height: 360px;
    object-fit: cover;
}
.bonus-title {
    font-weight: 700;
    font-size: 1.1em;
    color: var(--color-white);
    background-color: var(--color-dark);
    padding: 12px 15px;
    text-align: center;
}
.bonus-number {
    background-color: #ffeb3b;
    color: #000;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 800;
    font-size: 0.9em;
}
.bonus-content {
    padding: 30px;
}
.bonus-pricing {
    margin-bottom: 15px;
}
.bonus-retail-price {
    font-size: 1.1em;
    color: var(--color-accent);
    margin-bottom: 5px;
    font-weight: 600;
}
.bonus-today-price {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 0;
}
.bonus-today-price span {
    color: var(--color-success);
    font-size: 1.2em;
    font-weight: 800;
}
.bonus-description {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}
.offer-shipping-info {
    background-color: #252D6E;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shipping-info-content-wrapper {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 35px;
    max-width: 950px;
    margin-inline: auto;
}
.shipping-seal {
    max-width: 180px;
    flex-shrink: 0;
    }
.shipping-text {
    text-align: center;
    color: var(--color-white);
    }
.shipping-text p {
    margin-bottom: 0;
    line-height: 1.4;
    }
.shipping-text-main {
        font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 4px;
    }
.shipping-text-highlight {
    font-size: 2em;
    font-weight: 700;
    color: #ffeb3b;
    margin-bottom: 4px;
    }
.shipping-text-sub {
        font-size: 1em;
    font-weight: 400;
    color: #e0e0e0;
    }
.pricing-section {
    background-color: var(--color-white);
}
.pricing-section h2 {
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.pricing-section .subtitle {
    font-size: 1.1em;
    max-width: 1020px;
    margin: 0 auto 80px auto;
    text-align: center;
    line-height: 1.7;
}
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 30px;
    flex-wrap: nowrap;
    margin: 0 auto 40px auto;
}
.pricing-option {
    background-color: var(--color-white);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 30px 25px;
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-option:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.pricing-option:hover .cta-button-pricing {
    background-image: url(../img/buy-now-button-hover.svg);
}
.pricing-mobile-wrapper,
.pricing-col-left,
.pricing-col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.pricing-option.popular {
    border-width: 3px;
    padding-top: 45px;
    max-width: 400px;
    transform: scale(1.05);
    border-color: var(--color-accent);
}
.pricing-option.popular:hover {
    transform: scale(1.1);
}
.pricing-option .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    padding: 7px 18px;
    font-size: 0.9em;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 1;
}
.pricing-option .most-popular {
    background-color: var(--color-accent);
}
.pricing-option .package-title {
    font-weight: 800;
    font-size: 1.3em;
    color: var(--color-primary);
    margin-bottom: 0;
}
.pricing-option .package-duration {
    font-size: 1em;
    color: #818181;
    margin-bottom: 15px;
}
.pricing-option img {
    max-width: 70%;
    margin-bottom: 20px;
    max-height: 200px;
}
.pricing-option .package-price-old {
    font-size: 1.1em;
    color: #6c757d;
    text-decoration: line-through;
    margin-bottom: 5px;
}
.pricing-option .package-price-new {
    font-weight: 800;
    font-size: 2.6em;
    color: var(--color-accent);
    margin-bottom: 5px;
    line-height: 1;
}
.pricing-option .package-price-new span {
    font-size: 0.5em;
    font-weight: 600;
}
.pricing-option .package-save {
    color: var(--color-success);
    font-weight: 700;
    font-size: 0.95em;
    margin-bottom: 0;
}
.pricing-option:not(.popular) .package-save {
    margin-bottom: 15px;
}
.pricing-option .shipping-info {
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 15px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.payment-icons img {
    height: 30px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
.free-ebooks-badge {
    border: 2px dashed var(--color-success);
    background-color: #f8f9fa;
    padding: 8px 12px;
    margin: 10px 0 15px 0;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.free-ebooks-badge .checkmark {
    font-weight: bold;
    color: var(--color-accent);
}
.secure-checkout-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 70px;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    max-width: 675px;
    margin-inline: auto;
}
.secure-checkout-info img {
    height: 35px;
}
.secure-checkout-info p {
    margin-bottom: 0;
    text-align: left;
}
.satisfaction-guarantee-section {
    background-color: var(--color-light-gray);
}
.satisfaction-guarantee-section .content-container {
    display: flex;
    justify-content: center;
}
.guarantee-content-inner {
    display: flex;
        align-items: center;
        gap: 40px;
    max-width: 910px;
    width: 100%;
}
.guarantee-seal-large {
    max-width: 240px;
    flex-shrink: 0;
}
.guarantee-text-content {
    flex: 1;
    text-align: left;
}
.satisfaction-guarantee-section h2 {
    text-align: left;
    margin-bottom: 20px;
}
.satisfaction-guarantee-section p {
    font-size: 1.1em;
    max-width: 750px;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}
.quality-promise-section {
    background-color: var(--color-dark);
    text-align: center;
    padding-block: 40px;
}
.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5.5vw;
    max-width: 100%;
    margin-inline: auto;
}
.quality-badge {
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
    min-width: 50px;
    min-height: 50px;
}
.faq-section {
    background-color: var(--color-white);
}
.faq-section h2 {
    margin-bottom: 40px;
}
.faq-item {
    max-width: 930px;
    margin: 0 auto 20px auto;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.15em;
    color: var(--color-heading);
    border: none;
    cursor: pointer;
}
.faq-question:hover {
    color: var(--color-primary);
}
.faq-question span {
    flex-grow: 1;
    margin-right: 20px;
}
.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-answer p {
    font-size: 1em;
    line-height: 1.7;
    padding: 0 0 25px 0;
    margin-bottom: 0;
}
.footer {
    background-color: var(--color-white);
    color: #adadad;
    padding: 40px 0;
    font-size: 0.9em;
    border-top: 1px solid #dee2e6;
}
.footer-bottom {
    text-align: center;
}
.footer-links {
    margin-bottom: 20px;
}
.footer-links a {
    color: #adadad;
    margin: 0 10px;
    font-size: 0.95em;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #888;
    text-decoration: underline;
}
.footer-bottom p {
    font-size: 0.9em;
    color: #adadad;
    line-height: 1.6;
}
.footer-bottom p:last-child {
    margin-bottom: 0;
}
.footer-bottom .disclaimer {
    font-size: 0.85em;
    max-width: 800px;
    margin-inline: auto;
}
#pricing-bottom {
    padding-top: 20px;
}
@media (max-width: 1160px) and (min-width: 769px) {
    .pricing-grid {
        display:initial;    
        margin:auto;
    }
    .pricing-option.popular {
        margin-top:3em;
        margin-bottom:3em;
    }
    .pricing-option, .pricing-option.popular {
        max-width:initial;
    }

    .pricing-mobile-wrapper {
        display:initial;
        width:initial;
        
      }
      .pricing-option img
      {
      max-width:10em;  
      max-width:initial;
      max-height:initial;
      max-height:10em;
      display: inline;
      }
      
      .pricing-col-left {
        display:inline-block;
        width:initial;
        vertical-align: middle;
        min-width:12em;
        text-align:center;
        padding:3em;
        padding-top:0;
        padding-bottom:0;
      }
      
      .pricing-col-right {
        display:inline-block;
        width:initial;
        vertical-align: middle;
        text-align:center;
      }
      
      .cta-button-pricing {
        display:inline-block;
      }
}
@media (max-width: 992px) {
    .hero-content-wrapper,
    .key-features-content,
    .guarantee-content-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-content-wrapper {
        padding-top: 40px;
    }
    .hero-text-content {
        max-width: 100%;
        align-items: center;
        order: 2;
    }
    .hero-image-container {
        margin-top: 0;
        max-width: 350px;
        order: 1;
    }
    .hero-text-content h1 {
        font-size: 1.8em;
    }
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .hero-benefits li {
        text-align: left;
        max-width: 400px;
    }
    .hero-badges {
        display: flex;
        gap: 5vw;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin-inline: auto;
    }
    .hero-badge-item {
        max-height: 14vw;
        min-height: 60px;
        max-width: 14vw;
        min-width: 60px;
        width: auto;
        height: auto;
    }
    .guarantee-text-content,
    .satisfaction-guarantee-section h2,
    .satisfaction-guarantee-section p {
        text-align: center;
    }
    .guarantee-content-inner {
        gap: 25px;
    }
    .key-features-content {
        gap: 40px;
    }
    .key-features-left,
    .key-features-right {
        max-width: 100%;
    }
    .key-features-product-image {
        max-height: 300px;
    }
    .badges-grid {
        gap: 2vw;
    }
    .quality-badge {
        width: 20vw;
        height: 20vw;
        max-width: 80px;
        max-height: 80px;
        min-width: 45px;
        min-height: 45px;
    }
}
@media (max-width: 768px) {
    /* CONSISTENT TYPOGRAPHY SPACING */
    h1, h2 {
        font-size: 1.6em;
        margin-bottom: 0.8em;
        line-height: 1.25;
    }
    
    h3 {
        margin-bottom: 0.6em;
        line-height: 1.3;
    }
    
    p {
        margin-bottom: 1.2em;
        line-height: 1.6;
    }
    
    /* CONSISTENT SECTION SPACING */
    .section-wrapper {
        padding-block: 3.5em;
    }
    
    .content-container {
        padding-inline: 0.25em;
    }
    
    /* HEADER IMPROVEMENTS */
    .header {
        padding: 1em 0;
    }
    
    .nav-links-group .header-nav-link {
        display: none;
    }
    
    .logo-text {
        font-size: clamp(1em, 4vw, 1.3em);
        white-space: nowrap;
    }
    
    .pro-badge {
        font-size: 0.85em;
        padding: 4px 7px;
        white-space: nowrap;
        vertical-align: middle;
        margin-left: 2px;
    }
    
    /* Responsive header button */
    .nav-links-group .cta-button-main {
        font-size: clamp(0.8em, 3.5vw, 1em);
        padding: 0.6em 1.2em;
        white-space: nowrap;
    }
    
    /* HERO SECTION POLISH */
    .hero-section {
        padding-block: 2em 2.5em;
        min-height: auto;
    }

    .hero-image-container img {
        max-height: 430px;
        margin-top: -20px;
    }
    
    .hero-content-wrapper {
        gap: 2em;
        padding-top: 1.5em;
    }
    
    .hero-image-container {
        max-width: 85%;
        margin-block-end: 1.5em;
    }
    
    @media (max-width: 768px) {
        .hero-text-content {
            padding-inline: 0.5em;
            margin-top: -25px;
        }
    }
    
    .hero-text-content h1 {
        font-size: 1.6em;
        margin-bottom: 1em;
    }
    
    .hero-text-content p {
        font-size: 1em;
        margin-bottom: 1.5em;
    }
    
    .hero-badges {
        margin-top: 1.5em;
        gap: 4vw;
    }
    
    .hero-bottom-bar {
        height: auto;
        padding: 2em 0.25em;
        margin-top: 0em;
    }
    
    .hero-benefits {
        gap: 1.8em;
    }
    
    /* CTA BUTTON CONSISTENCY */
    .cta-button-main {
        padding: 0.75em 1.5em;
        font-size: 0.95em;
        margin-top: 0.5em;
    }
    
    /* CONTENT SECTIONS SPACING */
    .whats-inside-section .subtitle {
        margin-bottom: 2.5em;
        padding-inline: 1em;
    }
    
    .inside-features-grid {
        gap: 2.5em;
        margin-top: 1em;
    }
    
    .inside-feature-item {
        padding: 1.5em 1em;
    }
    
    .inside-feature-item img {
        width: 160px;
        height: 160px;
        margin-bottom: 1.5em;
    }
    
    .inside-feature-item h3 {
        margin-bottom: 0.8em;
    }
    
    /* KEY FEATURES SECTION */
    .key-features-product-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto 2em auto;
        display: block;
    }
    
    .key-features-list li {
        margin-bottom: 1.2em;
        padding: 1.25em;
    }
    
    /* OFFER SECTION */
    .offer-content {
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }
    
    .offer-product.bonus-placeholder {
        max-width: 90%;
        width: 100%;
        margin-bottom: 1em;
    }
    
    .bonus-content {
        padding: 2em 1.5em;
    }
    
    /* SHIPPING INFO */
    .shipping-info-content-wrapper {
        flex-direction: column;
        gap: 1.5em;
        padding: 2.5em 0.25em;
    }
    
    .shipping-text-highlight {
        font-size: 1.8em;
        margin-bottom: 0.3em;
    }
    
    /* PRICING SECTION IMPROVEMENTS */
    .pricing-section .subtitle {
        margin-bottom: 3em;
        padding-inline: 1.5em;
    }
    
    .secure-checkout-info {
        margin-top: 0em;
        padding: 1.5em;
        gap: 1.2em;
    }
    
    /* GUARANTEE SECTION */
    .guarantee-content-inner {
        gap: 2em;
        padding-inline: 0.25em;
    }
    
    .guarantee-seal-large {
        max-width: 140px;
    }
    
    .satisfaction-guarantee-section h2 {
        font-size: 1.6em;
        margin-bottom: 1em;
    }
    
    .satisfaction-guarantee-section p {
        margin-bottom: 0;
    }
    
    /* QUALITY BADGES */
    .quality-promise-section {
        padding-block: 3em;
    }
    
    .badges-grid {
        gap: 2vw;
        padding-inline: 0.25em;
    }
    
    .quality-badge {
        width: 22vw;
        height: 22vw;
        max-width: 70px;
        max-height: 70px;
        min-width: 40px;
        min-height: 40px;
    }
    
    /* FAQ SECTION */
    .faq-section h2 {
        margin-bottom: 2em;
        padding-inline: 0.25em;
    }
    
    .faq-item {
        margin-bottom: 1em;
        padding-inline: 0.25em;
    }
    
    .faq-question {
        font-size: 1em;
        padding: 1.2em 0;
    }
    
    .faq-answer p {
        font-size: 0.95em;
        padding: 0 0 1.5em 0;
        line-height: 1.6;
    }
    
    /* FOOTER */
.footer {
        padding: 2.5em 0;
    }
    
    .footer-links {
        margin-bottom: 1.5em;
    }
    
    .footer-links a {
        margin: 0 0.8em;
    font-size: 0.9em;
}

    .footer-bottom p {
        margin-bottom: 1em;
        padding-inline: 0.25em;
    }
    
    .footer-bottom .disclaimer {
        padding-inline: 0.25em;
        line-height: 1.5;
    }

    /* PRICING SECTION - Ultra-Polished Horizontal Layout for screens under 768px */
    .cta-button-pricing {
        font-size: 3.2vw !important;
        padding: 0.8em 1.3em !important;
        border-radius: 0.4em !important;
        height: auto !important;
        margin-bottom: 0.8em !important;
        width: 100% !important;
        max-width: 10em !important;
        line-height: 1.3 !important;
        min-height: 2.8em !important;
        font-weight: 700 !important;
        letter-spacing: 0.02em !important;
    }

    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    text-align: center;
        gap: 0 !important;
    }
    
    /* Reorder pricing options on mobile - BEST VALUE first */
    .pricing-option {
        display: block !important;
        width: 100% !important;
        max-width: 26em !important;
        margin: 0 auto 1.8em auto !important;
        padding: 1.5em !important;
        transform: none !important;
        box-shadow: 0 0.15em 0.8em rgba(0, 0, 0, 0.06) !important;
        flex-direction: initial !important;
        align-items: initial !important;
        flex: initial !important;
        min-width: initial !important;
        border-radius: 0.75em !important;
        border: 0.05em solid rgba(0, 0, 0, 0.08) !important;
        order: 2 !important;
    }
    
    /* BEST VALUE option should appear first and keep orange border */
    .pricing-option.popular {
        order: 1 !important;
        border: 0.15em solid var(--color-accent) !important;
        padding-top: 2.2em !important;
        position: relative !important;
    }
    
    /* Show and style the BEST VALUE badge on mobile */
    .pricing-option.popular .badge.most-popular {
        display: block !important;
        position: absolute !important;
        top: -0.5em !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background-color: var(--color-accent) !important;
        color: var(--color-white) !important;
        padding: 0.5em 1.2em !important;
        font-size: 0.85em !important;
        font-weight: 700 !important;
        border-radius: 1.5em !important;
        text-transform: uppercase !important;
        z-index: 3 !important;
        box-shadow: 0 0.15em 0.4em rgba(0, 0, 0, 0.25) !important;
        letter-spacing: 0.05em !important;
    }
    
    /* Create horizontal layout within each card - ULTRA-POLISHED */
    .pricing-option .pricing-mobile-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: 100% !important;
        gap: 1.5em !important;
        table-layout: initial !important;
}

    .pricing-option .pricing-col-left {
        flex: 0 0 36% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: auto !important;
        vertical-align: initial !important;
        padding-right: 0 !important;
    }
    
    .pricing-option .pricing-col-right {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: auto !important;
        vertical-align: initial !important;
}

    .pricing-option img {
        margin-bottom: 0.5em !important;
        max-height: 5em !important;
        width: auto !important;
        max-width: initial !important;
    }
    
    .pricing-option .package-title {
        font-size: 4.2vw !important;
        font-weight: 800 !important;
        margin-bottom: 0.15em !important;
        line-height: 1.05 !important;
        color: var(--color-primary) !important;
        letter-spacing: -0.01em !important;
    }
    
    .pricing-option .package-duration {
        font-size: 2.2vw !important;
        margin-bottom: 0 !important;
        color: #777 !important;
        font-weight: 500 !important;
        letter-spacing: 0.01em !important;
}

    .pricing-col-right > *:not(:last-child) {
        margin-bottom: 0.6em !important;
    }
    
    .pricing-col-right > *:last-child {
        margin-bottom: 0 !important;
}

    /* Hide the crossed out price completely for cleaner look */
    .pricing-option .package-price-old {
        display: none !important;
    }
    
    .pricing-option .package-price-new {
        font-size: 7vw !important;
        margin-bottom: 0.2em !important;
        line-height: 0.85 !important;
        font-weight: 800 !important;
        letter-spacing: -0.02em !important;
    }
    
    .pricing-option .package-price-new span {
        font-size: 0.35em !important;
        vertical-align: top !important;
        font-weight: 600 !important;
    }
    
    .pricing-option .package-save {
        display: none !important;
    }
    
    .pricing-option .shipping-info {
        font-size: 2vw !important;
        font-weight: 600 !important;
        margin-bottom: 0.7em !important;
        color: #444 !important;
        letter-spacing: 0.01em !important;
    }
    
    .pricing-option .payment-icons {
        margin-bottom: 0 !important;
        display: flex !important;
        justify-content: center !important;
        gap: 0.15em !important;
        align-items: center !important;
        margin-top: 0.2em !important;
        flex-wrap: wrap !important;
        max-width: 100% !important;
    }
    
    .pricing-option .payment-icons img {
        height: 1em !important;
        max-width: 18% !important;
        width: auto !important;
        filter: drop-shadow(0 0.05em 0.15em rgba(0, 0, 0, 0.12)) !important;
        border-radius: 0.15em !important;
        flex-shrink: 1 !important;
    }
    
    .pricing-option .free-ebooks-badge {
        font-size: 2.1vw !important;
        padding: 0.45em 0.7em !important;
        margin: 0 0 0.6em 0 !important;
        width: auto !important;
        max-width: none !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 0.35em !important;
        border-width: 0.08em !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em !important;
        box-shadow: 0 0.08em 0.2em rgba(40, 167, 69, 0.15) !important;
        background-color: rgba(40, 167, 69, 0.05) !important;
    }
    
    .pricing-option .free-ebooks-badge .checkmark {
        margin-right: 0.35em !important;
        font-size: 1.15em !important;
        font-weight: 700 !important;
    }

    /* Reduce spacing between FAQ and final pricing by additional 30px */
    #pricing-bottom {
        padding-top: 1.2em;
    }
}
@media (max-width: 480px) {
    .hero-badge-item {
        max-height: 65px;
    }
    .inside-feature-item img {
        width: 250px;
        height: 250px;
    }
    .badges-grid {
        max-width: 280px;
    }
}
