/* --- Core Variables (V2 - High Conversion) --- */
:root {
    /* Colors */
    --primary: #FF9900; /* Amazon Strong Orange */
    --primary-dark: #cc7a00;
    --primary-light: #ffb84d;
    --accent: #232F3E; /* Amazon Navy Dark */
    
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #131A22;
    
    --text-main: #0F1111;
    --text-muted: #565959;
    --text-inverse: #FFFFFF;

    --success: #007600; /* Amazon green */
    --danger: #B12704;  /* Amazon red */

    /* Typography */
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base size */
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    /* Prevent text selection to feel more app-like on mobile */
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: currentColor;
    flex-shrink: 0;
}

.container {
    padding: 0 1.25rem;
    max-width: 600px; /* Constrained width focused on mobile/tablet view */
    margin: 0 auto;
}

.bg-light { background-color: var(--bg-light); }

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 14px rgba(255, 153, 0, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-block { width: 100%; }
.btn-massive {
    padding: 1.25rem;
    font-size: 1.25rem;
}

.btn-pulse {
    animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
    0% { transform: scale(1); box-shadow: 0 4px 14px rgba(255, 153, 0, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 8px 20px rgba(255, 153, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 14px rgba(255, 153, 0, 0.4); }
}

/* --- Trust Nav --- */
.trust-nav {
    background: var(--bg-dark);
    color: var(--text-inverse);
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 600;
}
.trust-nav .icon { color: var(--success); font-size: 1rem; }

/* --- 1. Hero & Pricing --- */
.hero-section {
    padding: 2.5rem 0 3rem;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    text-align: center;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(35, 47, 62, 0.1);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.hero-title .highlight {
    color: var(--primary);
}

.hero-inline-logo {
    width: auto;
    height: 1.4em;
    vertical-align: -0.4em;
    padding: 0 0.2rem;
    position: relative;
    top: 10px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* The Core Focus: Hero Pricing Card */
.hero-pricing-card {
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.urgency-strip {
    background: var(--danger);
    color: #fff;
    padding: 0.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    animation: flash 1s infinite;
}
@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.pricing-content {
    padding: 2rem 1.5rem;
}

.value-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.strike {
    text-decoration: line-through;
    color: var(--danger);
}

.price-offer {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.price-offer .currency {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.savings-badge {
    display: inline-block;
    background: #e6f2e6;
    color: var(--success);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px dashed var(--success);
}

.secure-text {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}
.secure-text .icon { color: var(--success); }

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.hero-trust .stars {
    color: var(--primary);
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
}
.hero-trust .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}
.trust-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- 2. Mobile Features List --- */
.value-stack-section {
    padding: 3rem 0;
}
.mobile-features-list {
    display:flex;
    flex-direction: column;
    gap: 1rem;
}
.m-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: left;
    border: 1px solid #E2E8F0;
}
.highlight-card {
    border: 2px solid var(--primary-light);
    background: #fffdf5;
}
.m-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--accent);
    font-size: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-icon .icon {
    width: 1.4rem;
    height: 1.4rem;
}
.m-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}
.m-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.m-worth {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 700;
}

/* --- Brand Logo --- */
.brand-logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}
.main-brand-logo {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    /* Adding a subtle glow similar to the orange theme if needed, but a clean drop shadow works best */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

/* --- 3. Urgency & Proof & Scrollable Reviews --- */
.urgency-proof-section {
    padding: 3rem 0;
    text-align: center;
}
.reviews-slider {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-card {
    background: #F0F4F8;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.proof-card .stars {
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.proof-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.user-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    flex-shrink: 0;
}

.user-inline h4 {
    font-size: 0.95rem;
    color: var(--text-main);
}

.urgency-box {
    background: #FEF2F2;
    border: 2px solid #FECACA;
    padding: 1.5rem;
    border-radius: 12px;
}
.urgency-box h3 {
    color: var(--danger);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.urgency-box p {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* --- V1 Detailed Features --- */
.detailed-features {
    padding: 3rem 0;
}
.features-list-v1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature-item-v1 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-marker-v1 {
    width: 28px;
    height: 28px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.feature-text-v1 h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}
.feature-text-v1 p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- About Us Section --- */
.about-us-section {
    padding: 3rem 0;
    background: #fff;
}
.about-content {
    text-align: left;
}
.about-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.awards-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
}
.award-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.platform-scroll-container {
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    padding: 1rem 0;
}

.platform-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin: 0 auto;
}

.platform-logo {
    width: auto;
    object-fit: contain;
}

.platform-logo.amazon-global {
    height: 40px;
}

.platform-logo.walmart {
    height: 50px;
}

.platform-logo.seller-central {
    height: 75px;
}

.platform-logo.ads-badge {
    height: 90px;
}
@media (min-width: 481px) {
    .awards-gallery {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .award-img {
        max-width: calc(50% - 1rem);
    }
}

/* --- 4. FAQ Section --- */
.faq-section {
    padding: 3rem 0 4rem; /* Extra bottom padding */
}
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #E2E8F0;
}
.faq-question {
    padding: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question .icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s;
}
.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
    opacity: 0;
}
/* Active FAQ JS Class */
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 200px;
    opacity: 1;
}

/* --- Sticky Mobile CTA --- */
.mobile-cta-spacer {
    height: 90px; /* Space so content isn't hidden behind sticky nav */
}

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.985);
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
}
.s-offer {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.1;
}
.s-save {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 700;
}

.btn-sticky {
    padding: 0.8rem 1.25rem;
    font-size: 1.05rem;
    border-radius: 30px; /* Pill shape */
}

@supports (content-visibility: auto) {
    .deferred-section {
        content-visibility: auto;
        contain-intrinsic-size: 1px 960px;
    }
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-dark);
    color: #fff;
    font-size: 0.85rem;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--text-inverse);
    text-decoration: none;
    opacity: 0.8;
}
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.site-footer .disclaimer {
    opacity: 0.5;
    font-size: 0.75rem;
}

/* --- Desktop/Tablet Overrides --- */
@media (min-width: 601px) {
    .container {
        padding: 0 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .price-offer {
        font-size: 5rem;
    }
    /* Hide sticky CTA on desktop if desired, or keep it. Let's keep it but center it. */
    .sticky-mobile-cta {
        justify-content: center;
        gap: 2rem;
        padding: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    .btn-pulse,
    .pulse-dot,
    .faq-answer,
    .faq-question .icon {
        animation: none !important;
        transition: none !important;
    }
}

/* --- Thank You Page Styles --- */
.thankyou-section {
    padding: 5rem 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.thankyou-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.thankyou-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 450px;
    margin-bottom: 3rem;
}

.next-steps-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.next-steps-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.next-steps-card h3 i { color: var(--primary); }

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    width: 24px;
    height: 24px;
    background: var(--bg-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.step-text strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 0.1rem;
}
