/* Career Canvas 2026 - Landing Page */
:root {
    --cc-teal: #24353b;
    --cc-teal-dark: #1a2830;
    --cc-red: #c43a47;
    --cc-red-soft: rgba(196, 58, 71, 0.12);
    --cc-text: #5a5a5a;
    --cc-muted: #646567;
    --cc-line: #e8e8e8;
    --cc-paper: #eee;
    --cc-white: #fff;
    --cc-radius: 14px;
    --cc-radius-sm: 10px;
    --cc-shadow: 0 14px 50px rgba(26, 40, 48, 0.12);
    --cc-shadow-soft: 0 8px 30px rgba(26, 40, 48, 0.08);
    --cc-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Hero ----- */
.cc-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.cc-hero-bg {
    position: absolute;
    inset: 0;
    background: url(../images/banners/INDEX-BANNER-01.jpg) no-repeat center center / cover;
    transform: scale(1.02);
}
.cc-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(26, 40, 48, 0.97) 0%,
        rgba(36, 53, 59, 0.92) 38%,
        rgba(196, 58, 71, 0.45) 100%
    );
}
.cc-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cc-hero-glow {
    position: absolute;
    width: 55%;
    max-width: 520px;
    aspect-ratio: 1;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle, rgba(196, 58, 71, 0.35) 0%, transparent 65%);
    filter: blur(40px);
}
.cc-hero .container {
    position: relative;
    z-index: 2;
}
.cc-hero-inner {
    max-width: 760px;
    padding: 48px 0 56px;
}

.cc-reveal {
    animation: cc-fade-up 0.85s var(--cc-ease) both;
}
@keyframes cc-fade-up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.98);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 11px 20px 11px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
}
.cc-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cc-red);
    box-shadow: 0 0 0 4px rgba(196, 58, 71, 0.35);
    flex-shrink: 0;
}

.cc-hero h1 {
    font-size: clamp(36px, 5.5vw, 56px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.02em;
}
.cc-hero-year {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.cc-hero .hero-line {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 300;
    margin-bottom: 22px;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.cc-hero .hero-intro {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.86);
    max-width: 700px;
    margin-bottom: 26px;
}

.cc-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.cc-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.cc-hero-pill i {
    opacity: 0.9;
    font-size: 14px;
}
.cc-hero-pill--accent {
    background: rgba(196, 58, 71, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.cc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.25s var(--cc-ease), box-shadow 0.25s var(--cc-ease), background 0.25s, color 0.25s;
    border-radius: 999px;
    text-decoration: none !important;
}

.hero-cta--primary {
    background: var(--cc-red);
    color: #fff !important;
    box-shadow: 0 10px 35px rgba(196, 58, 71, 0.45);
}
.hero-cta--primary:hover {
    background: #fff;
    color: var(--cc-teal) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.hero-cta--ghost {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}
.hero-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-cta--wide {
    padding-left: 36px;
    padding-right: 36px;
}

/* ----- Promo video (YouTube Shorts) ----- */
.cc-section--video {
    background: linear-gradient(180deg, #fff 0%, #f6f6f6 100%);
    padding-top: 56px;
    padding-bottom: 64px;
}
.cc-video-wrap {
    max-width: 400px;
    margin: 0 auto;
}
.cc-video-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--cc-radius);
    box-shadow: var(--cc-shadow);
    background: #0a0a0a;
}
/* Vertical Shorts aspect ratio 9:16 */
.cc-video-frame--shorts {
    padding-bottom: 177.78%;
    height: 0;
}
.cc-video-frame--shorts iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.cc-video-caption {
    text-align: center;
    margin: 18px 0 0;
    font-size: 14px;
}
.cc-video-caption a {
    color: var(--cc-red);
    font-weight: 600;
    text-decoration: none;
}
.cc-video-caption a:hover {
    text-decoration: underline;
}

/* ----- Sections ----- */
.cc-section {
    padding: 76px 0;
    position: relative;
}
.cc-section.alt {
    background: linear-gradient(180deg, #f0f0f0 0%, var(--cc-paper) 100%);
}
.cc-section--domains {
    position: relative;
}
.cc-section--domains::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(36, 53, 59, 0.08), transparent);
}
.cc-section-title {
    text-align: center;
    margin-bottom: 48px;
}
.cc-section-title h2 {
    font-size: clamp(26px, 3.5vw, 34px);
    color: var(--cc-teal);
    margin-bottom: 14px;
    text-transform: none;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.cc-section-title p {
    font-size: 16px;
    color: var(--cc-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}

.cc-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cc-red);
    margin: 0 auto 14px;
    max-width: 640px;
}
.cc-section-title .cc-eyebrow {
    display: block;
}
.cc-eyebrow--dark {
    color: var(--cc-teal);
    margin-bottom: 10px;
}

/* ----- Why attend ----- */
.cc-why-row {
    align-items: stretch;
}
.cc-spotlight {
    height: 100%;
    min-height: 280px;
    background: linear-gradient(160deg, var(--cc-teal) 0%, var(--cc-teal-dark) 100%);
    border-radius: var(--cc-radius);
    padding: 36px 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--cc-shadow);
    position: relative;
    overflow: hidden;
}
.cc-spotlight::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    right: -60px;
    bottom: -60px;
    background: radial-gradient(circle, rgba(196, 58, 71, 0.5) 0%, transparent 70%);
    pointer-events: none;
}
.cc-spotlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.cc-spotlight-quote {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}
.cc-spotlight-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
.cc-spotlight-stats li {
    font-size: 14px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.88);
}
.cc-spotlight-stats li:first-child {
    border-top: none;
    padding-top: 0;
}
.cc-spotlight-stats strong {
    color: #fff;
    font-size: 18px;
    margin-right: 6px;
}

