/*
 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.8.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 and nav on ALL pages (replaced by ElementsKit header) */
.gdlr-header-wrapper,
.gdlr-navigation-wrapper,
.gdlr-header-inner,
.gdlr-navigation,
#gdlr-header-substitute,
#gdlr-responsive-navigation {
    display: none !important;
}

/* Hide parent theme footer on ALL pages (replaced by ElementsKit footer) */
.gdlr-footer-wrapper,
.gdlr-footer-back-to-top,
.gdlr-copyright-wrapper {
    display: none !important;
}

/* Custom header positioning */
#cc-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible !important;
}

/* Let header content and dropdowns overflow */
#cc-site-header .elementor-element,
#cc-site-header .elementor-widget-wrap,
#cc-site-header .elementor-widget-container,
#cc-site-header .elementor-container,
#cc-site-header .elementor-column,
#cc-site-header .elementor-element-populated,
#cc-site-header .e-con,
#cc-site-header .e-child {
    overflow: visible !important;
}

/* Nav menu items — fit in one row */
#cc-site-header .ekit-wid-con .elementskit-navbar-nav {
    flex-wrap: nowrap !important;
}

#cc-site-header .ekit-wid-con .elementskit-navbar-nav > li > a {
    font-size: 13px !important;
    padding: 10px 12px !important;
    white-space: nowrap;
}

/* ElementsKit Nav Menu dropdown styling */
#cc-site-header .ekit-wid-con .elementskit-navbar-nav > li > .elementskit-dropdown,
#cc-site-header .ekit-wid-con .elementskit-navbar-nav > li > .elementskit-megamenu-panel {
    background: rgba(11, 11, 31, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#cc-site-header .ekit-wid-con .elementskit-dropdown li a,
#cc-site-header .ekit-wid-con .elementskit-megamenu-panel li a {
    color: var(--cc-text-light) !important;
    padding: 8px 20px !important;
    font-size: 14px;
    transition: all 0.2s ease;
}

#cc-site-header .ekit-wid-con .elementskit-dropdown li a:hover,
#cc-site-header .ekit-wid-con .elementskit-megamenu-panel li a:hover {
    color: var(--cc-white) !important;
    background: rgba(246, 43, 10, 0.15);
}

#cc-site-header .ekit-wid-con .elementskit-dropdown li.active > a,
#cc-site-header .ekit-wid-con .elementskit-dropdown li.current-menu-item > a {
    color: var(--cc-orange) !important;
}

/* Header — transparent by default, text switches on light sections */
#cc-site-header {
    transition: background 0.3s ease;
}

/* When header is over a light/white section — dark nav text + dark bg */
#cc-site-header.cc-header--light {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#cc-site-header.cc-header--light .ekit-wid-con .elementskit-navbar-nav > li > a {
    color: var(--cc-dark) !important;
}

#cc-site-header.cc-header--light .ekit-wid-con .elementskit-navbar-nav > li > a:hover {
    color: var(--cc-orange) !important;
}

/* Non-homepage pages — always light header */
body:not(.cc-homepage) #cc-site-header {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body:not(.cc-homepage) #cc-site-header .ekit-wid-con .elementskit-navbar-nav > li > a {
    color: var(--cc-dark) !important;
}

body:not(.cc-homepage) #cc-site-header .ekit-wid-con .elementskit-navbar-nav > li > a:hover {
    color: var(--cc-orange) !important;
}

