/* ==========================================================================
   Variáveis Premium & Reset
   ========================================================================== */
   :root {
    --bg-dark: #07090E; /* Quase preto */
    --bg-card: #121620; /* Cinza bem escuro */
    --bg-card-hover: #1A1F2D;
    
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.max-w-lg { max-width: 700px; }

/* Tipografia */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Componentes Reutilizáveis
   ========================================================================== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(212, 175, 55, 0.7);
    filter: brightness(1.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--text-main);
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.micro-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, var(--bg-dark) 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge-premium {
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 3rem;
}

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

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

.highlight-indicator {
    color: var(--gold-light);
}

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

.abstract-shape {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.8), rgba(10, 12, 18, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
}

.abstract-shape::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: url('hero-image.jpg') center/cover; /* Reusing existing asset or placeholder */
    opacity: 0.3;
    border-radius: 19px;
    filter: grayscale(100%) contrast(1.2);
}

.abstract-shape::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--gold);
    filter: blur(100px);
    opacity: 0.2;
}

/* ==========================================================================
   Bloco Identificação
   ========================================================================== */
.identification-section {
    padding: 100px 0;
    background: #0A0C13;
}

.impact-box {
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.02), transparent);
}

.impact-small {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.impact-large {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold);
}

/* ==========================================================================
   Diferencial
   ========================================================================== */
.differential-section {
    padding: 100px 0;
}

.overline {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.huge-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-premium {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
}

.card-premium:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
}

.card-premium h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.card-premium p {
    color: var(--text-muted);
}

/* ==========================================================================
   Programa (Dias 1 e 2)
   ========================================================================== */
.program-section {
    padding: 100px 0;
    background: #05060A;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.program-header {
    padding: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.day-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.program-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    color: var(--text-muted);
}

.program-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #CBD5E1;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.program-highlight {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    padding: 20px;
    font-style: italic;
    color: var(--gold-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Oportunidades Escondidas
   ========================================================================== */
.hidden-opportunities-section {
    padding: 100px 0;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tag-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.tag-card:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.05);
}

.opportunity-text-box {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
}

.opportunity-text-box p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.opportunity-text-box .highlight-text {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.5rem;
}

/* ==========================================================================
   Split Section
   ========================================================================== */
.split-section {
    display: flex;
    position: relative;
    min-height: 500px;
    background: #05060A;
}

.split-left, .split-right {
    flex: 1;
    padding: 80px 40px 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.split-left {
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.02));
}

.split-right {
    background: linear-gradient(to left, transparent, rgba(212,175,55,0.02));
}

.split-left h3, .split-right h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.split-right h3 {
    color: var(--gold);
}

.split-left p, .split-right p {
    color: var(--text-muted);
    max-width: 300px;
}

.split-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.circle-year {
    background: var(--bg-dark);
    border: 1px solid var(--gold);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 8px;
    box-shadow: 0 0 40px rgba(212,175,55,0.1);
}

.split-footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 24px;
}

.split-footer p {
    background: rgba(11, 15, 25, 0.9);
    padding: 20px 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
}

/* ==========================================================================
   Faturamento
   ========================================================================== */
.revenue-section {
    padding: 100px 0;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.revenue-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition);
}

.revenue-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

.impact-quote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--gold-light);
}

/* ==========================================================================
   Para Quem É
   ========================================================================== */
.target-audience-section {
    padding: 100px 0;
    background: #05060A;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.target-card {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(135deg, var(--bg-card), transparent);
}

.target-card.full-width {
    grid-column: 1 / -1;
    text-align: center;
}

.target-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   O Que Não É
   ========================================================================== */
.what-is-not-section {
    padding: 100px 0;
}

.not-box {
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--text-muted);
    padding-left: 40px;
}

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

.cross-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cross-list i {
    color: #EF4444; /* Vermelho sutil */
    font-size: 1.2rem;
}

.highlight-banner {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.2rem;
}

/* ==========================================================================
   Quem Conduz
   ========================================================================== */
.speakers-section {
    padding: 100px 0;
    background: #05060A;
}

.speakers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.speaker-img-placeholder {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 24px auto;
    aspect-ratio: 3/4;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.02);
}

.speaker-card h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.speaker-role {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.speaker-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   XP / Recebíveis / Event Info
   ========================================================================== */
.experience-section, .deliverables-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.exp-text-box {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: #CBD5E1;
}

.deliverable-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.02);
}

.deliverable-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.deliverable-card h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.deliverable-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Event Info */
.event-info-section {
    padding: 60px 0 100px;
}

.event-card-premium {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.event-card-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.event-card-header h2 {
    color: var(--gold-light);
    letter-spacing: 2px;
}

.event-card-body {
    padding: 20px 40px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row span {
    color: var(--text-muted);
}

.info-row strong {
    text-align: right;
}

.highlight-row strong {
    color: var(--gold);
}

.pending strong {
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

.event-card-footer {
    padding: 30px;
    background: rgba(0,0,0,0.2);
    text-align: center;
    font-size: 0.9rem;
}

.warning-text {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ==========================================================================
   Formulário
   ========================================================================== */
.form-section {
    padding: 100px 0;
    background: #05060A;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-muted);
}

.premium-form .form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.premium-form input, .premium-form select {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF;
    padding: 16px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
}

.premium-form select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.premium-form input:focus, .premium-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0,0,0,0.5);
}

.btn-submit {
    width: 100%;
    margin-top: 16px;
    padding: 20px;
    font-size: 1.1rem;
}

.form-disclaimer {
    margin-top: 24px;
    text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

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

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta-section {
    padding: 120px 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.final-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.final-headline {
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.final-text {
    font-size: 1.25rem;
    max-width: 600px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.footer-names {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: #475569;
    font-size: 0.85rem;
}

/* ==========================================================================
   Mobile Sticky CTA & Modal
   ========================================================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    display: none;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sticky-content span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    color: #10B981; /* Verde sucesso */
    margin-bottom: 24px;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-content h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--text-muted);
}

/* ==========================================================================
   Utilitários & Animações
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 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; }

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-ctas {
        align-items: center;
    }

    .cards-grid-3, .program-grid, .split-section {
        grid-template-columns: 1fr;
    }

    .split-section {
        flex-direction: column;
    }

    .split-left, .split-right {
        padding: 60px 24px;
    }

    .circle-year {
        position: relative;
        transform: none;
        top: 0; left: 0;
        margin: -50px auto;
        width: 130px;
        height: 130px;
        font-size: 0.95rem;
    }

    .split-footer {
        position: relative;
        transform: none;
        bottom: 0; left: 0;
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .hero-headline { font-size: 2.5rem; }
    .huge-title { font-size: 2.5rem; }
    .final-headline { font-size: 2.5rem; }
    
    .hero-indicators {
        grid-template-columns: 1fr;
    }

    .cards-grid-2, .revenue-grid, .speakers-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 12px;
    }

    .mobile-sticky-cta {
        display: block;
    }
}
