/* ========================================
   CHIA JELLY RECIPE - MOBILE-FIRST CSS
   ======================================== */

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: #10B981;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 44px;
    }
}

/* ==================== NAVIGATION ==================== */
.navigation {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navigation.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    width: 100%;
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    color: #1f2937;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #f3f4f6;
    color: #10B981;
    transform: translateX(5px);
}

.nav-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white !important;
    padding: 15px 25px !important;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    .nav-links a {
        color: white;
        padding: 10px 15px;
    }
    
    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
        color: white;
        transform: translateY(-2px);
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 20px 60px;
    }
    
    .nav-logo {
        font-size: 22px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(16, 185, 129, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    color: #065f46;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
    min-height: 56px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.hero-cta:active {
    transform: scale(0.98);
}

.cta-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-icon {
    transform: translateX(5px);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.trust-item {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #065f46;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-container {
        flex-direction: row;
        gap: 60px;
    }
    
    .hero-image {
        flex: 1;
        max-width: 500px;
    }
    
    .hero-content {
        flex: 1;
        text-align: left;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 52px;
    }
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose {
    padding: 60px 0;
    background: white;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.badge-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.badge-card[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.badge-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.badge-icon {
    margin-bottom: 20px;
}

.badge-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.badge-title {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
}

.badge-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

@media (min-width: 576px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 992px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .badge-card {
        padding: 40px 25px;
    }
}

/* ==================== WHAT IS SECTION ==================== */
.what-is {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.what-is-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.what-is-content {
    order: 2;
}

.content-text {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.what-is-image {
    order: 1;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

@media (min-width: 768px) {
    .what-is-grid {
        flex-direction: row;
        gap: 60px;
    }
    
    .what-is-content {
        flex: 1;
        order: 1;
    }
    
    .what-is-image {
        flex: 1;
        order: 2;
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .what-is {
        padding: 100px 0;
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    padding: 60px 0;
    background: white;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.accordion-item[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item:hover {
    border-color: #10B981;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    min-height: 56px;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f9fafb;
}

.accordion-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
}

.accordion-arrow {
    font-size: 16px;
    color: #10B981;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 20px 20px 60px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}

@media (min-width: 768px) {
    .accordion-header {
        padding: 25px;
    }
    
    .accordion-title {
        font-size: 18px;
    }
    
    .accordion-content p {
        padding: 0 25px 25px 75px;
        font-size: 16px;
    }
}

/* ==================== REVIEWS SECTION ==================== */
.reviews {
    padding: 60px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.review-card[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f59e0b;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.review-location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.review-stars {
    font-size: 16px;
    color: #f59e0b;
}

.review-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

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

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.countdown-timer {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.timer-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 900;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 70px;
}

.timer-text {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.timer-colon {
    font-size: 40px;
}

@media (min-width: 768px) {
    .timer-label {
        font-size: 20px;
    }
    
    .timer-display {
        font-size: 48px;
    }
    
    .timer-value {
        padding: 15px 30px;
        min-width: 100px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
}

.pricing-card[data-animate].visible {
    opacity: 1;
    transform: scale(1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.pricing-card.popular {
    border: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.5);
    white-space: nowrap;
}

.pricing-label {
    font-size: 14px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 10px;
}

.pricing-bottles {
    font-size: 24px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 5px;
}

.pricing-supply {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.pricing-price {
    margin: 20px 0;
}

.price-per {
    font-size: 36px;
    font-weight: 900;
    color: #dc2626;
}

.price-bottle {
    display: block;
    font-size: 14px;
    color: #6b7280;
}

.pricing-total {
    margin: 15px 0;
}

.total-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 18px;
    margin-right: 10px;
}

.total-new {
    font-size: 28px;
    font-weight: 900;
    color: #10B981;
}

.pricing-bonuses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.bonus-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-cta {
    display: block;
    margin: 20px auto;
    min-height: 50px;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: scale(1.05);
}

.pricing-cta:active {
    transform: scale(0.98);
}

.payment-logos {
    margin-top: 15px;
}

.rating-display {
    text-align: center;
}

.rating-display img {
    margin: 0 auto 10px;
}

.rating-text {
    color: #6b7280;
    font-size: 14px;
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.popular {
        grid-column: auto;
        max-width: none;
    }
}

/* ==================== BONUS SECTION ==================== */
.bonus {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.bonus-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bonus-card[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.bonus-image {
    width: 100%;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-image img {
    transform: scale(1.05);
}

.bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    padding: 20px 20px 10px;
}

.bonus-description {
    padding: 0 20px 15px;
    color: #6b7280;
    line-height: 1.7;
}

.bonus-value {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 18px;
}

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

/* ==================== INGREDIENTS SECTION ==================== */
.ingredients {
    padding: 60px 0;
    background: white;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.ingredient-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #10B981;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.ingredient-card[data-animate].visible {
    opacity: 1;
    transform: translateX(0);
}

.ingredient-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
    border-left-width: 6px;
}

.ingredient-name {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
}

.ingredient-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 12px;
}

.ingredient-benefits {
    font-size: 14px;
    color: #10B981;
    line-height: 1.6;
}

.ingredient-benefits strong {
    color: #065f46;
}

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

/* ==================== SCIENTIFIC SECTION ==================== */
.scientific {
    padding: 60px 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.scientific-content {
    max-width: 900px;
    margin: 0 auto;
}

.evidence-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #8b5cf6;
    opacity: 0;
    transform: translateY(20px);
}

.evidence-section[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.evidence-title {
    font-size: 20px;
    font-weight: 700;
    color: #6b21a8;
    margin-bottom: 15px;
}

.evidence-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.evidence-reference {
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
}

@media (min-width: 768px) {
    .evidence-section {
        padding: 30px;
    }
    
    .evidence-title {
        font-size: 22px;
    }
    
    .evidence-text {
        font-size: 16px;
    }
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.guarantee-image {
    max-width: 350px;
    width: 100%;
}

.guarantee-content {
    flex: 1;
}

.guarantee-point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
}

.guarantee-point[data-animate].visible {
    opacity: 1;
    transform: translateX(0);
}

.point-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.point-content {
    flex: 1;
}

.point-title {
    font-size: 20px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 10px;
}

.point-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .guarantee-grid {
        flex-direction: row;
        gap: 60px;
    }
    
    .guarantee-image {
        flex: 1;
        max-width: 400px;
    }
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    padding: 60px 0;
    background: white;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.benefit-item[data-animate].visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

.benefit-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .benefit-item {
        padding: 30px;
    }
    
    .benefit-icon {
        font-size: 42px;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    min-height: 56px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.faq-arrow {
    font-size: 16px;
    color: #10B981;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 20px 20px 60px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 15px;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 25px;
    }
    
    .faq-text {
        font-size: 18px;
    }
    
    .faq-answer p {
        padding: 0 25px 25px 70px;
        font-size: 16px;
    }
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
}

.final-cta-content[data-animate].visible {
    opacity: 1;
    transform: scale(1);
}

.final-cta-image {
    max-width: 350px;
    width: 100%;
}

@keyframes pulseAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulseAnimation 2s ease-in-out infinite;
}

.final-cta-text {
    flex: 1;
}

.final-cta-title {
    font-size: 28px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.2;
}

.final-pricing {
    margin: 25px 0;
}

.final-price-old {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.final-price-old span {
    text-decoration: line-through;
}

.final-price-new {
    font-size: 36px;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 30px;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    min-height: 60px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.final-cta-button:active {
    transform: scale(0.98);
}

.final-guarantee {
    margin-top: 25px;
    font-size: 14px;
    color: #6b7280;
}

.final-guarantee p {
    margin: 8px 0;
}

@media (min-width: 768px) {
    .final-cta-content {
        flex-direction: row;
        text-align: left;
    }
    
    .final-cta-title {
        font-size: 36px;
    }
    
    .final-price-new {
        font-size: 44px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    text-align: center;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #10B981;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10B981;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.legal-link {
    color: #d1d5db;
}

.legal-link:hover {
    color: #10B981;
}

.link-separator {
    color: #6b7280;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #10B981;
    transform: translateY(-3px);
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    font-size: 14px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-legal-links {
        justify-content: flex-start;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* ==================== PURCHASE POPUP ==================== */
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: translateX(-400px);
    transition: transform 0.3s ease;
    z-index: 998;
    max-width: 320px;
}

.purchase-popup.show {
    transform: translateX(0);
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-icon {
    font-size: 32px;
}

.popup-text {
    flex: 1;
    font-size: 14px;
}

.popup-name {
    color: #10B981;
    display: block;
    margin-bottom: 3px;
}

.popup-message {
    color: #6b7280;
}

@media (max-width: 480px) {
    .purchase-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* ==================== EXIT POPUP ==================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.exit-popup.show {
    display: block;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.exit-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6b7280;
    z-index: 10;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: #10B981;
    color: white;
}

.exit-popup-body {
    padding: 40px 30px;
}

.exit-popup-title {
    font-size: 24px;
    font-weight: 900;
    color: #dc2626;
    text-align: center;
    margin-bottom: 10px;
}

.exit-popup-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
}

.exit-popup-offer {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
}

.exit-offer-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.exit-offer-details {
    text-align: left;
}

.exit-price-old {
    font-size: 20px;
    color: #9ca3af;
    text-decoration: line-through;
}

.exit-price-new {
    font-size: 36px;
    font-weight: 900;
    color: #dc2626;
    margin: 5px 0;
}

.exit-savings {
    font-size: 16px;
    color: #10B981;
    font-weight: 700;
}

.exit-popup-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.exit-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.exit-popup-features {
    text-align: center;
}

.exit-feature {
    font-size: 14px;
    color: #6b7280;
    margin: 8px 0;
}

@media (max-width: 480px) {
    .exit-popup-content {
        width: 95%;
    }
    
    .exit-popup-body {
        padding: 30px 20px;
    }
    
    .exit-popup-title {
        font-size: 20px;
    }
    
    .exit-popup-offer {
        flex-direction: column;
        text-align: center;
    }
    
    .exit-offer-details {
        text-align: center;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.hidden {
    display: none !important;
}

.visible {
    visibility: visible !important;
}

/* Prevent text selection on protected content */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection on input fields */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ==================== LOADING ANIMATION ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==================== RESPONSIVE IMAGES ==================== */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navigation,
    .scroll-to-top,
    .purchase-popup,
    .exit-popup {
        display: none !important;
    }
}