.cc-card {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 40px 42px;
    box-shadow: var(--cc-shadow-soft);
    border: 1px solid rgba(36, 53, 59, 0.06);
    border-left: 4px solid var(--cc-red);
    margin-bottom: 0;
    height: 100%;
}
.cc-card--lift {
    transition: transform 0.35s var(--cc-ease), box-shadow 0.35s var(--cc-ease);
}
.cc-card--lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--cc-shadow);
}
.cc-card h3 {
    font-size: 22px;
    color: var(--cc-teal);
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 700;
}
.cc-card-foot {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--cc-text);
}

.cc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cc-list li {
    padding: 14px 0 14px 36px;
    position: relative;
    font-size: 15px;
    line-height: 1.65;
    color: var(--cc-text);
    border-bottom: 1px solid var(--cc-line);
}
.cc-list li:last-child {
    border-bottom: none;
}
.cc-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 14px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 11px;
    color: #fff;
    background: var(--cc-red);
    border-radius: 50%;
}

/* Who can attend */
.cc-card--who {
    border-left-color: var(--cc-teal);
    text-align: center;
    padding: 44px 40px;
}
.cc-who-head {
    margin-bottom: 18px;
}
.cc-who-badge {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--cc-red-soft);
    color: var(--cc-red);
    border-radius: 50%;
    font-size: 22px;
    margin-bottom: 16px;
}
.cc-card--who h3 {
    margin-bottom: 0;
}
.cc-who-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cc-text);
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Domains ----- */
.cc-domain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cc-domain-card {
    position: relative;
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 32px 26px 34px;
    box-shadow: var(--cc-shadow-soft);
    border: 1px solid rgba(36, 53, 59, 0.06);
    transition: transform 0.35s var(--cc-ease), box-shadow 0.35s var(--cc-ease), border-color 0.35s;
    overflow: hidden;
}
.cc-domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-teal), var(--cc-red));
    opacity: 0.95;
}
.cc-domain-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cc-shadow);
    border-color: rgba(196, 58, 71, 0.2);
}
.cc-domain-index {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(36, 53, 59, 0.2);
}
.cc-domain-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--cc-paper), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.cc-domain-icon {
    font-size: 32px;
    line-height: 1;
}
.cc-domain-card h4 {
    font-size: 18px;
    color: var(--cc-teal);
    margin-bottom: 12px;
    text-transform: none;
    font-weight: 700;
}
.cc-domain-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--cc-text);
    margin: 0;
}
.cc-domain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cc-domain-list li {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--cc-text);
    border-bottom: 1px solid rgba(36, 53, 59, 0.06);
}
.cc-domain-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.cc-domain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cc-red);
}

