:root {
    --primary-color: #FF8DA1;
    --secondary-color: #FFB347;
    --bg-color: #FFF9F9;
    --card-bg: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --success-green: #4CAF50;
    --font-family: 'Outfit', 'Inter', sans-serif;
    --shadow: 0 10px 30px rgba(255, 141, 161, 0.15);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    border-radius: var(--radius);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    /* More standard, less 'pill' */
    box-shadow: 0 4px 15px rgba(255, 141, 161, 0.4);
    transition: transform 0.2s;
    will-change: transform;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 141, 161, 0.6);
}

.highlight {
    color: var(--primary-color);
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* html, body block removed (moved to top) */

.urgency-bar {
    background: #F48FB1;
    background: linear-gradient(90deg, #F48FB1, #FFB74D);
    background: #F06292;
    background: linear-gradient(90deg, #EC407A, #F48FB1);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(236, 64, 122, 0.3);
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.hero p.subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.video-container {
    max-width: 400px;
    margin: 0 auto 2rem;
    position: relative;
}

.video-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-width: 360px;
    margin: 0 auto;
    /* overflow: hidden; removed to let player handle bounds */
    box-shadow: var(--shadow);
    background: transparent;
    contain: content;
}

.video-wrapper vturb-smartplayer,
.video-wrapper iframe {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid var(--primary-color);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.categories {
    padding: 60px 20px;
    background-color: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width:768px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.review-card {
    background: white;
    padding: 0;
    /* Remove padding to let image fill */
    border-radius: 12px;
    overflow: hidden;
    /* Ensure image corners respect radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    min-width: 300px;
    /* Ensure card has width */
}

.review-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    /* Let card radius handle it */
}


.review-card:hover {
    transform: translateY(-5px);
}

.review-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s, border-color 0.3s;
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 141, 161, 0.15);
    border-color: rgba(255, 141, 161, 0.3);
}

.cat-icon {
    font-size: 2.2rem;
    background: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: none;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.category-card:hover .cat-icon {
    transform: scale(1.1) rotate(0deg);
}

.cat-icon.color-pink {
    color: #FF5E78;
    background-color: #FFF0F5;
}

.cat-icon.color-orange {
    color: #FF9800;
    background-color: #FFF8E1;
}

.cat-icon.color-purple {
    color: #9C27B0;
    background-color: #F3E5F5;
}

.category-card h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: #444;
}

.categories-footer-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #880E4F;
}

.benefits {
    padding: 80px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width:768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 25px;
    align-items: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: white;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Vibrant Icons Variants */
.benefit-icon.color-time {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    /* Sunset Orange */
    box-shadow: 0 10px 25px rgba(255, 94, 98, 0.4);
}

.benefit-icon.color-zap {
    background: linear-gradient(135deg, #FDC830, #F37335);
    /* Citrus Peel */
    box-shadow: 0 10px 25px rgba(243, 115, 53, 0.4);
}

.benefit-icon.color-folder {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    /* Electric Blue */
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
}

.benefit-icon.color-print {
    background: linear-gradient(135deg, #DA22FF, #9733EE);
    /* Neon Purple */
    box-shadow: 0 10px 25px rgba(151, 51, 238, 0.4);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile optimizations for Benefit Cards */
@media (max-width: 480px) {
    .benefit-card {
        padding: 20px;
        gap: 15px;
    }

    .benefit-icon {
        min-width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }
}


.delivery-info {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    /* Vertical Layout by default for clarity */
    align-items: center;
    /* Centered Text */
    gap: 8px;
    /* Clean spacing between lines */
    text-align: center;
    margin-top: 10px;
}

.delivery-info span {
    display: block;
    /* Ensure ease of reading */
}

/* Hide separators now that we have vertical layout */
.delivery-info .sep {
    display: none;
}


.plans {
    padding: 80px 20px;
    background: #fff;
}

.plans-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 950px;
    margin: 60px auto 0;
    align-items: center;
}

@media (min-width:768px) {
    .plans-grid {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}

.plan-card {
    flex: 1;
    width: 100%;
    background: var(--bg-color);
    padding: 50px 30px;
    border-radius: 30px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.plan-card.premium {
    background: white;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 20px 50px rgba(255, 179, 71, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

@media (max-width:768px) {
    .plan-card.premium {
        transform: scale(1);
        margin-top: 10px;
    }
}

.best-seller-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.4);
}

.plan-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.price-container {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ddd;
}

.old-price {
    color: #555555;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin: 15px 0;
    letter-spacing: -1px;
}

.current-price span {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
}

.payment-type {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.save-badge {
    display: inline-block;
    background: #E8F5E9;
    color: #1B5E20;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.features-list {
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #444;
}

.feature-check {
    color: white;
    background: var(--success-green);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bonus-items li {
    color: var(--primary-color);
    font-weight: 700;
}

.reviews {
    padding: 100px 20px;
}

.faq {
    background-color: var(--bg-color);
    padding: 60px 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-icon i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-item.active {
    box-shadow: 0 10px 25px rgba(255, 141, 161, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #FFF0F6;
    border-radius: 50%;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    color: #555;
    flex-shrink: 0;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.nav-btn.prev {
    margin-right: -25px;
}

.nav-btn.next {
    margin-left: -25px;
}

@media (max-width:768px) {
    .nav-btn {
        display: none;
    }
}

.review-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-name {
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
}

.swipe-hint {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    display: none;
}

@media (max-width:768px) {
    .swipe-hint {
        display: block;
        margin-top: -20px;
    }
}

.kit-content {
    padding: 80px 20px;
    background-color: white;
}

.kit-list-card {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFF5F7 100%);
    padding: 50px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 141, 161, 0.15);
    box-shadow: 0 10px 40px rgba(255, 141, 161, 0.05);
    transition: transform 0.3s ease;
}

.kit-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 141, 161, 0.1);
}

.kit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width:768px) {
    .kit-list {
        grid-template-columns: 1fr 1fr;
        gap: 25px 50px;
    }
}

.kit-list li {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: #555;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.kit-list li:hover {
    border-color: rgba(255, 141, 161, 0.3);
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.kit-check {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: -2px;
    /* Visual alignment */
    font-size: 1.1rem;
}

/* Cycle colors for dynamic look */
/* Cycle colors for dynamic look (Icon + Border Accent) */
.kit-list li:nth-child(5n+1) .kit-check {
    background: linear-gradient(135deg, #FF9A9E, #FECFEF);
    color: #C2185B;
    box-shadow: 0 4px 10px rgba(255, 154, 158, 0.4);
}

.kit-list li:nth-child(5n+1) {
    border-left: 4px solid #FF9A9E;
}

.kit-list li:nth-child(5n+2) .kit-check {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    color: #6A1B9A;
    box-shadow: 0 4px 10px rgba(161, 140, 209, 0.4);
}

.kit-list li:nth-child(5n+2) {
    border-left: 4px solid #a18cd1;
}

.kit-list li:nth-child(5n+3) .kit-check {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
    color: #00796B;
    box-shadow: 0 4px 10px rgba(132, 250, 176, 0.4);
}

.kit-list li:nth-child(5n+3) {
    border-left: 4px solid #84fab0;
}

.kit-list li:nth-child(5n+4) .kit-check {
    background: linear-gradient(135deg, #fccb90, #d57eeb);
    color: #E65100;
    box-shadow: 0 4px 10px rgba(252, 203, 144, 0.4);
}

.kit-list li:nth-child(5n+4) {
    border-left: 4px solid #fccb90;
}

.kit-list li:nth-child(5n+5) .kit-check {
    background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
    color: #304FFE;
    box-shadow: 0 4px 10px rgba(224, 195, 252, 0.4);
}

.kit-list li:nth-child(5n+5) {
    border-left: 4px solid #e0c3fc;
}

.warranty {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #FFF9F9 0%, #fff 100%);
}

.warranty-shield {
    width: 100px;
    height: 100px;
    background: var(--success-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.warranty h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(45deg, #333, #666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.warranty-text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.7;
}

.risk-card {
    background: #FFF3E0;
    border: 2px dashed #FFB74D;
    color: #8E2805;
    padding: 30px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.risk-card p {
    color: inherit;
    margin: 0;
}

footer {
    text-align: center;
    padding: 40px;
    background: #fff;
    font-size: 0.85rem;
    color: #333333;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

#notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Value Anchor Section - Added via AntiGravity */
.value-anchor-section {
    padding: 0 20px 40px;
    background-color: #FFF5F7;
    /* Matches 'How it works' bg for continuity, or can be white/transparent */
    /* Using transparent/white to bridge 'How it Works' (pink) and 'Plans' (white) nicely */
    background: linear-gradient(to bottom, #FFF5F7 50%, #fff 50%);
}

.value-anchor-card {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 2px dashed rgba(255, 141, 161, 0.3);
    text-align: center;
}

.value-anchor-title {
    font-size: 1.2rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 20px;
}

.value-checklist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin: 0 auto 25px;
    list-style: none;
    max-width: 700px;
}

.value-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.value-checklist i {
    color: var(--success-green);
    flex-shrink: 0;
}

.value-total-line {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 25px 0 10px;
    color: var(--text-dark);
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.value-total-line .strike {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-right: 8px;
    font-weight: 600;
}

.value-total-line .highlight-val {
    color: var(--primary-color);
}

.value-microcopy {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .value-checklist {
        flex-direction: column;
        align-items: flex-start;
        display: inline-flex;
        /* Centers the column block */
    }

    .value-total-line {
        font-size: 1.3rem;
    }
}

.modal-overlay.active {
    opacity: 1;
}

.modal-card {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-align: center;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    z-index: 10002;
    line-height: 1;
}

.modal-header {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    padding: 30px 20px 20px;
    color: white;
}

.modal-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.modal-body {
    padding: 25px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.offer-box {
    background: #FFF3E0;
    border: 2px dashed #FFB74D;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.offer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 15px 25px;
    /* Row Gap / Column Gap */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.02);
}

.footer-links a:hover {
    color: var(--primary-color);
    background: rgba(255, 141, 161, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .footer-links a {
        display: block;
        width: 100%;
        max-width: 280px;
        text-align: center;
        background: white;
        border: 1px solid #eee;
        padding: 10px;
    }
}

.offer-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.offer-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.offer-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D81B60;
}

.offer-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.scarcity-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D32F2F;
    margin-bottom: 20px;
}

.btn-modal-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    text-transform: none;
    background: linear-gradient(45deg, #FF4081, #FF9800);
    box-shadow: 0 10px 25px rgba(255, 64, 129, 0.4);
    margin-bottom: 15px;
}

.pulsing {
    animation: modalPulse 2s infinite;
}

@keyframes modalPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 64, 129, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
    }
}

.btn-modal-secondary {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.btn-modal-secondary:hover {
    color: #555;
}

#notification-container {
    z-index: 9999;
}

.sales-notification {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    border-left: 4px solid var(--success-green);
}

.sales-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.notification-icon {
    background: var(--success-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content {
    font-size: 0.9rem;
    color: #333;
}

.notification-title {
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.notification-body {
    margin-bottom: 2px;
    line-height: 1.3;
}

.notification-body strong {
    color: var(--primary-color);
}

.notification-time {
    font-size: 0.75rem;
    color: #999;
}

@media (max-width:480px) {
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    #notification-container {
        bottom: 20px;
        left: 10px;
        right: 10px;
        align-items: center;
    }

    .sales-notification {
        width: 100%;
        max-width: 100%;
    }

    section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .hero {
        padding-top: 40px !important;
    }
}

.benefit-card,
.plan-card,
.review-card,
.category-card {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hidden-mobile {
    display: none;
}

@media (min-width:768px) {
    .hidden-mobile {
        display: inline;
    }
}

/* --- MODERN ANIMATIONS (Performance First) --- */

/* Base Reveal Class - Opacity 0 and WILL CHANGE for GPU */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* State: Visible */
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Variant: Scale In (Good for badges/images) */
.reveal.scale-in {
    transform: scale(0.9);
}

.reveal.scale-in.visible {
    transform: scale(1);
}

/* Variant: Fade In only (No movement) */
.reveal.fade-in {
    transform: none;
}

/* Stagger Delays (Cascata) for grids */
.reveal.delay-100 {
    transition-delay: 0.1s;
}

.reveal.delay-200 {
    transition-delay: 0.2s;
}

.reveal.delay-300 {
    transition-delay: 0.3s;
}

.reveal.delay-400 {
    transition-delay: 0.4s;
}

/* Micro-interactions: Pulse on CTA */
@keyframes softPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 141, 161, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(255, 141, 161, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 141, 161, 0.4);
    }
}

.btn.pulse-animation {
    animation: softPulse 2s infinite ease-in-out;
    will-change: transform, box-shadow;
}

/* Accessibility: No motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Trust Badges - Added via AntiGravity */
.trust-container {
    margin-top: 15px;
    width: 100%;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    /* Soft minimal pill design as requested */
    background: rgba(0, 0, 0, 0.04);
    padding: 6px 12px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.2s;
}

.trust-badge-item:hover {
    background: rgba(0, 0, 0, 0.08);
}

.trust-badge-item i {
    color: var(--primary-color);
    stroke-width: 2.5px;
}

.trust-footer {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .trust-badges {
        gap: 8px;
    }

    .trust-badge-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Modal Bullets & Extra Text - Added via AntiGravity */
.modal-bullets {
    text-align: left;
    margin-bottom: 20px;
    padding: 0 10px;
    display: inline-block;
}

.modal-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 6px;
}

.offer-small-text {
    font-size: 0.8rem;
    color: #777;
    margin-top: 8px;
    font-weight: 400;
}

/* Hero Tag - Added via AntiGravity */
.hero-tag {
    display: inline-block;
    background-color: #FFF0F5;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 141, 161, 0.2);
    box-shadow: 0 4px 10px rgba(255, 141, 161, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works Section - Added via AntiGravity */
.how-it-works {
    padding: 80px 20px;
    background-color: #FFF5F7;
    /* Subtle pink tint */
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 30px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.step-card {
    background: white;
    padding: 30px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 141, 161, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 141, 161, 0.15);
}

.step-header {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 141, 161, 0.4);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #FFF0F5;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    /* Removed solid bg to use gradients inside specific child rules */
}

/* Dynamic Step Colors & Animation */
.step-card:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
    color: #C2185B;
    box-shadow: 0 8px 20px rgba(255, 154, 158, 0.4);
    animation: float-step 3s ease-in-out infinite;
}

.step-card:nth-child(1) .step-number {
    background: #FF9A9E;
    box-shadow: 0 4px 10px rgba(255, 154, 158, 0.5);
}

.step-card:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #E65100;
    box-shadow: 0 8px 20px rgba(253, 160, 133, 0.4);
    animation: float-step 3s ease-in-out infinite 1s;
    /* delay */
}

.step-card:nth-child(2) .step-number {
    background: #fda085;
    box-shadow: 0 4px 10px rgba(253, 160, 133, 0.5);
}

.step-card:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: #6A1B9A;
    box-shadow: 0 8px 20px rgba(161, 140, 209, 0.4);
    animation: float-step 3s ease-in-out infinite 2s;
    /* delay */
}

.step-card:nth-child(3) .step-number {
    background: #a18cd1;
    box-shadow: 0 4px 10px rgba(161, 140, 209, 0.5);
}

@keyframes float-step {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.step-card:hover .step-icon {
    /* Override animation on hover for interactiveness if wanted, or let it float */
    transform: scale(1.1) translateY(-6px);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.steps-footer-text {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-top: 40px;
    font-weight: 500;
    background: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .how-it-works {
        padding: 50px 20px;
    }

    .step-card {
        padding: 25px 20px;
    }
}

/* --- Kit Section Revamp (Added via AntiGravity) --- */
.kit-section-micro {
    text-align: center;
    color: var(--text-light);
    margin-top: -2.5rem;
    margin-bottom: 4rem;
    font-size: 1rem;
    font-weight: 500;
}

.kit-groups-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.kit-group-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    /* Orange for distinct headers */
    color: #D81B60;
    /* Or a darker pink/primary variant */
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kit-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .kit-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.kit-item-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.kit-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 141, 161, 0.15);
    border-color: rgba(255, 141, 161, 0.2);
}

.kit-item-icon {
    min-width: 44px;
    height: 44px;
    background: #FFF0F5;
    /* Light Pink */
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kit-item-info h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.kit-item-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Highlight for Special Collections */
.kit-group.special-group .kit-item-card {
    border: 1px solid rgba(255, 179, 71, 0.3);
    /* secondary color tint */
    background: #FFFBF5;
    /* very light orange tint */
}

.kit-group.special-group .kit-item-icon {
    background: #FFF8E1;
    /* Light Orange */
    color: #F57C00;
}

/* Badge 'Mais Procurado' */
.tag-popular {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    color: white;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(255, 94, 98, 0.3);
}

.kit-bottom-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.02);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

.kit-cta-block {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kit-cta-sub {
    font-size: 0.9rem;
    color: #888;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Categories Revamp (Added via AntiGravity) --- */
.cat-desc {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
    line-height: 1.4;
    font-weight: 400;
}

.section-micro-check {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 600;
    margin-top: -2.0rem;
    margin-bottom: 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.categories-proof-line {
    text-align: center;
    margin-top: 30px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

/* Category CTA Block */
.cat-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* --- Value Anchor Revamp (Added via AntiGravity) --- */
.value-anchor-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
}

.value-anchor-card {
    background: white;
    max-width: 650px;
    margin: 0 auto;
    padding: 40px;
    border: 2px dashed #FF8DA1;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.value-anchor-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.value-anchor-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.value-checklist {
    list-style: none;
    text-align: left;
    margin: 0 auto 30px;
    display: inline-block;
}

@media (min-width: 768px) {
    .value-checklist {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 30px;
        text-align: left;
    }
}

.value-checklist li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    margin-bottom: 10px;
}

.value-checklist li i {
    color: var(--success-green);
    flex-shrink: 0;
}

.value-price-block {
    margin-bottom: 30px;
    background: #FFF9F9;
    padding: 20px;
    border-radius: 12px;
}

.value-price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.value-price-small {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.value-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-cta-micro {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
}

/* --- CRITICAL IOS FIXES --- */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

img,
video,
iframe,
canvas,
svg {
    max-width: 100%;
}

/* Ensure grids don't overflow */
@media (max-width: 480px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: hidden;
        /* Local clip as backup */
    }

    .benefit-card,
    .category-card {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .row,
    .col,
    .grid {
        max-width: 100% !important;
    }
}