.pricing-features i {
    color: var(--wp-gold);
}

.payment-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--wp-text-medium);
    font-style: italic;
    text-align: center;
}

.pricing-warning {
    text-align: center;
    padding: 2rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    color: #856404;
}/* ============================================
   EVENTO TRÁFEGO PAGO & IA - STYLES.CSS
   Identidade Visual WebPrime
============================================ */

/* CSS Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores WebPrime */
    --wp-black: #000000;
    --wp-dark-gray: #1a1a1a;
    --wp-medium-gray: #333333;
    --wp-gold: #FDC500;
    --wp-gold-dark: #E6B200;
    --wp-white: #ffffff;
    --wp-light-gray: #f8f9fa;
    --wp-text-dark: #222222;
    --wp-text-medium: #666666;
    --wp-text-light: #cccccc;
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Sombras */
    --shadow-light: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-strong: 0 15px 40px rgba(0,0,0,0.2);
    --shadow-gold: 0 10px 30px rgba(253, 197, 0, 0.3);
    
    /* Transições */
    --transition: all 0.3s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--wp-text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--wp-gold);
    color: var(--wp-black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn:hover {
    background: var(--wp-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary {
    background: var(--wp-gold);
    color: var(--wp-black);
}

.btn-secondary {
    background: transparent;
    color: var(--wp-medium-gray);
    border: 2px solid var(--wp-medium-gray);
}

.btn-secondary:hover {
    background: var(--wp-medium-gray);
    color: var(--wp-white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--wp-white);
}

.btn-whatsapp:hover {
    background: #1ea952;
    color: var(--wp-white);
}

.btn-tertiary {
    background: var(--wp-medium-gray);
    color: var(--wp-white);
}

.btn-tertiary:hover {
    background: var(--wp-black);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-header {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Sections */
.section-light {
    background: var(--wp-light-gray);
    padding: 5rem 0;
}

.section-dark {
    background: var(--wp-black);
    color: var(--wp-white);
    padding: 5rem 0;
}

.section-white {
    background: var(--wp-white);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-dark .section-title {
    color: var(--wp-white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--wp-text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: var(--wp-text-light);
}

/* WebPrime Elements */
.webprime-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--wp-black);
    color: var(--wp-white);
    padding: 10px 20px;
    border-radius: 25px;
    z-index: 10000;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.webprime-float-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--wp-gold);
    color: var(--wp-black);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    z-index: 998;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.webprime-float-cta:hover {
    background: var(--wp-gold-dark);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--wp-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.whatsapp-float:hover {
    background: #1ea952;
    transform: scale(1.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--wp-white);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header.scroll-header {
    box-shadow: var(--shadow-light);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand h2 {
    margin: 0;
    color: var(--wp-black);
}

.nav-brand span {
    color: var(--wp-gold);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--wp-text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--wp-gold);
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--wp-black) 0%, var(--wp-dark-gray) 100%);
    color: var(--wp-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23FDC500" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wp-gold);
    color: var(--wp-black);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--wp-gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wp-gold);
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.hero-floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--wp-white);
    color: var(--wp-black);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-medium);
}

.hero-floating-card i {
    font-size: 2rem;
    color: var(--wp-gold);
}

/* Trust Bar */
.trust-bar {
    background: var(--wp-white);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--wp-gold);
    font-size: 1.2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--wp-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--wp-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--wp-black);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--wp-black);
}

