/* Google Fonts carregado via HTML link tag para melhor performance */

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Clean Light Mode - Italian Tricolor)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-raw: 0, 0%, 100%;         /* Pure White #FFFFFF */
    --color-bg: hsl(var(--color-bg-raw));
    --color-bg-card-raw: 140, 10%, 98%;  /* Soft off-white / light cream gray */
    --color-bg-card: rgba(255, 255, 255, 0.85);
    
    --color-primary-raw: 0, 77%, 52%;    /* Vibrant Tomato Red #E32626 */
    --color-primary: hsl(var(--color-primary-raw));
    --color-primary-glow: rgba(227, 38, 38, 0.15);
    
    --color-secondary-raw: 150, 75%, 28%; /* Rich Basil Green #008C45 */
    --color-secondary: hsl(var(--color-secondary-raw));
    --color-secondary-glow: rgba(0, 140, 69, 0.15);
    
    --color-accent-raw: 45, 76%, 48%;   /* Olive Oil Gold #B8860B */
    --color-accent: hsl(var(--color-accent-raw));
    --color-accent-glow: rgba(184, 134, 11, 0.15);

    --color-text-primary: #1A1D1A;       /* Deep Charcoal for high contrast */
    --color-text-muted: #5E655F;         /* Muted Slate Gray */
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Italiana', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Soft, Clean Ambient Background Glows */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    will-change: transform;
}

body::before {
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, var(--color-primary), transparent 70%);
}

body::after {
    top: 45%;
    right: -10%;
    background: radial-gradient(circle, var(--color-secondary), transparent 70%);
}

.ambient-light-bottom {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: 20%;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.04;
    background: radial-gradient(circle, var(--color-accent), transparent 70%);
}

/* Typography Scales */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700; /* Bolder and much more legible */
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    font-weight: 400;
    color: var(--color-text-muted);
}

strong {
    font-weight: 700;
    color: var(--color-text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: clamp(50px, 7vw, 90px) 0;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Light Glass Card Definition */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.glass-card:hover {
    border-color: rgba(0, 140, 69, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   TOP BAR (Tricolor Dynamic Date)
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, #f5fcf8, #fbf5f5);
    border-bottom: 2px solid var(--color-secondary);
    color: var(--color-text-primary);
    text-align: center;
    padding: 12px 16px;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    white-space: nowrap;
}

.top-bar-text span {
    color: var(--color-secondary);
    font-weight: 800;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding-top: clamp(30px, 5vw, 60px);
    padding-bottom: clamp(40px, 6vw, 80px);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 140, 69, 0.05);
    border: 1px solid rgba(0, 140, 69, 0.12);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary-glow);
}

.hero h1 {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 5.2vw, 4rem);
    line-height: 1.15;
    font-weight: 800; /* Extra bold weight for maximum legibility */
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.hero h1 span.highlight {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.trust-badge svg {
    color: var(--color-secondary);
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   BUTTONS (Premium Tricolor Glowing CTA)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(14px, 3vw, 20px) clamp(24px, 5vw, 44px);
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--color-primary) 0%, #C71F1F 100%);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(227, 38, 38, 0.22);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s var(--transition-smooth);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(227, 38, 38, 0.3), 0 0 15px rgba(227, 38, 38, 0.2);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
}

.btn-glow {
    position: absolute;
    width: 80px;
    height: 100%;
    top: 0;
    left: -100px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite linear;
}

/* ==========================================================================
   CAROUSEL SYSTEM (Light Theme Snap Carousel)
   ========================================================================== */
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--color-text-muted);
}

.carousel-outer {
    position: relative;
    margin: 0 -24px;
    padding: 0 24px;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 16px 0 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.carousel-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    min-width: 280px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

@media (max-width: 968px) {
    .carousel-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .carousel-card {
        flex: 0 0 85%;
    }
}

.carousel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 140, 69, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #F4F6F3;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--transition-smooth);
}

