/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5632;
    --secondary-color: #ff6b35;
    --accent-color: #ffa726;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* Skip Link for Accessibility & SEO */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Shopify Style */
.hero {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.price-highlight {
    background: var(--white);
    padding: 25px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.savings {
    background: var(--success-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: var(--white);
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.5);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 22px 60px;
    width: 100%;
    max-width: 500px;
}

.cta-button.pulse {
    animation: pulse 2s infinite, fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Social Proof - Shopify Style */
.social-proof {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.customer-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.customer-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
    box-shadow: var(--shadow-md);
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.more-customers {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -15px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.social-proof .stats {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.social-proof .rating {
    color: var(--text-light);
    font-size: 1rem;
}

.social-proof .rating .stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Product Showcase - Shopify Style */
.product-showcase {
    padding: 80px 20px;
    background: var(--background-light);
}

.product-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.showcase-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.showcase-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    font-size: 1.3rem;
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 20px;
    background: var(--background-light);
}

.what-you-get h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.content-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-card ul {
    list-style: none;
}

.content-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.content-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Testimonials - Shopify Style */
.testimonials {
    padding: 80px 20px;
    background: var(--background-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial .stars {
    font-size: 1rem;
    color: #fbbf24;
    margin-bottom: 5px;
}

.testimonial .author {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.testimonial .verified {
    color: var(--success-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial .quote {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-image {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}

.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Pricing - Shopify Product Page Style */
.pricing {
    padding: 80px 20px;
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.limited-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.pricing h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-box {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.pricing-left {
    position: relative;
}

.pricing-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.pricing-right {
    padding: 50px 40px;
}

.price-box {
    background: var(--background-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price-row .label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.old-price {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-row.special .label {
    color: var(--text-dark);
    font-weight: 700;
}

.new-price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 15px;
}

.whats-included {
    margin-bottom: 30px;
}

.whats-included h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-features li strong {
    color: var(--text-dark);
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
}

.guarantee-box {
    display: flex;
    gap: 15px;
    align-items: start;
    background: #f0fdf4;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid #86efac;
    margin-top: 25px;
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-box h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.guarantee-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* FAQ */
.faq {
    padding: 80px 20px;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 30px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Final CTA - Shopify Style */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a5632 0%, #0f3d23 100%);
    color: var(--white);
    text-align: center;
}

.timer-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.timer-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.final-price {
    margin: 30px 0;
}

.final-old-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 15px;
}

.final-new-price {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
}

.final-guarantee {
    margin-top: 25px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-box {
        gap: 30px;
    }
    
    .pricing-right {
        padding: 40px 30px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 40px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .hero-image {
        margin: 30px 0;
    }
    
    .price-highlight {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .savings {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 12px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 16px 40px;
    }
    
    .social-proof {
        padding: 30px 20px;
    }
    
    .customer-avatars img,
    .more-customers {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }
    
    .social-proof .stats {
        font-size: 1.1rem;
    }
    
    .social-proof .rating {
        font-size: 0.9rem;
    }
    
    .product-showcase,
    .benefits,
    .what-you-get,
    .testimonials,
    .pricing,
    .faq,
    .final-cta {
        padding: 60px 20px;
    }
    
    .benefits h2,
    .what-you-get h2,
    .testimonials h2,
    .pricing h2,
    .faq h2,
    .product-showcase h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .showcase-item h3 {
        font-size: 1.1rem;
        padding: 20px 15px 15px;
    }
    
    .benefits-grid,
    .content-grid {
        gap: 30px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-card .icon {
        font-size: 3rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .content-card {
        padding: 25px;
    }
    
    .content-card h3 {
        font-size: 1.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial {
        padding: 25px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-box {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pricing-left {
        max-height: 300px;
    }
    
    .pricing-right {
        padding: 30px 25px;
    }
    
    .price-box {
        padding: 20px;
    }
    
    .old-price {
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .whats-included h3 {
        font-size: 1.1rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .cta-button.large {
        font-size: 1.1rem;
        padding: 18px 40px;
    }
    
    .payment-icons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .guarantee-box {
        padding: 18px;
    }
    
    .guarantee-box h4 {
        font-size: 1rem;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-subtitle {
        font-size: 1rem;
    }
    
    .final-old-price {
        font-size: 1.5rem;
    }
    
    .final-new-price {
        font-size: 2.5rem;
    }
    
    .final-guarantee {
        font-size: 0.9rem;
    }
    
    footer {
        padding: 30px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .price-highlight {
        padding: 15px;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .savings {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 14px 30px;
        width: 100%;
    }
    
    .cta-button.large {
        font-size: 1rem;
        padding: 16px 30px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .content-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits h2,
    .what-you-get h2,
    .testimonials h2,
    .pricing h2,
    .faq h2,
    .product-showcase h2 {
        font-size: 1.6rem;
    }
    
    .benefit-card,
    .content-card,
    .testimonial,
    .faq-item {
        padding: 20px;
    }
    
    .pricing-right {
        padding: 25px 20px;
    }
    
    .new-price {
        font-size: 1.8rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding-left: 25px;
    }
    
    .payment-icons img {
        height: 18px !important;
    }
    
    .final-cta h2 {
        font-size: 1.75rem;
    }
    
    .final-new-price {
        font-size: 2rem;
    }
    
    .timer-box {
        padding: 10px 20px;
    }
    
    .timer-label {
        font-size: 0.9rem;
    }
}