/* ============================================================
   ElementsKit Mobile Nav Menu (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
    /* Hamburger button */
    #cc-site-header .elementskit-menu-hamburger {
        border: none !important;
        background: transparent !important;
        padding: 8px !important;
    }

    #cc-site-header .elementskit-menu-hamburger .elementskit-menu-hamburger-icon {
        background-color: #fff !important;
    }

    /* Mobile menu panel — slide-out, full viewport height */
    #cc-site-header .elementskit-menu-container {
        background: rgba(11, 11, 31, 0.98) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        overflow-y: auto !important;
        z-index: 10000 !important;
        height: 100vh !important;
        min-height: 100vh !important;
        top: 0 !important;
        position: fixed !important;
    }

    /* Mobile nav identity panel (logo + close button area) */
    #cc-site-header .elementskit-nav-identity-panel {
        background: rgba(11, 11, 31, 0.98) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 16px 20px !important;
    }

    /* Close button */
    #cc-site-header .elementskit-menu-close {
        color: #fff !important;
        opacity: 0.8 !important;
    }

    #cc-site-header .elementskit-menu-close:hover {
        opacity: 1 !important;
    }

    /* Mobile nav links */
    #cc-site-header .elementskit-navbar-nav > li > a {
        color: #fff !important;
        font-size: 15px !important;
        padding: 14px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        white-space: normal !important;
    }

    #cc-site-header .elementskit-navbar-nav > li > a:hover {
        color: var(--cc-orange) !important;
        background: rgba(246, 43, 10, 0.1) !important;
    }

    /* Mobile nav list — vertical stack */
    #cc-site-header .ekit-wid-con .elementskit-navbar-nav {
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }

    /* Mobile dropdown submenu */
    #cc-site-header .elementskit-navbar-nav .elementskit-dropdown {
        background: rgba(0, 0, 0, 0.3) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        position: relative !important;
        width: 100% !important;
    }

    #cc-site-header .elementskit-navbar-nav .elementskit-dropdown li a {
        color: var(--cc-text-light) !important;
        padding: 12px 20px 12px 36px !important;
        font-size: 14px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    }

    #cc-site-header .elementskit-navbar-nav .elementskit-dropdown li a:hover {
        color: #fff !important;
        background: rgba(246, 43, 10, 0.1) !important;
    }

    /* Submenu indicator arrows — white */
    #cc-site-header .elementskit-submenu-indicator {
        fill: #fff !important;
        color: #fff !important;
    }

    /* Mobile overlay background */
    .elementskit-menu-overlay {
        background: rgba(0, 0, 0, 0.6) !important;
    }

    /* Override non-homepage light header for mobile menu */
    body:not(.cc-homepage) #cc-site-header .elementskit-menu-container {
        background: rgba(11, 11, 31, 0.98) !important;
    }

    body:not(.cc-homepage) #cc-site-header .elementskit-nav-identity-panel {
        background: rgba(11, 11, 31, 0.98) !important;
    }

    body:not(.cc-homepage) #cc-site-header .elementskit-navbar-nav > li > a {
        color: #fff !important;
    }
}

/* Custom footer positioning */
#cc-site-footer {
    position: relative;
    z-index: 1;
}

/* Footer link list overrides inside ElementsKit footer */
#cc-site-footer .cc-footer__links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#cc-site-footer .cc-footer__links li {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--cc-gray-400);
    text-transform: none !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

#cc-site-footer .cc-footer__links a {
    color: var(--cc-gray-400) !important;
    font-size: 15px !important;
    text-transform: none !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-decoration: none;
}

#cc-site-footer .cc-footer__links a:hover {
    color: var(--cc-white) !important;
}

/* Footer column titles */
#cc-site-footer .cc-footer__col-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--cc-white) !important;
    margin: 0 0 20px 0 !important;
}

/* Footer brand section */
#cc-site-footer .cc-footer__brand-name {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--cc-white) !important;
}

#cc-site-footer .cc-footer__brand-desc {
    font-size: 15px !important;
    color: var(--cc-gray-400) !important;
    font-weight: 400 !important;
    line-height: 1.7;
}

/* Footer bottom bar */
#cc-site-footer .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);
}

/* Hide parent theme page title bar on homepage */
.cc-homepage .gdlr-page-title-wrapper,
.cc-homepage .gdlr-page-title-area,
.cc-homepage .gdlr-page-title-overlay {
    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 GALLERY ITEMS — consistent aspect ratio
   ============================================================ */

.cc-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
}

