/* 
    DESIGN SYSTEM & VARIABLES 
*/
:root {
    --primary-color: #f97316; /* Vibrant Orange */
    --primary-hover: #ea580c;
    --second-color: #fb923c;
    --dark-bg: #0f172a; /* Slate 900 */
    --light-bg: #f8fafc; /* Slate 50 */
    --text-dark: #cbd5e1; /* Slate 300 */
    --text-light: #334155; /* Slate 700 */
    --text-white: #ffffff;
    --heading-font: 'Outfit', sans-serif;
    --body-font: 'Inter', sans-serif;
    --whatsapp-color: #25d366;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--body-font);
    color: var(--text-light);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 70px; /* Space for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.grid { display: grid; gap: 2rem; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); color: var(--text-dark); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--second-color));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* TOP NAVIGATION BAR */
.top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background-color: var(--dark-bg);
    z-index: 3000;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-logo span {
    color: white;
}
.nav-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: none;
}
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--primary-color);
}
/* MOBILE NAV */
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        border-top: 1px solid #334155;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .nav-links.active {
        max-height: 300px;
        padding-bottom: 1rem;
    }
    .nav-links ul {
        flex-direction: column;
        gap: 0;
    }
    .nav-links li {
        border-bottom: 1px solid #334155;
    }
    .nav-links a {
        padding: 1.2rem;
        font-size: 1.1rem;
        justify-content: center;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    filter: grayscale(20%);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.45));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-content .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: #e2e8f0;
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* REALITY SECTION */
.reality {
    padding: 6rem 0;
    background-color: var(--dark-bg);
    color: var(--text-dark);
}

.transition-dark-light {
    transition: background-color 1s ease, color 1s ease;
}

.reality.in-view {
    background-color: var(--light-bg);
    color: var(--text-light);
}

.reality h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.reality.in-view h2 {
    color: var(--text-light);
}

.reality-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
.reality.in-view .highlight-box {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #e2e8f0;
}

/* LEARNING SECTION */
.learning {
    padding: 6rem 0;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 4rem;
}

.flip-card {
    background-color: transparent;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.flip-card-front {
    background-color: white;
    color: var(--text-light);
    border: 1px solid #e2e8f0;
}

.flip-card-front i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--dark-bg), #1e293b);
    color: white;
    transform: rotateY(180deg);
}

/* OFFER SECTION */
.offer {
    padding: 6rem 0;
    overflow: hidden;
}
.pattern-bg {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}
.offer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 3rem;
}
@media (max-width: 768px) {
    .offer-grid { grid-template-columns: 1fr; }
}

.text-green { color: var(--whatsapp-color); }

.bonuses-list ul {
    list-style: none;
}
.bonuses-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.bonuses-list i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.mockup-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.0));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}
.mockup-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.mockup-placeholder span {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
}

.slide-in-left {
    opacity: 0; transform: translateX(-50px);
    transition: all 0.8s ease;
}
.slide-in-right {
    opacity: 0; transform: translateX(50px);
    transition: all 0.8s ease;
}
.slide-in-left.visible, .slide-in-right.visible {
    opacity: 1; transform: translateX(0);
}

