/* RESET & BASE */
:root {
    --bg-pure-white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-light: #5A5A5A;
    
    /* Vibrant modern palette */
    --accent-color: #FB3600;
    --accent-glow: rgba(251, 54, 0, 0.4);
    --complementary-color: #0A2540; /* Deep premium blue */
    --complementary-light: #183B5E;
    
    --bg-light: #F4F7F9;
    --bg-dark: #071524;
    --bg-darker: #040c14;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 24px 48px rgba(0,37,64,0.15);
    --shadow-glow: 0 0 20px rgba(251, 54, 0, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-pure-white);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--complementary-color);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-align: center;
}

h1.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    font-weight: 800;
    text-align: center;
}

h2.title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    text-align: center;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 1.125rem;
    text-align: justify;
}

.subheadline, .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.text-accent { color: var(--accent-color); }
.text-complementary { color: var(--complementary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.875rem; }
.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-dark { color: var(--complementary-color); }
.text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(135deg, #FB3600 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-light-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F9 100%);
}

.bg-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); }
.bg-complementary { background-color: var(--complementary-color); }
.bg-gradient-accent { background: linear-gradient(135deg, #FB3600 0%, #d92c00 100%); }

/* LAYOUT */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .section { padding: var(--spacing-xl) 0; }
}

.align-center { align-items: center; }
.relative-z { position: relative; z-index: 10; }
.relative-overflow { position: relative; overflow: hidden; }

/* SPACING UTILS */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px; /* Pill shape for modern look */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FB3600 0%, #FF6B00 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(251, 54, 0, 0.4);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--complementary-color);
}

.btn-full { width: 100%; }
.btn-large { padding: 1.25rem 3rem; font-size: 1.125rem; }

.btn-glow {
    box-shadow: var(--shadow-glow);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 10px rgba(251, 54, 0, 0.5); }
    50% { box-shadow: 0 0 25px rgba(251, 54, 0, 0.8); }
    100% { box-shadow: 0 0 10px rgba(251, 54, 0, 0.5); }
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background-color: var(--bg-pure-white);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

.shape-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background-color: rgba(251, 54, 0, 0.1);
    animation: float 10s ease-in-out infinite alternate;
}

.shape-2 {
    bottom: -10%; right: -10%;
    width: 60vw; height: 60vw;
    background-color: rgba(0, 75, 138, 0.05);
    animation: float 15s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    top: 20%; left: 30%;
    width: 40vw; height: 40vw;
    background-color: rgba(251, 54, 0, 0.15);
    filter: blur(100px);
}

.badge-wrapper {
    margin-bottom: var(--spacing-sm);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background-color: rgba(251, 54, 0, 0.1);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    border: 1px solid rgba(251, 54, 0, 0.2);
}

.icon-small { width: 16px; height: 16px; }

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: var(--spacing-md) 0;
}

.glass-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.icon-accent { color: var(--accent-color); }

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (min-width: 992px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: center;
    }
}