/* ----- Happening ----- */
.cc-happening-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.cc-happening-card {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 28px 24px 30px;
    text-align: center;
    border: 1px solid rgba(36, 53, 59, 0.06);
    box-shadow: var(--cc-shadow-soft);
    transition: transform 0.3s var(--cc-ease), box-shadow 0.3s;
}
.cc-happening-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cc-shadow);
}
.cc-happening-visual {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-red-soft), rgba(36, 53, 59, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
}
.cc-happening-card h4 {
    font-size: 17px;
    color: var(--cc-teal);
    margin: 0 0 10px;
    font-weight: 700;
}
.cc-happening-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cc-muted);
    margin: 0;
}
.cc-happening-foot {
    text-align: center;
    margin: 40px auto 0;
    max-width: 700px;
    font-size: 16px;
    color: var(--cc-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ----- Event details + registration (split layout) ----- */
.cc-section--details-register {
    background: linear-gradient(180deg, #f0f0f0 0%, #ebebeb 45%, #eee 100%);
}
.cc-details-reg-row {
    align-items: flex-start;
}
 
.cc-details-reg-title {
    font-size: clamp(24px, 3vw, 30px);
    color: var(--cc-teal);
    font-weight: 700;
    margin: 0 0 22px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: none;
}
.cc-eyebrow--left {
    margin-left: 0 !important;
    margin-right: 0;
    text-align: left;
    max-width: none;
    display: block;
}
.cc-details-grid--sidebar {
    max-width: none;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 14px;
}
.cc-details-grid--sidebar .cc-detail-tile--wide {
    grid-column: span 1;
}
.cc-details-grid--sidebar .cc-detail-tile {
    padding: 20px 22px;
}
.cc-details-grid--sidebar .cc-detail-value {
    font-size: 15px;
}
.cc-reg-lead {
    font-size: 16px;
    color: var(--cc-muted);
    line-height: 1.7;
    margin: 0 0 24px;
}
.cc-section--details-register .cc-reg-wrap {
    max-width: none;
    width: 100%;
    margin: 0;
}

/* Google Form registration (replaces on-site form) */
.cc-reg-google {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    overflow: hidden;
    box-shadow: var(--cc-shadow);
    border: 1px solid rgba(36, 53, 59, 0.08);
    padding: 32px 36px 36px;
}
.cc-reg-google-head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.cc-reg-google-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 35%, #fbbc05 65%, #ea4335 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.35);
}
.cc-reg-google-head h3 {
    font-size: 19px;
    color: var(--cc-teal);
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
    text-transform: none;
}
.cc-reg-google-head p {
    font-size: 14px;
    color: var(--cc-muted);
    line-height: 1.6;
    margin: 0;
}
.cc-reg-google-hints {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    border-top: 1px solid var(--cc-line);
    border-bottom: 1px solid var(--cc-line);
}
.cc-reg-google-hints li {
    position: relative;
    padding: 12px 0 12px 26px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--cc-text);
    border-bottom: 1px solid var(--cc-line);
}
.cc-reg-google-hints li:last-child {
    border-bottom: none;
}
.cc-reg-google-hints li::before {
    content: '\f0da';
    font-family: 'FontAwesome';
    position: absolute;
    left: 4px;
    color: var(--cc-red);
    font-size: 12px;
}
.cc-google-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--cc-red) 0%, #a62f3a 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    box-shadow: 0 10px 28px rgba(196, 58, 71, 0.35);
}
.cc-google-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(196, 58, 71, 0.42);
    color: #fff !important;
}
.cc-reg-google-foot {
    margin: 16px 0 0;
    font-size: 12px;
    color: var(--cc-muted);
    text-align: center;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .cc-details-reg-aside {
        position: sticky;
        top: 20px;
    }
}

@media (max-width: 991px) {
    .cc-details-reg-aside {
        padding-right: 0;
        padding-bottom: 36px;
        margin-bottom: 12px;
        border-right: none;
        border-bottom: 1px solid rgba(36, 53, 59, 0.1);
    }
}

.cc-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.cc-detail-tile {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    padding: 26px 28px;
    border: 1px solid var(--cc-line);
    box-shadow: 0 6px 24px rgba(26, 40, 48, 0.06);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.cc-detail-tile:hover {
    border-color: rgba(196, 58, 71, 0.25);
    box-shadow: 0 10px 32px rgba(26, 40, 48, 0.1);
}
.cc-detail-tile--wide {
    grid-column: span 2;
}
.cc-detail-tile--accent {
    background: linear-gradient(135deg, var(--cc-teal) 0%, var(--cc-teal-dark) 100%);
    border-color: transparent;
    color: #fff;
}
.cc-detail-tile--accent .cc-detail-label {
    color: rgba(255, 255, 255, 0.7);
}
.cc-detail-tile--accent .cc-detail-value {
    color: #fff;
}
.cc-detail-tile--accent .cc-detail-icon {
    background: rgba(196, 58, 71, 0.35);
    color: #fff;
}
.cc-detail-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--cc-red-soft);
    color: var(--cc-red);
    font-size: 16px;
    margin-bottom: 12px;
}
.cc-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cc-muted);
    margin-bottom: 8px;
}
.cc-detail-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--cc-teal);
    margin: 0;
    line-height: 1.45;
}