/* AUTHORITY SECTION */
.authority {
    padding: 6rem 0;
}
.counters-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 5rem;
}
.counter-box h3 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.counter-box p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 3rem;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* GALLERY SECTION */
.gallery {
    padding: 6rem 0;
}
/* SHORTS CAROUSEL */
.shorts-carousel {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: auto;
    width: 100%;
    max-width: 100vw;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 2rem;
    margin-top: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #e2e8f0;
}
.shorts-carousel::-webkit-scrollbar {
    height: 8px;
}
.shorts-carousel::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
.shorts-carousel::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}
.short-item {
    flex: 0 0 auto;
    width: 320px;
    height: 568px; /* Standard 9:16 Shorts ratio */
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: var(--dark-bg);
}
.short-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 1024px) {
    .shorts-carousel {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (max-width: 768px) {
    .short-item {
        width: 80vw; /* Peek next card on mobile */
        height: min(80vw * 1.77, 70vh); /* Maintain aspect ratio */
    }
}

/* DATES SECTION */
.dates {
    padding: 6rem 0;
    overflow: hidden;
}
.pattern-bg-alt {
    background-color: var(--dark-bg);
}
.pattern-bg-alt h2, .pattern-bg-alt h3 {
    color: white;
}
.pattern-bg-alt .date-item h3 {
    color: var(--text-dark); /* Override for the white cards */
}
.scarcity-note {
    color: #ef4444;
    font-weight: 600;
    margin: 1rem 0 3rem;
}

/* CERTIFICATES MARQUEE */
.certificates {
    padding-top: 6rem;
    padding-bottom: 2rem; /* Reduced so pricing is closer */
    overflow-x: hidden;
}
.pb-0 { padding-bottom: 0 !important; }

.marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Breakout to full screen width */
    display: flex;
    overflow: hidden;
    padding: 2rem 0;
}
.marquee-fade {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}
.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}
.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left-continuous 20s linear infinite;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    width: 280px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
    border: 5px solid white;
    cursor: pointer;
}
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.marquee-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll-left-continuous {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); } /* Moves left by exactly half the track width + gap */
}
.marquee-track-reverse {
    animation: scroll-right-continuous 25s linear infinite;
}
.marquee-track-reverse:hover {
    animation-play-state: paused;
}
@keyframes scroll-right-continuous {
    0% { transform: translateX(calc(-50% - 0.75rem)); }
    100% { transform: translateX(0); }
}
.dates-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.date-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.text-red { color: #ef4444; }
.date-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.badge-recommended {
    display: inline-block;
    font-size: 0.8rem;
    background: #fef3c7;
    color: #d97706;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-weight: 600;
}
.badge-sold-out {
    display: inline-block;
    font-size: 0.8rem;
    background: #fee2e2;
    color: #b91c1c;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-weight: 600;
}
.badge-spots {
    display: inline-block;
    font-size: 0.8rem;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-weight: 600;
}
.badge-spots.urgent {
    background: #ffedd5;
    color: #c2410c;
    animation: pulse-urgent 1.5s infinite;
}
.past-date {
    opacity: 0.6;
    text-decoration: line-through;
}
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.75rem; display: inline-block; }
@keyframes pulse-urgent {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
    from { box-shadow: 0 0 5px -2px #fbbf24; }
    to { box-shadow: 0 0 15px 2px #fbbf24; }
}
.date-item.visible i {
    animation: bounce 1s cubic-bezier(0.28, 0.84, 0.42, 1);
}
@keyframes bounce {
    0% { transform: translateY(-30px); opacity: 0; }
    50% { transform: translateY(0); opacity: 1; }
    75% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* PRICING SECTION */
.pricing { padding: 6rem 0; }
.guarantee-stamp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: #ecfdf5;
    border: 2px dashed #10b981;
    color: #065f46;
    padding: 2rem;
    border-radius: 20px;
    margin: 0 auto 5rem;
    max-width: 800px;
    opacity: 0;
    transform: scale(3) rotate(-20deg);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.guarantee-stamp.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.guarantee-stamp i {
    font-size: 5rem;
    color: #10b981;
}

.section-title-uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}
.section-title-uppercase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.pricing-cards {
    grid-template-columns: 1fr 1.2fr;
    max-width: 900px;
    margin: 4rem auto;
    align-items: center;
}
@media (max-width: 768px) {
    .pricing-cards { grid-template-columns: 1fr; }
}
.pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.pricing-card.highlighted {
    background: linear-gradient(135deg, #090d16 0%, #0f172a 100%);
    color: white;
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.25);
    z-index: 2;
}
.pricing-card.highlighted:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.35);
}
.tag {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.price {
    font-size: 3rem;
    font-family: var(--heading-font);
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}
.pricing-card.highlighted .price {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #f97316 0%, #fdba74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
    margin: 1.5rem 0;
}
.old-price {
    color: #94a3b8;
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    margin: 1rem 0;
}
.old-price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #ef4444;
    transform: rotate(-10deg);
}
.pricing-features {
    list-style: none;
    margin-top: 2rem;
    display: inline-block;
    text-align: left;
}
.pricing-features li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}
.mt-4 { margin-top: 1.5rem; }
.w-full { width: 100%; display: block; text-align: center; }

.plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 1.5rem;
}
.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.1);
    border-color: var(--second-color);
}
.plan-card span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.05rem;
}
.plan-card .discount-badge {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    background: #fff7ed;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    border: 1px solid #ffedd5;
}

/* FINAL CTA */
.final-cta {
    padding: 8rem 0;
}
.btn-large {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    margin-top: 2rem;
}

/* FAQ SECTION */
.faq {
    padding: 6rem 0;
    background: white;
}
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto;
}
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.faq-question:hover, .faq-question.active {
    color: var(--primary-color);
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-dark);
    color: #475569;
}
.text-primary { color: var(--primary-color); }

/* NO EXCUSES SECTION */
.no-excuses {
    padding: 6rem 0;
    border-top: 2px solid #ef4444; /* Aggressive red border */
}
.warning-icon {
    display: inline-block;
    padding: 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    margin-bottom: 2rem;
}
.excuses-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.excuse-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-left: 4px solid #ef4444;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.excuse-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 10px 30px rgba(0,0,0,0.3);
    border-left-color: var(--primary-color);
}
.excuse-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #334155;
}
.excuse-header h5 {
    color: #cbd5e1;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}
.excuse-body p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Add a shaking animation for the aggressive button */
@keyframes shake {
    0%, 100% {transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {transform: translateX(-5px);}
    20%, 40%, 60%, 80% {transform: translateX(5px);}
}
.btn-shake:hover {
    animation: shake 0.5s;
}

/* SITE FOOTER */
.site-footer {
    padding: 3rem 0;
    font-size: 0.95rem;
    color: #94a3b8;
    background-color: var(--dark-bg);
}
.footer-top {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.footer-lang { display: flex; align-items: center; color: white; }
.footer-lang p {
    display: flex;
    align-items: center;
}
.footer-lang i { font-size: 1.5rem; margin-right: 0.5rem; }
.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}
.footer-socials a {
    color: white;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}
.footer-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05); /* Added slight top border if needed, wait the image had none, I will remove */
    padding-top: 1rem;
    border: none;
}
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 2rem;}
    .footer-lang, .footer-lang p { justify-content: center; }
    .footer-socials { justify-content: center; }
    .footer-bottom { text-align: center; }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 2.5rem 1.25rem !important;
    }
    .pricing-card.highlighted .price {
        font-size: 2.3rem !important;
        margin: 1rem 0 !important;
    }
    .old-price {
        font-size: 1.8rem !important;
    }
    .pricing-features {
        display: inline-block !important;
        text-align: left !important;
        padding-left: 0 !important;
    }
    .pricing-features li {
        font-size: 0.95rem !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    .pricing-features li i {
        font-size: 1.2rem !important;
    }
}