.mockup-card {
    position: relative;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: 10px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.mockup-img {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    width: 100%;
}

.floating-meet-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--complementary-color);
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-meet-badge i { color: #0F9D58; } /* Google Meet Greenish hint */

/* REASON SECTION */
.reason-box {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: grid;
    gap: var(--spacing-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

@media (min-width: 768px) {
    .reason-box {
        grid-template-columns: auto 1fr;
        align-items: center;
        padding: var(--spacing-lg);
    }
}

.reason-icon {
    width: 80px; height: 80px;
    background: rgba(251, 54, 0, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.reason-icon i { width: 40px; height: 40px; }
.reason-content p { color: rgba(255,255,255,0.8); }

/* CARDS */
.card {
    background: var(--bg-pure-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

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

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(251, 54, 0, 0.2);
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(251, 54, 0, 0.1) 0%, rgba(251, 54, 0, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: var(--accent-color);
}

.glow-icon { position: relative; }
.glow-icon::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%; box-shadow: 0 0 20px rgba(251, 54, 0, 0.2); opacity: 0; transition: opacity 0.3s ease;
}
.problem-card:hover .glow-icon::after { opacity: 1; }

/* LISTS */
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.check-icon {
    width: 28px; height: 28px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(251,54,0,0.3);
}

.check-icon i { width: 16px; height: 16px; }
.check-list-white li { color: rgba(255,255,255,0.9); font-size: 1.125rem; }
.check-list-white i { color: var(--accent-color); }

/* IMAGES & EFFECTS */
.rounded-img { border-radius: var(--radius-lg); }
.shadow-xl { box-shadow: 0 30px 60px rgba(0,0,0,0.15); }

.hover-lift { transition: transform 0.4s ease; }
.hover-lift:hover { transform: translateY(-10px); }

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-pure-white);
    animation: float 6s ease-in-out infinite;
}

.badge-gradient {
    background: linear-gradient(135deg, #FB3600 0%, #FF6B00 100%);
}

.floating-badge .text-large { font-size: 2rem; line-height: 1; font-family: var(--font-heading); }

/* TIMELINE */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 90px;
    color: white;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--complementary-color) 0%, var(--complementary-light) 100%);
}

.timeline-date .day { font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.timeline-date .month { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.glass-card-hover {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
}

.glass-card-hover:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.border-left-accent { border-left: 6px solid var(--accent-color); }

/* PRICING */
.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.pricing-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    z-index: 2;
    background: white;
}

.popular-badge {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.pricing-header { padding: 3rem 2rem 2rem; text-align: center; }
.pricing-card.featured .pricing-header { padding-top: 3.5rem; }

.pricing-title { margin-bottom: 1rem; }

.price {
    display: flex; justify-content: center; align-items: flex-start; margin-bottom: 0.5rem;
}

.currency { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; font-family: var(--font-heading); }
.amount { font-size: 4.5rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }

.pricing-features { padding: 2rem; }
.pricing-features ul li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-weight: 500; }
.pricing-features ul li.disabled { color: rgba(255,255,255,0.3); }
.pricing-features ul li.disabled i { color: rgba(255,255,255,0.3); }

.pricing-action { padding: 0 2rem 2.5rem; }
.pb-card { padding-bottom: 3rem; }

/* AUTHOR */
.photo-container { position: relative; max-width: 450px; margin: 0 auto; }
.author-photo { border-radius: var(--radius-lg); position: relative; z-index: 2; box-shadow: var(--shadow-lg); }

.photo-accent-shape {
    position: absolute; bottom: -20px; right: -20px;
    width: 100%; height: 100%;
    border-radius: var(--radius-lg);
    z-index: 1;
}

.experience-badge {
    position: absolute; top: 20px; left: -20px; z-index: 3;
    padding: 1rem;
    display: flex; align-items: center; gap: 1rem;
}

.experience-badge .number { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); line-height: 1;}
.experience-badge .text { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; color: var(--complementary-color); }

/* AFTER EVENT */
.bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.alert-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.alert-box p { color: rgba(255,255,255,0.9); margin: 0; font-size: 1rem; }

.rocket-wrapper { position: relative; display: inline-block; }
.rocket-icon { width: 150px; height: 150px; color: white; position: relative; z-index: 2; }
.rocket-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    background: var(--accent-color);
    filter: blur(60px);
    z-index: 1;
    border-radius: 50%;
}

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--complementary-color);
}
.faq-question h3 { margin: 0; font-size: 1.125rem; font-family: var(--font-body); }
.faq-question i { transition: transform 0.3s ease; color: var(--accent-color); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: all 0.4s ease; opacity: 0; }
.faq-item.active .faq-answer { padding: 0 2rem 1.5rem; max-height: 500px; opacity: 1; }
.faq-answer p:last-child { margin-bottom: 0; }

/* FOOTER */
.footer { padding: 3rem 0; font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* ANIMATIONS & KEYFRAMES */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.float-anim { animation: float 5s ease-in-out infinite; }
.pulse-anim { animation: pulse 2s infinite; }
.pulse-anim-slow { animation: pulse 3s infinite; }

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

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.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; }

/* COUNTDOWN BANNER */
.countdown-banner {
    position: relative;
    z-index: 100;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(251, 54, 0, 0.3);
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.countdown-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    min-width: 50px;
}

.countdown-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.countdown-separator {
    font-weight: 800;
    font-size: 1.2rem;
    animation: pulse 1s infinite;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .countdown-container { gap: 0.5rem; flex-direction: column; }
}