.cc-gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* ============================================================
   5e. ELEMENTOR SPONSOR LOGOS — color by default, grayscale on hover
   ============================================================ */

.cc-sponsor-logo img {
    max-height: 48px !important;
    width: auto !important;
    opacity: 1;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.cc-sponsor-logo img:hover {
    opacity: 0.6;
    filter: grayscale(100%);
}

/* ============================================================
   5f. 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;
}

/* Mute/unmute toggle button */
.cc-hero__mute-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 6;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    pointer-events: auto;
}

.cc-hero__mute-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cc-hero__mute-btn svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.cc-hero__grid-pattern {
    display: none;
}

.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 {
    background: #0B0B1F;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-speakers__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(246, 43, 10, 0.15);
}

/* Geometric decorative shapes — CSS only */
.cc-speakers__card::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(246, 43, 10, 0.15);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    transition: transform 0.3s ease;
}

.cc-speakers__card::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.12);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20px;
    left: -10px;
    transition: transform 0.3s ease;
}

.cc-speakers__card:hover::before {
    transform: scale(1.2) rotate(10deg);
}

.cc-speakers__card:hover::after {
    transform: rotate(15deg) translateX(5px);
}

/* Third geometric shape via span */
.cc-speakers__shape {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 107, 74, 0.2);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    transition: transform 0.3s ease;
}

.cc-speakers__card:hover .cc-speakers__shape {
    transform: scale(1.3);
}

/* Photo wrapper */
.cc-speakers__photo-wrap {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.cc-speakers__photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFFFFF;
    display: block;
}

/* SPEAKER badge */
.cc-speakers__badge {
    display: inline-block;
    background: #F62B0A;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

/* Name */
.cc-speakers__name {
    font-family: var(--cc-font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 4px;
    position: relative;
    z-index: 2;
}

/* Title */
.cc-speakers__title {
    font-size: 16px;
    color: #FF6B4A;
    margin: 0 0 2px;
    position: relative;
    z-index: 2;
}

/* Company */
.cc-speakers__company {
    font-size: 14px;
    color: #C8C8D8;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Role (legacy fallback) */
.cc-speakers__role {
    font-size: 14px;
    color: #C8C8D8;
    margin: 0;
    position: relative;
    z-index: 2;
}

.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);
}

/* ============================================================
   16b. PARALLAX LAYERS (Storytelling Engine)
   ============================================================ */

/* All parallax shapes — shared base */
.cc-plx-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    transition: transform 0.1s linear;
}

/* Elements that receive scroll-driven transforms */
.cc-plx-reveal {
    will-change: transform, opacity;
}

/* Value Proposition — orange circle, top-right */
.cc-plx-circle-orange {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 43, 10, 0.08) 0%, transparent 70%);
    top: -30px;
    right: 60px;
}

/* Value Proposition — gold triangle, bottom-left */
.cc-plx-triangle-gold {
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: rgba(245, 166, 35, 0.06);
    bottom: 40px;
    left: 40px;
}

/* Speakers — orange-light ring, mid-right */
.cc-plx-ring-orange {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 107, 74, 0.1);
    border-radius: 50%;
    top: 30%;
    right: 30px;
}

/* Speakers — red dot, top-left */
.cc-plx-dot-red {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 43, 10, 0.1) 0%, transparent 70%);
    top: 20px;
    left: 40px;
}

