/*
 Theme Name:   CreditCon Child
 Theme URI:    https://credit-con.com
 Description:  Child theme for CreditCon — custom homepage + brand overrides on TheKeyNote
 Author:       Michael Ryan Sia
 Author URI:   https://builtbymichael.com
 Template:     thekeynote
 Version:      1.0.0
 Text Domain:  creditcon-child
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
    /* Brand Colors */
    --cc-dark:          #0B0B1F;
    --cc-dark-alt:      #111132;
    --cc-navy:          #1A1A3E;
    --cc-orange:        #F62B0A;
    --cc-orange-hover:  #D92208;
    --cc-orange-light:  #FF6B4A;
    --cc-gold:          #F5A623;
    --cc-white:         #FFFFFF;
    --cc-off-white:     #F7F7FB;
    --cc-gray-100:      #F1F1F5;
    --cc-gray-200:      #E2E2EA;
    --cc-gray-300:      #CBCBD7;
    --cc-gray-400:      #9696AB;
    --cc-gray-500:      #6E6E85;
    --cc-gray-600:      #4A4A5A;
    --cc-gray-700:      #2D2D3A;
    --cc-text-light:    #C8C8D8;

    /* Typography */
    --cc-font-heading:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --cc-font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --cc-section-pad:   100px 0;
    --cc-section-pad-sm: 60px 0;
    --cc-container:     1200px;

    /* Transitions */
    --cc-transition:    all 0.3s ease;
}

/* ============================================================
   2. GLOBAL RESETS (homepage template only)
   ============================================================ */

.cc-homepage {
    font-family: var(--cc-font-body);
    color: var(--cc-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.cc-homepage *,
.cc-homepage *::before,
.cc-homepage *::after {
    box-sizing: border-box;
}

.cc-homepage img {
    max-width: 100%;
    height: auto;
}

.cc-homepage a {
    color: var(--cc-orange);
    text-decoration: none;
    transition: var(--cc-transition);
}

.cc-homepage a:hover {
    color: var(--cc-orange-light);
}

/* ============================================================
   2b. PARENT THEME OVERRIDES (TheKeyNote / Goodlayers)
   ============================================================ */

/* Hide parent theme header, nav, and footer on homepage */
.cc-homepage .gdlr-header-wrapper,
.cc-homepage .gdlr-navigation-wrapper,
.cc-homepage .gdlr-header-inner,
.cc-homepage .gdlr-navigation,
.cc-homepage #gdlr-header-substitute,
.cc-homepage .gdlr-footer-wrapper,
.cc-homepage .gdlr-footer-back-to-top,
.cc-homepage .gdlr-copyright-wrapper,
.cc-homepage #gdlr-responsive-navigation {
    display: none !important;
}

/* Remove parent theme's content wrapper padding */
.cc-homepage .gdlr-content-wrapper,
.cc-homepage .gdlr-full-size-wrapper,
.cc-homepage .gdlr-item-area,
.cc-homepage .gdlr-full-size-container,
.cc-homepage #content-section-1,
.cc-homepage .content-wrapper,
.cc-homepage .gdlr-page-builder-body {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Force full-width body on homepage */
body.cc-homepage {
    padding: 0 !important;
    margin: 0 !important;
}

body.cc-homepage #content,
body.cc-homepage .gdlr-content,
body.cc-homepage .with-sidebar-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* ============================================================
   3. CONTAINER
   ============================================================ */

.cc-container {
    max-width: var(--cc-container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============================================================
   4. SECTION HEADINGS
   ============================================================ */

.cc-section-label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cc-orange);
    margin-bottom: 12px;
    font-family: var(--cc-font-heading);
}

.cc-section-title {
    font-family: var(--cc-font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    color: var(--cc-white);
}

.cc-section-title--dark {
    color: var(--cc-dark);
}

.cc-section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--cc-text-light);
    max-width: 640px;
    margin: 0 0 48px 0;
}

.cc-section-subtitle--dark {
    color: var(--cc-gray-500);
}

.cc-section-subtitle--center {
    margin-left: auto;
    margin-right: auto;
}

.cc-text-center {
    text-align: center;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */

.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cc-font-heading);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--cc-transition);
    text-decoration: none;
    line-height: 1;
}

