:root {
    --primary-color: #00be56;
    /* Green from original */
    --primary-dark: #009643;
    --accent-color: #ed1d3d;
    /* Red from original */
    --text-color: #1e293b;
    --text-light: #64748b;
    --background-color: #f8fafc;
    --white: #ffffff;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: var(--primary-color);
}

.text-red {
    color: var(--accent-color);
}

.text-white {
    color: var(--white);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.8);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 190, 86, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 190, 86, 0.6);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-large small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: none;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 190, 86, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 190, 86, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 190, 86, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 190, 86, 0);
    }
}

/* Top Warning Bar */
.top-warning-bar {
    background-color: #d90429;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    position: relative;
}

/* Hero Section */
.hero-section {
    background-color: #f0fdf4;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='30' font-size='30' fill-opacity='0.05'%3E🐶%3C/text%3E%3Ctext x='70' y='80' font-size='30' fill-opacity='0.05'%3E🐱%3C/text%3E%3Ctext x='50' y='40' font-size='20' fill-opacity='0.05'%3E🐾%3C/text%3E%3Ctext x='90' y='20' font-size='20' fill-opacity='0.05'%3E🦴%3C/text%3E%3Ctext x='20' y='90' font-size='20' fill-opacity='0.05'%3E🎾%3C/text%3E%3C/svg%3E");
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 190, 86, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-title .highlight {
    background: linear-gradient(120deg, transparent 60%, rgba(0, 190, 86, 0.25) 60%);
    display: inline;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-trust {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-trust i {
    color: var(--primary-color);
    margin-right: 5px;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    /* Slightly larger to fit well */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.25);
    background: #000;
    /* Fallback */
    /* Optional: Keep the subtle 3D tilt if desired, or remove for clean video look. 
       Let's keep it relatively flat but lifted for video clarity. */
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mobile-video-insert {
    display: none;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-divider {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--background-color);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-top-color: var(--primary-color);
    background: white;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(0, 190, 86, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* Bonus Section - Liquid Glass Design */
.bonus-section {
    background: radial-gradient(circle at 10% 20%, rgb(0, 96, 43) 0%, rgb(15, 23, 42) 40%, rgb(15, 23, 42) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative Blobs for Glass Effect */
.bonus-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 190, 86, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
}

.bonus-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 29, 61, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(80px);
}

.bonus-section .container {
    position: relative;
    z-index: 2;
}

.badge-bonus {
    background: rgba(237, 29, 61, 0.2);
    border: 1px solid rgba(237, 29, 61, 0.5);
    color: #ff9aa2;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(237, 29, 61, 0.2);
}

.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.bonus-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.check-icon {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.bonus-item span {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.bonus-item strong {
    color: white;
    display: block;
    margin-bottom: 4px;
    font-size: 1.15rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
}

.offer-card {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 190, 86, 0.2);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: scale(1.02);
}

.offer-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 20px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offer-price {
    padding: 30px 20px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f7fdf9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.price-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.price-prefix {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.price-amount {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.05);
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    text-align: left;
}

.offer-features li {
    padding: 15px 40px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-color);
    transition: background 0.2s;
}

.offer-features li:hover {
    background-color: #f8fafc;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(0, 190, 86, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Button wrapper for padding */
.offer-card .btn-large {
    width: calc(100% - 60px);
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 190, 86, 0.5);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 25px 0 30px;
    color: var(--text-light);
    font-size: 0.85rem;
    background: #f8fafc;
    padding: 15px;
    border-top: 1px solid #e2e8f0;
}

.payment-methods img {
    height: 25px;
    opacity: 0.7;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.accordion {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    /* Subtle Lock Pattern - Increased Visibility */
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='10' y='30' font-size='24' fill-opacity='0.08'%3E🔒%3C/text%3E%3Ctext x='50' y='70' font-size='24' fill-opacity='0.08'%3E🛡️%3C/text%3E%3C/svg%3E");
    position: relative;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.guarantee-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.guarantee-image {
    display: flex;
    justify-content: center;
}

.guarantee-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    /* Hide the desktop video image container on mobile */
    .hero-image {
        display: none;
    }

    /* Show the mobile specific video insert */
    .mobile-video-insert {
        display: block !important;
        margin: 10px auto 25px;
        width: 100%;
        max-width: 350px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    /* Fix lateral scroll caused by animations or wide elements */
    section,
    header,
    footer {
        overflow-x: hidden;
        width: 100%;
    }

    /* Benefits Grid Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Guarantee Section Mobile */
    .guarantee-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .guarantee-image {
        order: 1;
    }

    .guarantee-content {
        order: 2;
    }
}