/* 
    Etherea OS - Mobile Adaptation
    --------------------------------
    Breakpoint: max-width 767px (phones)
    Rule: Desktop styles are fully autonomous — we only override here.
*/

@media (max-width: 767px) {

    /* =========================================
       0. GLOBAL: Prevent horizontal scroll
    ========================================= */
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Global content padding rule: 16px sides for all sections */
    :root {
        --container-padding: 16px;
    }

    section {
        padding: 60px var(--container-padding);
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        /* prevent children from breaking layout */
    }

    /* =========================================
       1. TOP BANNER
    ========================================= */
    .top-banner {
        background-color: #a02828;
        /* Dark red — same as desktop */
        padding: 10px var(--container-padding);
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Timer stays inline with the banner text, gold color */
    #timer {
        color: #FFD700;
        display: inline;
        font-size: 13px;
        font-weight: 600;
        margin-left: 6px;
    }

    /* =========================================
       2. HERO SECTION
    ========================================= */
    .hero-section {
        max-width: 100%;
        padding: 40px var(--container-padding);
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: black;
        overflow: hidden;
    }

    /* CSS-only reordering — HTML untouched, desktop unaffected */
    .avatar-wrapper {
        order: 1;
    }

    /* Desktop: top. Mobile override: bottom */
    .hero-top {
        order: 2;
        width: 100%;
    }

    .bottom-arrow {
        order: 3;
    }

    /* Arrow visually between headline and card */
    .product-card {
        order: 4;
        width: 100%;
    }

    /* On mobile, avatar moves to the very bottom — override order */
    .hero-section>.avatar-wrapper {
        order: 5;
    }

    /* Swap laptop image to mobile version — CSS only, no HTML touch */
    .laptop-img {
        content: url('../laptop_mobile.png');
        /* path relative to css/ folder */
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        width: 100%;
    }

    /* Pill Badge with pink dashed border and pink dot */
    .pill-badge {
        background: transparent;
        border: 1px dashed #FF69B4;
        border-radius: 100px;
        padding: 12px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 35px;
        font-family: 'Inter Tight', sans-serif;
        font-weight: 600;
        font-size: 18px;
        /* Task 3: 18px */
        color: white;
        max-width: 85%;
        box-sizing: border-box;
    }

    /* Pink dot inside the badge */
    .pink-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        background-color: #FF69B4;
        border-radius: 50%;
        display: inline-block;
        flex-shrink: 0;
    }

    /* Main hero headline */
    .main-headline {
        font-family: 'Inter Tight', sans-serif;
        font-size: 32px;
        line-height: 1.15;
        font-weight: 600;
        /* Task 2: 600 */
        letter-spacing: 0;
        /* Task 2: spacing 0 */
        color: white;
        margin-bottom: 0;
        width: 100%;
    }

    /* Arrow between headline and card */
    .bottom-arrow {
        margin: -10px 0 8px;
        text-align: center;
    }

    .arrow-img {
        width: 80px;
        /* slightly larger */
        filter: invert(47%) sepia(87%) saturate(2811%) hue-rotate(311deg) brightness(101%) contrast(101%);
    }

    /* =========================================
       3. PRODUCT CARD
    ========================================= */
    .product-card {
        background: white;
        border-radius: 20px;
        /* Task 5: reduced rounding */
        padding: 30px 16px 30px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        color: black;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        margin-top: 10px;
        overflow: visible;
    }

    /* Notion logo — just barely touching the top of the card */
    .card-notion-logo {
        position: absolute;
        top: -44px;
        /* Task 4: raised so logo edge kisses the card top */
        right: 16px;
        width: 60px;
        z-index: 10;
    }

    .card-notion-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

    .card-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
    }

    /*
      display:contents flattens .card-right so its children
      become direct flex children of .card-grid.
      This lets us reorder title/image/reviews via 'order'
      without touching HTML.
    */
    .card-right {
        display: contents;
    }

    /* Exact order from screenshot */
    .product-title {
        order: 1;
        width: 100%;
        box-sizing: border-box;
    }

    .card-left {
        order: 2;
        width: 100%;
    }

    .review-row {
        order: 3;
        width: 100%;
    }

    .live-status {
        order: 4;
    }

    .feature-list {
        order: 5;
    }

    .price-section {
        order: 6;
    }

    .cta-button {
        order: 7;
    }

    .guarantee-text {
        order: 8;
    }

    /* Product title */
    .product-title {
        font-family: 'Inter Tight', sans-serif;
        font-size: 26px;
        line-height: 1.15;
        font-weight: 800;
        color: black;
        text-align: center;
        /* centered */
        margin-bottom: 20px;
        margin-top: 10px;
    }

    /* Laptop image — full width, no overflow */
    .laptop-img {
        width: 100%;
        max-width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    /* Review row */
    .review-row {
        flex-direction: column;
        align-items: center;
        /* centered */
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
        text-align: center;
    }

    .review-count {
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

    .stars {
        gap: 4px;
    }

    .stars img {
        width: 22px;
    }

    /* Live status — green pill */
    .live-status {
        background: rgba(46, 204, 113, 0.1);
        border: 1px solid rgba(46, 204, 113, 0.35);
        border-radius: 12px;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Pulsing green dot animation — restored */
    .pulsing-green {
        width: 10px;
        height: 10px;
        min-width: 10px;
        background-color: #22c55e;
        border-radius: 50%;
        display: inline-block;
        flex-shrink: 0;
        animation: pulse-green 2s infinite;
    }

    .status-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #1a5c1a;
        flex: 1;
        margin-left: 10px;
    }

    .live-tag {
        background: none;
        color: #1a5c1a;
        font-family: 'Inter Tight', sans-serif;
        font-weight: 700;
        font-size: 14px;
        padding: 0;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-list li {
        font-family: 'Inter Tight', sans-serif;
        font-size: 15px;
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #111;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Price */
    .price-section {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 25px;
    }

    .old-price {
        font-family: 'Inter Tight', sans-serif;
        font-size: 26px;
        color: #999;
        text-decoration: line-through;
        font-weight: 600;
    }

    .new-price {
        font-family: 'Inter Tight', sans-serif;
        font-size: 48px;
        color: #22c55e;
        font-weight: 800;
    }

    /* =========================================
       4. CTA BUTTON — mirrors desktop exactly
    ========================================= */
    .cta-button {
        background-color: #ff60cc;
        color: #000;
        border: none;
        border-radius: 14px;
        padding: 24px 20px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        box-shadow: 0 8px 0 #d946ef;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, background-color 0.3s;
        margin-bottom: 20px;
        width: 100%;
        text-decoration: none;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-button:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 20px rgba(217, 70, 239, 0.4), 0 8px 0 #d946ef;
        background-color: #ff80d5;
    }

    .cta-button:active {
        transform: translateY(4px);
        box-shadow: 0 4px 0 #d946ef;
        transition: transform 0.1s;
    }

    .cta-main-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 0;
        text-transform: uppercase;
        color: #000;
        display: block;
    }

    .cta-sub-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0;
        color: #000;
        display: block;
    }

    .guarantee-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        text-align: center;
        margin-top: 5px;
    }

    /* =========================================
       5. AVATAR (bottom of hero) — hidden on mobile
          (summary section has its own avatar)
    ========================================= */
    .hero-section>.avatar-wrapper {
        display: none;
    }

    .avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* =========================================
       6. MOBILE-ONLY SUMMARY SECTION
    ========================================= */
    .mobile-summary-section {
        background-color: black;
        padding: 0 var(--container-padding) 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-summary-avatar {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 30px;
        display: block;
    }

    .mobile-summary-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-summary-intro {
        font-family: 'Inter Tight', sans-serif;
        font-size: 22px;
        font-weight: 500;
        line-height: 1.45;
        color: white;
        margin-bottom: 40px;
        letter-spacing: 0;
    }

    .mobile-summary-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .mobile-summary-list li {
        font-family: 'Inter Tight', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 18px;
        text-align: center;
        letter-spacing: 0;
    }

    .mobile-summary-list li:last-child {
        margin-bottom: 0;
        font-size: 20px;
    }

    /* =========================================
       7. TESTIMONIALS SECTION (MOBILE SLIDER)
    ========================================= */
    .testimonials-section {
        background-color: #f5f5f0;
        padding: 50px 0 50px var(--container-padding);
        overflow: hidden;
    }

    .testimonials-title {
        font-family: 'Inter Tight', sans-serif;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 0;
        color: #111;
        margin-bottom: 30px;
        text-align: center;
        padding-right: var(--container-padding);
        /* balance the section's padding-left */
    }

    .testimonial-slider {
        overflow: visible;
    }

    .testimonial-track {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-right: 50px;
        scrollbar-width: none;
    }

    .testimonial-track::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 75vw;
        max-width: 300px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        scroll-snap-align: start;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        flex-shrink: 0;
    }

    .card-image-placeholder {
        width: 100%;
        height: 160px;
        background: linear-gradient(135deg, #d4c5f9 0%, #f9c5d1 50%, #c5e8f9 100%);
    }

    .card-content {
        padding: 16px;
    }

    .testimonial-card .stars {
        display: flex;
        gap: 3px;
        margin-bottom: 10px;
        color: #f5a623;
        font-size: 18px;
    }

    .testimonial-card .star-icon {
        width: 18px;
    }

    .review-title {
        font-family: 'Inter Tight', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #111;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .review-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 13px;
        color: #444;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .card-divider {
        border: none;
        border-top: 1px solid #eee;
        margin: 12px 0;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .reviewer-avatar {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 50%;
        background: #e8d5ff;
        color: #6b21a8;
        font-family: 'Inter Tight', sans-serif;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reviewer-details {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .reviewer-name {
        font-family: 'Inter Tight', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #111;
    }

    .reviewer-meta {
        font-family: 'Inter Tight', sans-serif;
        font-size: 12px;
        color: #888;
    }

    .verified-tag {
        font-family: 'Inter Tight', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #16a34a;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* Static dot — no animation */
    .verified-tag .dot {
        width: 7px;
        height: 7px;
        min-width: 7px;
        background-color: #22c55e;
        border-radius: 50%;
        display: inline-block;
        animation: none !important;
    }

    /* =========================================
       8. PROBLEMS SECTION (MOBILE)
    ========================================= */
    .problems-section {
        background-color: black;
        padding: 60px var(--container-padding);
        text-align: center;
    }

    .problems-section .tagline {
        font-family: 'Inter Tight', sans-serif;
        font-size: 14px;
        font-weight: 800;
        color: #ff60cc;
        /* pink tagline */
        letter-spacing: 1px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .problems-section .system-headline {
        font-family: 'Inter Tight', sans-serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.1;
        color: white;
        margin-bottom: 40px;
    }

    .problem-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .problem-card {
        background: #f3f4f6;
        /* light grey card */
        border-radius: 24px;
        padding: 30px 20px;
        text-align: center;
    }

    .problem-card .card-title {
        font-family: 'Inter Tight', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: black;
        margin-bottom: 15px;
        display: block;
    }

    .problem-card .card-desc {
        font-family: 'Inter Tight', sans-serif;
        font-size: 16px;
        /* updated to 16px */
        line-height: 1.5;
        color: #374151;
        margin: 0;
    }

    .problems-section .punchline {
        font-family: 'Inter Tight', sans-serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
        color: white;
        margin-bottom: 40px;
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .brush-underline {
        display: block;
        width: 180px;
        height: 4px;
        background: #ff60cc;
        margin: 15px auto 0;
        border-radius: 2px;
        position: relative;
    }

    /* Second underline for the "double" look */
    .brush-underline::after {
        content: '';
        position: absolute;
        top: 6px;
        left: -10px;
        width: 160px;
        height: 3px;
        background: #ff60cc;
        border-radius: 2px;
    }

    .problems-cta {
        margin-top: 30px;
        width: 100%;
        margin-bottom: 50px;
        /* space before text */
    }

    .story-text {
        display: block;
        /* enabled */
        text-align: center;
        color: white;
    }

    .story-text p {
        font-family: 'Inter Tight', sans-serif;
        font-size: 20px;
        /* requested size */
        line-height: 1.5;
        margin-bottom: 30px;
        color: white;
    }

    .highlight-green {
        background-color: #16a34a;
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        display: inline;
    }

    .story-text strong {
        font-weight: 700;
    }

    /* =========================================
       9. FEATURES SHOWCASE (MOBILE)
    ========================================= */
    .features-showcase {
        background-color: #f5f5f0;
        padding: 60px var(--container-padding);
        text-align: center;
    }

    .features-intro .system-headline {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 30px;
        color: black;
    }

    .benefits-list {
        list-style: none;
        padding: 0;
        margin: 0 auto 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .benefits-list li {
        font-family: 'Inter Tight', sans-serif;
        font-size: 20px;
        /* requested size */
        font-weight: 500;
        color: #374151;
    }

    .more-features-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 18px;
        color: #4b5563;
        margin-bottom: 40px;
    }

    .large-media-showcase {
        margin-bottom: 60px;
    }

    .media-placeholder.large {
        width: 100%;
        height: 200px;
        background: #e5e7eb;
        border-radius: 24px;
    }

    /* Feature Cards */
    .feature-card {
        display: flex;
        flex-direction: column;
        background: transparent;
        margin-bottom: 80px;
        padding: 40px 20px;
        border-radius: 32px;
        border: 1.5px solid rgba(0, 0, 0, 0.1);
        position: relative;
        text-align: left;
    }

    .feature-card.alternate {
        flex-direction: column;
        /* keep consistent on mobile */
    }

    .feature-number {
        position: absolute;
        top: -20px;
        /* position at the top center */
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: #ff60cc;
        /* pink circle */
        color: black;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Inter Tight', sans-serif;
        font-size: 18px;
        font-weight: 800;
        flex-shrink: 0;
        z-index: 5;
    }

    .feature-image {
        width: 100%;
        height: auto;
        margin-top: 25px;
        display: block;
    }

    /* Flatten content to allow reordering with media */
    .feature-content {
        display: contents;
    }

    .feature-tag {
        order: 1;
        font-family: 'Inter Tight', sans-serif;
        font-size: 16px;
        /* updated to 16px */
        font-weight: 600;
        /* updated to 600 */
        color: #374151;
        margin-bottom: 10px;
        text-transform: uppercase;
        text-align: left;
    }

    .feature-title {
        order: 2;
        font-family: 'Inter Tight', sans-serif;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.1;
        color: black;
        margin-bottom: 25px;
        text-align: left;
    }

    .feature-media {
        order: 3;
        width: 100%;
        margin-bottom: 25px;
    }

    .feature-video {
        width: 100%;
        height: auto;
        display: block;
    }

    .feature-media .media-placeholder {
        width: 100%;
        height: 220px;
        background: #e5e7eb;
        border-radius: 24px;
    }

    .feature-desc {
        order: 4;
        font-family: 'Inter Tight', sans-serif;
        font-size: 18px;
        /* increased to 18px */
        line-height: 1.5;
        color: #374151;
        margin-bottom: 25px;
        text-align: left;
        /* left aligned */
    }

    .feature-result {
        order: 5;
        text-align: left;
        /* left aligned */
    }

    .result-label {
        font-family: 'Inter Tight', sans-serif;
        font-size: 18px;
        /* increased to 18px */
        font-weight: 700;
        margin-bottom: 15px;
        color: black;
        text-align: left;
        /* left aligned */
    }

    .check-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        /* left aligned */
    }

    .check-list li {
        font-family: 'Inter Tight', sans-serif;
        font-size: 18px;
        /* increased to 18px */
        color: #374151;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
        /* keep text left-aligned within the centered item */
    }

    .check-list li strong {
        color: black;
    }

    /* Footer Showcase CTA */
    .footer-branding {
        margin-top: 60px !important;
        padding: 0 20px;
    }

    .footer-headline {
        font-family: 'Inter Tight', sans-serif;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.2;
        color: black !important;
        /* Ensure it's dark text on light background */
        text-align: center;
        margin-bottom: 30px;
    }

    .showcase-cta {
        text-align: center;
        padding: 0 20px 30px;
        /* reduced bottom padding from 60px to 30px */
    }

    .showcase-cta .cta-button {
        width: 100%;
    }

    /* =========================================
       10. REVIEWS SECTION (MOBILE)
    ========================================= */
    .reviews-section {
        background-color: black;
        padding: 60px var(--container-padding);
        text-align: center;
        color: white;
    }

    .reviews-heading-block {
        margin-bottom: 40px;
    }

    .reviews-number {
        font-family: 'Inter Tight', sans-serif;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 0;
        line-height: 1;
        color: white;
    }

    .reviews-title {
        font-family: 'Inter Tight', sans-serif;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.1;
        color: white;
    }

    .reviews-rating-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .stars-gold {
        color: #fbbf24;
        /* gold stars */
        font-size: 24px;
        letter-spacing: 2px;
    }

    .rating-text {
        font-family: 'Inter Tight', sans-serif;
        font-size: 14px;
        color: #9ca3af;
        font-weight: 500;
    }

    /* Vertical Stack for Review Images */
    .reviews-track-mobile {
        display: flex;
        flex-direction: column;
        /* Stack vertically */
        gap: 20px;
        padding: 20px var(--container-padding) 60px;
    }

    .review-img-card {
        width: 100%;
        /* Full width */
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }

    /* Hide desktop reviews grid on mobile */
    .reviews-grid {
        display: none;
    }

    /* =========================================
       11. COMPARISON SECTION (MOBILE)
    ========================================= */
    .comparison-section {
        padding: 60px var(--container-padding);
        background: #f5f5f0;
        color: #111; /* Default dark text for this section */
    }

    .chaos-pains-block {
        text-align: center;
        margin-bottom: 60px;
    }

    .chaos-pains-block .system-headline {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 25px;
        text-align: center;
        color: #111;
        font-weight: 700;
    }

    .chaos-pains-subtitle {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 40px;
        text-align: center;
        color: #4b5563;
        font-weight: 400;
    }

    .chaos-pains-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .pain-img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .chaos-pains-footer {
        text-align: center;
    }

    .chaos-pains-footer p {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: center;
        color: #111;
        font-weight: 400;
    }

    /* From Chaos to Clarity Heading & Intro */
    .comparison-section .system-headline {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 25px;
        text-align: center;
        color: #111;
        font-weight: 700;
    }

    .comparison-intro {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 50px;
        text-align: center;
        color: #111;
        font-weight: 400;
    }

    .comparison-table {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #f5f5f0;
        border-top: 1px solid rgba(0,0,0,0.1);
        width: calc(100% + (var(--container-padding) * 2));
        margin-left: calc(-1 * var(--container-padding));
        position: relative; /* for the divider line */
    }

    .comparison-table::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: rgba(0,0,0,0.1);
        z-index: 1;
    }

    .comparison-header {
        padding: 25px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        position: relative;
        z-index: 2;
    }

    .comparison-header strong {
        font-size: 13px;
        letter-spacing: 0.5px;
        color: #111;
        text-transform: uppercase;
    }

    .comparison-icon {
        font-size: 24px;
    }

    .comparison-row {
        display: contents;
    }

    .comparison-cell {
        padding: 20px 10px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center; /* Horizontal centering */
        gap: 10px;
        font-size: 14px; /* Increased to 14px */
        font-weight: 500;
        color: #111;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .system-cell {
        background-color: rgba(255, 255, 255, 0.5); /* Highlighted column as on desktop */
    }

    .comparison-header {
        padding: 25px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        position: relative;
        z-index: 2;
    }

    .comparison-header strong {
        font-size: 13px;
        letter-spacing: 0.5px;
        color: #111;
        text-transform: uppercase;
    }

    .comparison-icon {
        font-size: 24px;
    }

    .comparison-row {
        display: contents;
    }

    .comparison-cell {
        padding: 20px 10px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: #111;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .system-cell {
        border-left: 1px solid rgba(0,0,0,0.1);
    }

    /* =========================================
       12. REFUND SECTION (MOBILE)
    ========================================= */
    .refund-section {
        padding: 60px var(--container-padding);
        background-color: black;
        color: white;
        text-align: center;
    }

    .refund-section .system-headline {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 25px;
        color: white !important;
    }

    .refund-intro {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
    }

    .guarantee-badge-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 40px 0;
        width: 100%;
    }

    .guarantee-pill {
        background: white;
        color: black;
        padding: 15px 20px;
        border-radius: 16px;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        flex: 1;
        max-width: 280px;
    }

    .laurel-wreath {
        width: 40px;
        height: auto;
        flex-shrink: 0;
    }

    .refund-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .refund-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 18px;
        line-height: 1.4;
        text-align: left;
        max-width: 100%;
    }

    .check {
        font-size: 20px;
        flex-shrink: 0;
    }

    /* =========================================
       13. AUTHOR SECTION (WHO AM I?) (MOBILE)
    ========================================= */
    .author-section {
        background-color: black;
        padding: 60px var(--container-padding) 30px; /* Reduced bottom padding */
        color: white;
        text-align: center;
    }

    .author-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px; /* Reduced gap slightly for tighter feel */
    }

    .author-right {
        display: contents; /* Allows children to be siblings of author-left for ordering */
    }

    .author-left {
        width: 100%;
        max-width: 300px;
        order: 3; /* Image comes third */
        margin: 10px 0 20px;
    }

    .author-img {
        width: 100%;
        height: auto;
        border-radius: 30px;
        display: block;
    }

    .author-tag {
        font-size: 18px; /* Increased for impact */
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0; /* No margin as in screenshot */
        color: var(--color-pink) !important; /* Vivid pink as in screenshot */
        font-weight: 800; /* Heavier weight */
        opacity: 1;
        order: 1;
    }

    .author-title {
        font-size: 38px; /* Larger headline */
        line-height: 1.05;
        margin-top: 0; /* Remove top margin */
        margin-bottom: 25px;
        font-weight: 800; /* Extra bold */
        color: white !important;
        order: 2;
    }

    .author-bio {
        order: 4; /* Bio comes last */
        text-align: center;
    }

    .author-bio p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.9);
    }

    /* =========================================
       14. P.S. SECTION (MOBILE)
    ========================================= */
    .ps-section {
        background-color: black;
        padding: 10px var(--container-padding) 60px; /* Reduced top padding */
        color: white;
        text-align: center;
    }

    .ps-divider {
        display: block;
        border: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin: 20px auto 30px; /* Reduced top margin further */
        width: 100%;
    }

    .ps-title {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 40px;
        color: white !important;
    }

    .ps-text {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
    }

    .ps-cta-container {
        margin-top: 40px;
        width: 100%;
    }

    .ps-cta-container .cta-button {
        width: 100%;
    }

    /* =========================================
       15. FAQ SECTION (MOBILE)
    ========================================= */
    .faq-section {
        background-color: #f2eee3 !important;
        padding: 60px var(--container-padding) !important;
        color: #000 !important;
    }

    .faq-title {
        font-size: 32px !important;
        margin-bottom: 40px !important;
        color: #111 !important;
        font-weight: 600 !important;
        text-align: center !important;
    }

    .faq-container {
        max-width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .faq-item {
        border: 1px solid rgba(0,0,0,0.2) !important;
        border-radius: 12px !important;
        background-color: transparent !important;
        overflow: hidden !important;
    }

    .faq-question {
        width: 100% !important;
        padding: 25px 20px !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important; /* Force left alignment for long questions */
        color: #111 !important;
        background: none !important;
        border: none !important;
    }

    .faq-icon {
        font-size: 24px !important;
        font-weight: 300 !important;
    }

    .faq-answer {
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        padding: 0 20px !important;
        font-size: 16px !important;
        color: #333 !important;
        transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease !important;
    }

    .faq-item.active .faq-answer {
        max-height: 500px !important;
        opacity: 1 !important;
        padding: 0 20px 25px !important;
    }

    /* =========================================
       16. FOOTER (MOBILE)
    ========================================= */
    .main-footer {
        padding: 60px 0 40px;
        background-color: #000;
        text-align: center;
    }

    .footer-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin: 0 auto 30px;
        display: block;
    }

    .footer-logo {
        font-size: 32px;
        font-weight: 400;
        letter-spacing: 4px;
        color: white !important;
        margin-bottom: 35px;
        text-transform: uppercase;
    }

    .footer-links {
        display: flex;
        flex-direction: row !important; /* Row as in screenshot */
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
        list-style: none;
        padding: 0;
    }

    .footer-links a {
        font-size: 15px;
        color: #999;
        text-decoration: none;
    }

    .footer-contact-info {
        margin-bottom: 35px;
    }

    .footer-contact-info a {
        font-size: 18px;
        color: white;
        text-decoration: none;
    }

    .copyright {
        font-size: 12px;
        color: #555;
        line-height: 1.5;
        max-width: 80%;
        margin: 0 auto;
    }

    /* Fix Checkout Modal on Mobile */
    .checkout-modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 999999;
        background: rgba(0, 0, 0, 0.9);
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .checkout-modal.active {
        display: flex !important;
    }

    .checkout-modal-inner {
        width: 100%;
        height: 100%;
        height: 100dvh;
        max-width: none;
        border-radius: 0;
        overflow: hidden;
        position: relative;
    }

    .checkout-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

    .checkout-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000000;
        width: 44px;
        height: 44px;
        background: #000;
        border: 2px solid #fff;
        color: #fff;
        border-radius: 50%;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    }
}