.cc-btn--primary {
    background: var(--cc-orange);
    color: var(--cc-white);
}

.cc-btn--primary:hover {
    background: var(--cc-orange-hover);
    color: var(--cc-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 43, 10, 0.35);
}

.cc-btn--outline {
    background: transparent;
    color: var(--cc-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cc-btn--outline:hover {
    border-color: var(--cc-white);
    color: var(--cc-white);
    transform: translateY(-2px);
}

.cc-btn--outline-dark {
    background: transparent;
    color: var(--cc-dark);
    border: 2px solid var(--cc-gray-200);
}

.cc-btn--outline-dark:hover {
    border-color: var(--cc-orange);
    color: var(--cc-orange);
}

.cc-btn--sm {
    padding: 12px 24px;
    font-size: 14px;
}

.cc-btn--lg {
    padding: 20px 48px;
    font-size: 18px;
}

/* ============================================================
   5b. NAVIGATION
   ============================================================ */

.cc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.cc-nav--scrolled {
    background: rgba(11, 11, 31, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.cc-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc-nav__brand {
    font-family: var(--cc-font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--cc-white) !important;
    letter-spacing: -0.5px;
}

.cc-nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cc-nav__menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cc-nav__menu a:hover {
    color: var(--cc-white);
}

.cc-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.cc-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cc-white);
    transition: all 0.3s ease;
}

/* ============================================================
   5c. ELEMENTOR OVERRIDES
   ============================================================ */

.cc-homepage .elementor-section {
    padding: 0;
    margin: 0;
}

.cc-homepage .elementor-section > .elementor-container {
    max-width: 100%;
    padding: 0;
}

.cc-homepage .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0;
}

/* Hero section — reset Elementor positioning so video fills the section */
.cc-hero > .elementor-container,
.cc-hero > .elementor-container > .elementor-column,
.cc-hero > .elementor-container > .elementor-column > .elementor-element-populated {
    position: static !important;
}

/* Video background widget — stay static so absolute children reference .cc-hero */
.cc-hero .cc-hero-video-bg,
.cc-hero .cc-hero-video-bg .elementor-widget-container {
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0;
}

/* All other hero widgets and containers sit above the video */
.cc-hero .elementor-widget:not(.cc-hero-video-bg),
.cc-hero .e-con,
.cc-hero .elementor-container-inner,
.cc-hero .e-child {
    position: relative;
    z-index: 4;
}

/* Hero badge — when using a Text Editor widget with this class */
.cc-hero .cc-hero-badge-widget .elementor-widget-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 43, 10, 0.12);
    border: 1px solid rgba(246, 43, 10, 0.3);
    color: var(--cc-orange-light);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Hero buttons row — when using a container or inner section */
.cc-hero .cc-hero-buttons-widget .elementor-widget-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero meta bar — when using a Text Editor widget with this class */
.cc-hero .cc-hero-meta-widget .elementor-widget-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cc-hero .cc-hero-meta-widget .cc-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cc-text-light);
    font-size: 15px;
}

@media (max-width: 768px) {
    .cc-hero .cc-hero-buttons-widget .elementor-widget-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-hero .cc-hero-meta-widget .elementor-widget-container {
        gap: 20px;
    }
}

/* ============================================================
   5d. ELEMENTOR SPEAKER IMAGE — force circular crop
   ============================================================ */

.cc-speaker-img .elementor-image-box-img img {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */

.cc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0B0B1F 0%, #1A1A3E 50%, #0B0B1F 100%);
    overflow: hidden;
}

.cc-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cc-hero__video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 31, 0.65);
    z-index: 2;
}

.cc-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 3;
}

.cc-hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 43, 10, 0.12), transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 3;
}