.carousel-card:hover .card-img {
    transform: scale(1.06);
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 140, 69, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.card-content p {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* Carousel Control Buttons (Clean Light Mode) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #FFFFFF;
    box-shadow: 0 0 15px var(--color-secondary-glow);
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

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

/* ==========================================================================
   CATEGORIES GRID (Clean Cards)
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.category-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 140, 69, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 140, 69, 0.18);
    box-shadow: 0 10px 25px rgba(0, 140, 69, 0.04);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(0, 140, 69, 0.05);
    border: 1px solid rgba(0, 140, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon-wrapper {
    background: var(--color-secondary);
    color: #FFFFFF;
    box-shadow: 0 0 12px rgba(0, 140, 69, 0.2);
}

.category-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-body);
    color: var(--color-text-primary);
}

.category-info p {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    border-color: rgba(0, 140, 69, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--color-accent);
    margin-bottom: 16px;
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--color-text-primary);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
}

.user-details h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.user-details span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SPECIAL BONUS SECTION (Red-Accented Border)
   ========================================================================== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.bonus-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bonus-card:hover {
    border-color: rgba(227, 38, 38, 0.18);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 38, 38, 0.05);
}

.bonus-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    background-color: #F4F6F3;
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

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

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 140, 69, 0.15);
}

.bonus-number {
    width: 44px;
    height: 44px;
    background: rgba(184, 134, 11, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.12);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bonus-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.bonus-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ==========================================================================
   OFFER / CHECKOUT BOX (Light Premium Red Box)
   ========================================================================== */
.offer-box {
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 35px rgba(227, 38, 38, 0.06);
    padding: clamp(32px, 6vw, 54px);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFD 100%);
    position: relative;
}

.offer-expiry {
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 8px 24px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(227, 38, 38, 0.2);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.included-list {
    list-style: none;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--color-text-primary);
}

.included-list li svg {
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 4px;
}

.included-list li.bonus-item {
    color: var(--color-secondary);
    font-weight: 700;
    margin-top: 18px;
}

.included-list li.bonus-item svg {
    color: var(--color-secondary);
}

.pricing-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 140, 69, 0.03);
    border: 1px solid rgba(0, 140, 69, 0.06);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
}

.price-old {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    font-weight: 800;
}

.price-main {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 6vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
    margin: 8px 0;
}

.price-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.price-installments {
    font-size: 1.15rem;
    color: var(--color-secondary);
    font-weight: 800;
}

.offer-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.offer-cta-container .btn {
    width: 100%;
    max-width: 500px;
}

/* Pricing Plans Selection */
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.plan-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: var(--color-border-hover);
}

.plan-card.featured-plan {
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 25px rgba(227, 38, 38, 0.05);
}

.plan-card.featured-plan:hover {
    box-shadow: 0 15px 35px rgba(227, 38, 38, 0.12);
}

.plan-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--color-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(227, 38, 38, 0.2);
}

.plan-title {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.plan-divider {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: 16px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.plan-features li {
    margin-bottom: 10px;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--color-text-primary);
    line-height: 1.4;
}

.plan-features li .check-icon {
    color: var(--color-secondary);
    font-weight: bold;
    flex-shrink: 0;
}

.plan-features li .cross-icon {
    color: var(--color-text-muted);
    opacity: 0.5;
    flex-shrink: 0;
}

.plan-price-old {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
}

.plan-price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 4px 0;
    line-height: 1;
}

.plan-card.featured-plan .plan-price-new {
    color: var(--color-primary);
}

.plan-price-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}



/* ==========================================================================
   GUARANTEE SECTION (Soft Tricolor Gradient Card)
   ========================================================================== */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #FCFDFB 0%, #F5FAF7 100%);
    border: 1px solid rgba(0, 140, 69, 0.06);
    box-shadow: 0 10px 30px rgba(0, 140, 69, 0.02);
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

.guarantee-badge-container {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge-container svg {
    width: 100%;
    height: 100%;
    color: var(--color-secondary);
    filter: drop-shadow(0 4px 10px rgba(0, 140, 69, 0.15));
}

.guarantee-badge-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 15px rgba(184, 134, 11, 0.25));
}

.guarantee-content h3 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.guarantee-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ SECTION (Clean Accordion)
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(0, 140, 69, 0.12);
    background: rgba(0, 140, 69, 0.01);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    padding-right: 16px;
    color: var(--color-text-primary);
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 24px;
}

.faq-answer-inner {
    padding-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Active FAQ State */
.faq-item.active {
    border-color: rgba(0, 140, 69, 0.18);
    background: rgba(0, 140, 69, 0.02);
}

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

.faq-item.active .faq-answer {
    padding: 0 24px;
}

/* ==========================================================================
   FOOTER (Light Gray/Cream Clean Background)
   ========================================================================== */
.footer-cta {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(0, 140, 69, 0.02) 100%);
    position: relative;
    border-top: 1px solid var(--color-border);
}

.footer-main {
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    background: #FAFBF9;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-primary);
    letter-spacing: 0.05em;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    max-width: 600px;
    line-height: 1.5;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(227, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 38, 38, 0);
    }
}

@keyframes shine {
    0% { left: -100px; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation classes triggered by JS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