/* Speakers */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.speaker-card {
    background: var(--wp-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.speaker-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.speaker-placeholder {
    height: 300px;
    background: var(--wp-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--wp-medium-gray);
}

.speaker-image {
    height: 300px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.1);
}

.speaker-info {
    padding: 2rem;
}

.speaker-info h3 {
    margin-bottom: 0.5rem;
    color: var(--wp-black);
}

.speaker-role {
    color: var(--wp-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.speaker-bio {
    color: var(--wp-text-medium);
    margin-bottom: 1.5rem;
}

.speaker-stats {
    display: flex;
    gap: 1rem;
}

.speaker-stats span {
    background: var(--wp-light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wp-black);
}

.speaker-stats i {
    color: var(--wp-gold);
    margin-right: 0.5rem;
}

/* Schedule */
.schedule-container {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-timeline {
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--wp-gold);
}

.schedule-item {
    display: flex;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.schedule-item.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.schedule-time {
    background: var(--wp-gold);
    color: var(--wp-black);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.schedule-content {
    background: var(--wp-white);
    padding: 2rem;
    border-radius: 15px;
    margin-left: 2rem;
    flex: 1;
    box-shadow: var(--shadow-light);
    position: relative;
}

.schedule-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--wp-white);
}

.schedule-item.featured .schedule-content {
    border: 2px solid var(--wp-gold);
}

.schedule-content h3 {
    margin-bottom: 1rem;
    color: var(--wp-black);
}

.schedule-content h3 i {
    color: var(--wp-gold);
    margin-right: 0.5rem;
}

.schedule-content ul {
    margin: 1rem 0;
    padding-left: 1rem;
}

.schedule-content li {
    margin-bottom: 0.5rem;
    color: var(--wp-text-medium);
}

.speaker-tag {
    background: var(--wp-gold);
    color: var(--wp-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--wp-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wp-gold);
    color: var(--wp-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-badge.secondary {
    background: var(--wp-medium-gray);
    color: var(--wp-white);
}

.pricing-badge.tertiary {
    background: #e74c3c;
    color: var(--wp-white);
}

.pricing-header {
    margin: 2rem 0;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--wp-black);
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--wp-gold);
    margin: 0 0.2rem;
}

.cents {
    font-size: 2rem;
    font-weight: 600;
}

.price-description {
    color: var(--wp-text-medium);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--wp-gold);
}

.pricing-warning {
    text-align: center;
    padding: 2rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    color: #856404;
}

.pricing-warning i {
    color: #f39c12;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--wp-white);
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--wp-white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--wp-light-gray);
}

.faq-question h3 {
    margin: 0;
    color: var(--wp-black);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--wp-gold);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--wp-text-medium);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--wp-gold) 0%, var(--wp-gold-dark) 100%);
    color: var(--wp-black);
    padding: 5rem 0;
    text-align: center;
}

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

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
}

.cta-stat i {
    font-size: 2rem;
    color: var(--wp-black);
}

.cta-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-stat span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-trust {
    margin-top: 2rem;
}

.sponsor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    flex-direction: column;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--wp-white);
    border-radius: 15px;
    color: var(--wp-black);
    font-weight: 700;
    box-shadow: var(--shadow-light);
    max-width: 300px;
    font-size: 0.95rem;
}

.sponsor-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    max-width: 60px;
    max-height: 60px;
}

/* Footer */
.footer {
    background: var(--wp-black);
    color: var(--wp-white);
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: var(--wp-gold);
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wp-gold);
    font-weight: 600;
}

.footer-contact h4 {
    color: var(--wp-white);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.contact-item i {
    color: var(--wp-gold);
    width: 20px;
}

.contact-item a {
    color: var(--wp-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--wp-gold);
}

.footer-social h4 {
    color: var(--wp-white);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--wp-gold);
    color: var(--wp-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--wp-gold-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--wp-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    position: relative;
    transform: scale(0.8);
    transition: var(--transition);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--wp-medium-gray);
    color: var(--wp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--wp-black);
}

.popup-header {
    margin-bottom: 1.5rem;
}

.popup-header i {
    font-size: 3rem;
    color: var(--wp-gold);
    margin-bottom: 1rem;
}

.popup-header h3 {
    color: var(--wp-black);
    margin: 0;
}

.popup-body p {
    color: var(--wp-text-medium);
    margin-bottom: 1rem;
}

.popup-body .btn {
    margin-top: 1rem;
}

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

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

/* Mobile Styles */
@media (max-width: 968px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Header Mobile */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--wp-white);
        flex-direction: column;
        justify-content: start;
        padding: 4rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav.show-menu {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-toggle,
    .nav-close {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: var(--wp-black);
    }
    
    .btn-header {
        display: none;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-floating-card {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
    
    /* Trust Bar Mobile */
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Speakers Mobile */
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Schedule Mobile */
    .schedule-timeline::before {
        left: 50px;
    }
    
    .schedule-time {
        width: 80px;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .schedule-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    /* Pricing Mobile */
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* CTA Mobile */
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-stat {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sponsor {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sponsor-logo {
        max-width: 250px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .sponsor-image {
        width: 50px;
        height: 50px;
    }
    
    /* WebPrime Badge Mobile */
    .webprime-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Sections */
    .section-light,
    .section-dark,
    .section-white {
        padding: 3rem 0;
    }
    
    /* Typography */
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .trust-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .sponsor {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}