.cc-hero__content {
    position: relative;
    z-index: 4;
    padding: 160px 0 120px;
    width: 100%;
}

.cc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 43, 10, 0.12);
    border: 1px solid rgba(246, 43, 10, 0.3);
    color: var(--cc-orange-light);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.cc-hero__title {
    font-family: var(--cc-font-heading);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 24px 0;
    max-width: 800px;
    color: var(--cc-white);
}

.cc-hero__title span {
    color: var(--cc-orange);
}

.cc-hero__description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--cc-text-light);
    max-width: 560px;
    margin: 0 0 40px 0;
}

.cc-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.cc-hero__meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cc-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cc-text-light);
    font-size: 15px;
}

.cc-hero__meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ============================================================
   7. COUNTDOWN BAR
   ============================================================ */

.cc-countdown {
    background: var(--cc-dark-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 0;
}

.cc-countdown__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cc-countdown__unit {
    text-align: center;
    min-width: 80px;
}

.cc-countdown__number {
    font-family: var(--cc-font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--cc-white);
    line-height: 1;
}

.cc-countdown__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cc-gray-400);
    margin-top: 8px;
}

.cc-countdown__sep {
    font-size: 36px;
    color: var(--cc-gray-500);
    font-weight: 300;
    align-self: flex-start;
    margin-top: 4px;
}

/* ============================================================
   8. VALUE PROPOSITION
   ============================================================ */

.cc-value {
    background: var(--cc-dark);
    padding: var(--cc-section-pad);
}

.cc-value__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.cc-value__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: var(--cc-transition);
}

.cc-value__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 43, 10, 0.3);
    transform: translateY(-4px);
}

.cc-value__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(246, 43, 10, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--cc-orange);
}

.cc-value__card-title {
    font-family: var(--cc-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--cc-white);
}

.cc-value__card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cc-gray-400);
    margin: 0;
}

/* ============================================================
   9. SOCIAL PROOF / STATS BAR
   ============================================================ */

.cc-stats {
    background: var(--cc-orange);
    padding: 56px 0;
}

.cc-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.cc-stats__number {
    font-family: var(--cc-font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--cc-white);
    line-height: 1;
}

.cc-stats__text {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   10. WHAT TO EXPECT (3-Day Breakdown)
   ============================================================ */

.cc-expect {
    background: var(--cc-off-white);
    padding: var(--cc-section-pad);
}

.cc-expect__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.cc-expect__day {
    background: var(--cc-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: var(--cc-transition);
}

.cc-expect__day:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.cc-expect__day-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--cc-gray-100);
}

.cc-expect__day-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cc-orange);
    margin: 0 0 8px 0;
}

.cc-expect__day-title {
    font-family: var(--cc-font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--cc-dark);
    margin: 0 0 4px 0;
}

.cc-expect__day-date {
    font-size: 14px;
    color: var(--cc-gray-500);
    margin: 0;
}

.cc-expect__day-body {
    padding: 24px 28px 28px;
}

.cc-expect__day-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-expect__day-body li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--cc-gray-600);
    border-bottom: 1px solid var(--cc-gray-100);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cc-expect__day-body li:last-child {
    border-bottom: none;
}

.cc-expect__day-body li::before {
    content: "\2713";
    color: var(--cc-orange);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   11. FEATURED SPEAKERS
   ============================================================ */

.cc-speakers {
    background: var(--cc-dark);
    padding: var(--cc-section-pad);
}

.cc-speakers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.cc-speakers__card {
    text-align: center;
    transition: var(--cc-transition);
}

.cc-speakers__card:hover {
    transform: translateY(-4px);
}

.cc-speakers__photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: var(--cc-transition);
    background: var(--cc-gray-700);
}

.cc-speakers__card:hover .cc-speakers__photo {
    border-color: var(--cc-orange);
}

.cc-speakers__name {
    font-family: var(--cc-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--cc-white);
    margin: 0 0 4px 0;
}

.cc-speakers__role {
    font-size: 14px;
    color: var(--cc-gray-400);
    margin: 0;
}