/* Gallery — full background layer (navy tint, moves slower than content) */
.cc-plx-bg {
    position: absolute;
    inset: -20% 0;
    background: linear-gradient(180deg, rgba(26, 26, 62, 0.5) 0%, rgba(11, 11, 31, 0.3) 100%);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Tickets — white radial glow */
.cc-plx-glow-white {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: 20%;
    right: 10%;
}

/* Ensure parallax-parent sections have proper stacking */
.cc-value > .elementor-container,
.cc-value > .elementor-container > .elementor-column,
.cc-value > .e-con,
.cc-speakers > .elementor-container,
.cc-speakers > .elementor-container > .elementor-column,
.cc-speakers > .e-con,
.cc-gallery > .elementor-container,
.cc-gallery > .elementor-container > .elementor-column,
.cc-gallery > .e-con,
.cc-tickets > .elementor-container,
.cc-tickets > .elementor-container > .elementor-column,
.cc-tickets > .e-con {
    position: relative;
    z-index: 1;
}

/* Reduced motion — hide parallax shapes, no transforms */
@media (prefers-reduced-motion: reduce) {
    .cc-plx-shape,
    .cc-plx-bg {
        display: none !important;
    }
}

/* Mobile — parallax disabled via JS, but hide shapes too */
@media (max-width: 768px) {
    .cc-plx-shape,
    .cc-plx-bg {
        display: none !important;
    }
}

/* ============================================================
   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;
}

/* cc-animate / cc-animate-scale — base states removed.
   All scroll-driven reveals are handled by cc-parallax.js via inline styles.
   These classes remain in the markup but are now inert (no hidden initial state). */

/* Reduced motion — ensure everything is visible and un-transformed */
@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;
    }
}

/* ============================================================
   17b. JIGSAW PUZZLE HERO ANIMATION
   ============================================================ */

.cc-jigsaw-widget {
    position: static !important;
}

/* Spacer wrapper — created by JS, provides scroll distance while hero stays pinned */
.cc-jigsaw-spacer {
    position: relative;
}

/* Pin the hero inside the spacer so it stays on screen during the animation scroll */
.cc-jigsaw-spacer > .cc-hero {
    position: sticky;
    top: 0;
}

/* Fallback: if JS doesn't load, fade out the jigsaw after 3s so it doesn't permanently block content */
@keyframes ccJigsawFallback {
    0%, 90% { opacity: 1; }
    100%    { opacity: 0; visibility: hidden; }
}

.cc-jigsaw {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    animation: ccJigsawFallback 3s ease forwards;
}

/* JS adds this class on init — cancels the fallback auto-hide */
.cc-jigsaw.cc-jigsaw--ready {
    animation: none;
}

.cc-jigsaw.cc-jigsaw--done {
    display: none;
}

/* Solid backdrop behind pieces — covers any clip-path gaps */
.cc-jigsaw__backdrop {
    position: absolute;
    inset: 0;
    background-color: #FFFFFF;
    will-change: opacity;
}

.cc-jigsaw__piece {
    position: absolute;
    inset: 0;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40% auto;
    will-change: transform, opacity;
}

/* Hide header during jigsaw animation */
.cc-jigsaw-active ~ #cc-site-header,
body.cc-jigsaw-active #cc-site-header {
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Override hero CSS animations when jigsaw is active */
.cc-jigsaw-active .cc-hero-animate,
.cc-jigsaw-active .cc-hero-animate--delayed,
.cc-jigsaw-active .cc-hero-animate--late,
.cc-jigsaw-active .cc-hero-animate--later {
    animation: none !important;
    opacity: 0;
}

/* Reduced motion — skip jigsaw entirely */
@media (prefers-reduced-motion: reduce) {
    .cc-jigsaw { display: none !important; }
    .cc-jigsaw-spacer > .cc-hero { position: relative; }
    .cc-jigsaw-spacer { height: auto !important; }
    .cc-jigsaw-active .cc-hero-animate,
    .cc-jigsaw-active .cc-hero-animate--delayed,
    .cc-jigsaw-active .cc-hero-animate--late,
    .cc-jigsaw-active .cc-hero-animate--later {
        animation: ccFadeUp 0.7s ease forwards !important;
    }
}

/* ============================================================
   18. RESPONSIVE
   ============================================================ */

@media (max-width: 1440px) {
    .cc-jigsaw__piece {
        background-size: 45% auto;
        background-position: center 5%;
    }
}

@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-jigsaw__piece {
        background-size: 65% auto;
        background-position: center 40%;
    }

    .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;
    }

    .cc-speakers__card {
        padding: 24px 16px;
    }

    .cc-speakers__name {
        font-size: 20px;
    }
}