/* ----- Registration ----- */
.cc-reg-wrap {
    max-width: 580px;
    margin: 0 auto;
}
.cc-reg-form {
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    overflow: hidden;
    box-shadow: var(--cc-shadow);
    border: 1px solid rgba(36, 53, 59, 0.08);
}
.cc-reg-form-head {
    background: linear-gradient(135deg, var(--cc-teal) 0%, #2d4550 100%);
    color: #fff;
    padding: 36px 36px 32px;
    text-align: center;
    position: relative;
}
.cc-reg-form-head::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-red), rgba(196, 58, 71, 0.5));
}
.cc-reg-form-head h3 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 10px;
    text-transform: none;
    font-weight: 700;
}
.cc-reg-form-head p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}
.cc-reg-form form {
    padding: 36px 40px 40px;
}
.cc-reg-form label {
    font-size: 12px;
    font-weight: 700;
    color: var(--cc-teal);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cc-reg-form .form-group {
    margin-bottom: 4px;
}
.cc-reg-form .form-control {
    border-radius: var(--cc-radius-sm);
    border: 1px solid var(--cc-line);
    padding: 12px 16px;
    margin-bottom: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cc-reg-form .form-control:focus {
    border-color: var(--cc-red);
    box-shadow: 0 0 0 4px var(--cc-red-soft);
}
.cc-reg-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--cc-red) 0%, #a62f3a 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    border-radius: 999px;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    margin-top: 8px;
    box-shadow: 0 10px 28px rgba(196, 58, 71, 0.35);
}
.cc-reg-form .btn-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(196, 58, 71, 0.4);
}

/* ----- Contact ----- */
.cc-contact-bar {
    text-align: center;
    padding: 64px 0;
    background: linear-gradient(180deg, #f7f7f7, #fff);
}
.cc-contact-bar h3 {
    font-size: 26px;
    color: var(--cc-teal);
    margin-bottom: 12px;
    text-transform: none;
    font-weight: 700;
}
.cc-contact-lead {
    color: var(--cc-text);
    margin-bottom: 28px;
    font-size: 15px;
}
.cc-contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.cc-contact-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 26px;
    background: var(--cc-white);
    border-radius: var(--cc-radius);
    border: 1px solid var(--cc-line);
    text-decoration: none !important;
    color: var(--cc-teal) !important;
    font-weight: 700;
    box-shadow: var(--cc-shadow-soft);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.cc-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cc-shadow);
    border-color: rgba(196, 58, 71, 0.3);
    color: var(--cc-red) !important;
}
.cc-contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--cc-red-soft);
    color: var(--cc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.cc-contact-card-num {
    font-size: 17px;
}
.cc-contact-card--mail .cc-contact-card-num {
    font-size: 15px;
    word-break: break-all;
    text-align: left;
}

/* ----- Footer CTA ----- */
.cc-footer-cta {
    position: relative;
    padding: 72px 0;
    text-align: center;
    overflow: hidden;
    background: var(--cc-teal-dark);
    color: #fff;
}
.cc-footer-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 58, 71, 0.35) 0%, transparent 55%),
        linear-gradient(180deg, var(--cc-teal) 0%, var(--cc-teal-dark) 100%);
    opacity: 1;
}
.cc-footer-cta .container {
    position: relative;
    z-index: 1;
}
.cc-footer-cta h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    color: #fff;
    margin-bottom: 18px;
    text-transform: none;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.cc-footer-cta-accent {
    color: #ffb8bf;
    font-weight: 800;
}
.cc-footer-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.8;
}
.cc-footer-cta .hero-cta--primary {
    background: #fff;
    color: var(--cc-teal) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.cc-footer-cta .hero-cta--primary:hover {
    background: var(--cc-red);
    color: #fff !important;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .cc-domain-grid,
    .cc-happening-grid {
        grid-template-columns: 1fr;
    }
    .cc-hero {
        min-height: auto;
    }
    .cc-hero-inner {
        padding: 40px 0 48px;
    }
    .cc-detail-tile--wide {
        grid-column: span 1;
    }
    .cc-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cc-section {
        padding: 56px 0;
    }
    .cc-card,
    .cc-reg-form form {
        padding: 28px 22px;
    }
    .cc-reg-form-head {
        padding: 28px 22px 26px;
    }
    .cc-reg-google {
        padding: 26px 22px 30px;
    }
    .cc-spotlight {
        margin-bottom: 24px;
        min-height: 0;
    }
}