.cc-speakers__cta {
    margin-top: 48px;
    text-align: center;
}

/* ============================================================
   12. PAST EVENTS GALLERY
   ============================================================ */

.cc-gallery {
    background: var(--cc-navy);
    padding: var(--cc-section-pad);
}

.cc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
}

.cc-gallery__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--cc-gray-700);
}

.cc-gallery__item--wide {
    grid-column: span 2;
}

.cc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cc-gallery__item:hover img {
    transform: scale(1.05);
}

.cc-gallery__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--cc-white);
    font-size: 14px;
    font-weight: 600;
}

.cc-gallery__cta {
    margin-top: 40px;
    text-align: center;
}

/* ============================================================
   13. TICKETS SECTION
   ============================================================ */

.cc-tickets {
    background: linear-gradient(135deg, var(--cc-orange) 0%, #D92208 100%);
    padding: var(--cc-section-pad);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cc-tickets__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    top: -200px;
    left: -100px;
}

.cc-tickets__content {
    position: relative;
    z-index: 1;
}

.cc-tickets .cc-section-label {
    color: rgba(255, 255, 255, 0.7);
}

.cc-tickets .cc-section-title {
    color: var(--cc-white);
    font-size: 48px;
}

.cc-tickets .cc-section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-left: auto;
    margin-right: auto;
}

.cc-tickets__form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 40px auto 0;
}

.cc-tickets__input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cc-white);
    font-size: 16px;
    font-family: var(--cc-font-body);
    outline: none;
    transition: var(--cc-transition);
}

.cc-tickets__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cc-tickets__input:focus {
    border-color: var(--cc-white);
    background: rgba(255, 255, 255, 0.15);
}

.cc-tickets__submit {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    background: var(--cc-white);
    color: var(--cc-orange);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--cc-transition);
    font-family: var(--cc-font-heading);
    white-space: nowrap;
}

.cc-tickets__submit:hover {
    background: var(--cc-off-white);
    transform: translateY(-2px);
}

.cc-tickets__note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

/* ============================================================
   14. VENUE SECTION
   ============================================================ */

.cc-venue {
    background: var(--cc-dark);
    padding: var(--cc-section-pad);
}

.cc-venue__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}

.cc-venue__image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--cc-gray-700);
}

.cc-venue__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-venue__details h3 {
    font-family: var(--cc-font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--cc-white);
    margin: 0 0 8px 0;
}

.cc-venue__address {
    font-size: 16px;
    color: var(--cc-gray-400);
    margin: 0 0 24px 0;
}

.cc-venue__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.cc-venue__features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--cc-text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cc-venue__features li:last-child {
    border-bottom: none;
}

.cc-venue__feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(246, 43, 10, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--cc-orange);
    flex-shrink: 0;
}

/* ============================================================
   15. SPONSORS SECTION
   ============================================================ */

.cc-sponsors {
    background: var(--cc-off-white);
    padding: 80px 0;
    text-align: center;
}

.cc-sponsors__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.cc-sponsors__logo {
    height: 48px;
    opacity: 0.6;
    transition: var(--cc-transition);
    filter: grayscale(100%);
}

.cc-sponsors__logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.cc-sponsors__cta {
    margin-top: 32px;
}

.cc-sponsors__cta a {
    color: var(--cc-gray-500);
    font-weight: 600;
    font-size: 15px;
}

.cc-sponsors__cta a:hover {
    color: var(--cc-orange);
}

/* ============================================================
   16. FOOTER
   ============================================================ */

.cc-footer {
    background: var(--cc-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 0;
}

.cc-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.cc-footer__brand-name {
    font-family: var(--cc-font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--cc-white);
    margin: 0 0 16px 0;
}

.cc-footer__brand-desc {
    font-size: 15px;
    color: var(--cc-gray-400);
    line-height: 1.7;
    margin: 0 0 24px 0;
    max-width: 320px;
}

.cc-footer__social {
    display: flex;
    gap: 12px;
}

.cc-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cc-gray-400);
    font-size: 18px;
    transition: var(--cc-transition);
}