/* TARGET SPLIT SECTION */
.target-split-section { background: var(--bg-pure-white); }
.target-box { padding: 2.5rem; border-radius: var(--radius-lg); height: 100%; border: 1px solid rgba(0,0,0,0.05); }

.is-for { background: linear-gradient(135deg, rgba(39, 201, 63, 0.05) 0%, rgba(39, 201, 63, 0.0) 100%); border-top: 4px solid #27C93F; }
.is-not { background: linear-gradient(135deg, rgba(255, 95, 86, 0.05) 0%, rgba(255, 95, 86, 0.0) 100%); border-top: 4px solid #FF5F56; }

.target-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.target-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; }
.bg-green { background: #27C93F; box-shadow: 0 4px 15px rgba(39, 201, 63, 0.3); }
.bg-red { background: #FF5F56; box-shadow: 0 4px 15px rgba(255, 95, 86, 0.3); }

.target-header h3 { margin: 0; font-size: 1.25rem; color: var(--text-primary); }

.target-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.target-list li:last-child { margin-bottom: 0; }
.target-list i { flex-shrink: 0; margin-top: 2px; }

.text-green { color: #27C93F; }
.text-red { color: #FF5F56; }

.target-list strong { display: block; font-size: 1.125rem; margin-bottom: 0.25rem; color: var(--complementary-color); }
.target-list p { margin: 0; font-size: 0.875rem; }

/* TESTIMONIALS SECTION (CAROUSEL) */
.carousel-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-carousel 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

.testimonial-video-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 280px; /* fixed width for carousel */
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16; /* Formato vertical (Reels/Shorts) */
    background: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-placeholder:hover {
    background: #cbd5e1;
}

.play-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-color);
}

/* FLOATING WIDGETS */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
}

.floating-wa i {
    width: 32px;
    height: 32px;
}

.sales-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    max-width: 320px;
    z-index: 1000;
    border-left: 4px solid var(--accent-color);
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.sn-icon {
    width: 40px;
    height: 40px;
    background: rgba(251, 54, 0, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sn-content {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
}

.sn-content strong { color: var(--text-primary); }
.sn-content span { color: var(--text-light); font-size: 0.8rem; }
.sn-content small { color: #a0aec0; font-size: 0.75rem; margin-top: 2px; }

@media (max-width: 768px) {
    .support-split { grid-template-columns: 1fr !important; }
    .support-text, .support-cta { padding: 1.5rem !important; }
    .support-cta { border-left: none !important; border-top: 1px solid rgba(0,0,0,0.05); }
    
    .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .floating-wa i { width: 24px; height: 24px; }
    
    .sales-notification { bottom: 80px; left: 20px; right: 20px; max-width: none; }
}

/* PROJECT GALLERY */
.project-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #e2e8f0;
}

.hover-scale {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover .hover-scale {
    transform: scale(1.08);
}

/* MENTORS GRID */
.mentors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .mentors-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mentor-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.mentor-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.mentor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.mentor-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.mentor-info {
    padding: 2rem;
}

.mentor-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.mentor-info .role {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* MEDIA MODAL (LIGHTBOX) */
.clickable-media {
    cursor: pointer;
}

.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.media-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.modal-content .video-mockup {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 100000;
    transition: transform 0.2s;
}

.close-modal i {
    width: 40px;
    height: 40px;
}

.close-modal:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

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

/* PROJECTS VOTING SECTION */
.projects-voting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .projects-voting-grid {
        grid-template-columns: 1fr;
    }
}

.project-vote-card {
    background: var(--complementary-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.project-vote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* PROJECT CAROUSEL & BANNER */
.project-banner-wrapper {
    position: relative;
    width: calc(100% - 2rem);
    margin: 1rem auto 0 auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.project-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-vote-card:hover .project-banner {
    transform: scale(1.05);
}

.banner-gradient-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
    z-index: 1;
}

.project-title-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color); /* Orange */
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.project-carousel-wrapper {
    position: relative;
    width: calc(100% - 2rem);
    margin: 0.5rem auto 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

.project-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-color);
}

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

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.project-vote-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-vote-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.vote-badge {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(251, 54, 0, 0.3);
}