.cc-footer__social a:hover {
    background: var(--cc-orange);
    color: var(--cc-white);
}

.cc-footer__col-title {
    font-family: var(--cc-font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cc-white);
    margin: 0 0 20px 0;
}

.cc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-footer__links li {
    margin-bottom: 12px;
}

.cc-footer__links a {
    color: var(--cc-gray-400);
    font-size: 15px;
}

.cc-footer__links a:hover {
    color: var(--cc-white);
}

.cc-footer__bottom {
    margin-top: 64px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 14px;
    color: var(--cc-gray-500);
}

/* ============================================================
   17. ANIMATIONS
   ============================================================ */

@keyframes ccFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ccFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes ccFadeScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ccCountUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero animations — CSS-only, auto-play on load */
.cc-hero-animate {
    opacity: 0;
    animation: ccFadeUp 0.7s ease forwards;
    animation-delay: 0.3s;
}

.cc-hero-animate--delayed {
    opacity: 0;
    animation: ccFadeUp 0.7s ease forwards;
    animation-delay: 0.5s;
}

.cc-hero-animate--late {
    opacity: 0;
    animation: ccFadeUp 0.7s ease forwards;
    animation-delay: 0.7s;
}

.cc-hero-animate--later {
    opacity: 0;
    animation: ccFadeUp 0.7s ease forwards;
    animation-delay: 0.9s;
}

/* Scroll-triggered animations — require .cc-visible from JS */
.cc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cc-animate.cc-visible {
    opacity: 1;
    transform: translateY(0);
}

.cc-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cc-animate-scale.cc-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for sequential cards */
.cc-delay-1 { transition-delay: 0.1s; }
.cc-delay-2 { transition-delay: 0.2s; }
.cc-delay-3 { transition-delay: 0.3s; }
.cc-delay-4 { transition-delay: 0.4s; }
.cc-delay-5 { transition-delay: 0.5s; }
.cc-delay-6 { transition-delay: 0.6s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cc-hero-animate,
    .cc-hero-animate--delayed,
    .cc-hero-animate--late,
    .cc-hero-animate--later,
    .cc-animate,
    .cc-animate-scale {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================================
   18. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .cc-value__grid,
    .cc-speakers__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-hero__title {
        font-size: 52px;
    }

    .cc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cc-nav__toggle {
        display: flex;
    }

    .cc-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 11, 31, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .cc-nav__menu.cc-nav--open {
        display: flex;
    }

    :root {
        --cc-section-pad: 60px 0;
    }

    .cc-hero {
        min-height: auto;
    }

    .cc-hero__content {
        padding: 120px 0 80px;
    }

    .cc-hero__title {
        font-size: 36px;
    }

    .cc-hero__description {
        font-size: 17px;
    }

    .cc-hero__meta {
        gap: 20px;
    }

    .cc-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-section-title {
        font-size: 30px;
    }

    .cc-section-subtitle {
        font-size: 16px;
    }

    .cc-value__grid,
    .cc-expect__grid,
    .cc-stats__grid,
    .cc-speakers__grid {
        grid-template-columns: 1fr;
    }

    .cc-gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .cc-gallery__item--wide {
        grid-column: span 1;
    }

    .cc-venue__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cc-countdown__inner {
        gap: 24px;
    }

    .cc-countdown__number {
        font-size: 36px;
    }

    .cc-countdown__sep {
        display: none;
    }

    .cc-stats__number {
        font-size: 36px;
    }

    .cc-tickets .cc-section-title {
        font-size: 32px;
    }

    .cc-tickets__form {
        flex-direction: column;
    }

    .cc-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cc-sponsors__logos {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .cc-hero__title {
        font-size: 28px;
    }

    .cc-hero__content {
        padding: 100px 0 60px;
    }

    .cc-container {
        padding: 0 16px;
    }

    .cc-value__card {
        padding: 28px 20px;
    }

    .cc-expect__day-header,
    .cc-expect__day-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}
