/* --- CSS VARIABLES & BRAND SYSTEM --- */
@font-face {
    font-family: 'Pogonia';
    src: url('../fonts/pogonia-regular.woff2') format('woff2'),
         url('../fonts/pogonia-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pogonia';
    src: url('../fonts/pogonia-bold.woff2') format('woff2'),
         url('../fonts/pogonia-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --yellow: #DFE77E;
    --gray-light: #fafafa;
    --gray-border: #eeeeee;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Pogonia', serif;
}

/* --- RESET & FOUNDATION --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    background-color: var(--white); 
    color: var(--black); 
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- MAIN BUTTON STYLES --- */
.cc-btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 4px 4px 18px !important;
    background: var(--black);
    border: 1px solid black;
    border-radius: var(--v4-radius);
    text-decoration: none !important;
    transition: all var(--v4-speed) ease !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border-radius:50px;
}
.cc-btn-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}
.cc-btn-icon {
    width: 36px;
    height: 36px;
    background: #ffde01;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cc-btn-icon svg {
    width: 14px;
    height: 14px;
    color: var(--black);
    transition: transform var(--v4-speed) ease;
}

/* Usage: Links inside paragraphs */
.cc-btn-inline {
    display: inline-block;
    position: relative;
    font-family: var(--btn-font);
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    padding-bottom: 2px;
    transition: 0.3s;
}

/* The "Highlighter" Underline */
.cc-btn-inline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-btn-inline:hover::after {
    height: 100%; /* Fills the text background on hover */
    opacity: 0.4;
}



/* --- Core Header Styling --- */
.cc-header-main {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.cc-container { max-width: 1440px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* --- Top Bar & Socials --- */
.cc-top-bar { background: var(--black); color: var(--white); padding: 8px 0; font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.cc-top-left { display: flex; gap: 25px; align-items: center; }
.cc-utility-link { color: var(--white); text-decoration: none; transition: 0.3s; }
.cc-utility-link svg { fill: var(--white); width:10px; transition: 0.3s; }
.cc-utility-link:hover { color: var(--yellow); }
.cc-utility-link:hover svg { fill: var(--yellow); }
.cc-emergency-link { color: var(--yellow); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.cc-pips { width: 6px; height: 6px; background: #ff4d4d; border-radius: 50%; animation: cc-blink 1.5s infinite; }
@keyframes cc-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.cc-social-icons { display: flex; gap: 20px; }
.cc-social-icons a svg { fill: var(--white); width: 13px; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.cc-social-icons a:hover svg { fill: var(--yellow); transform: translateY(-2px); }

/* --- Main Navigation Structure --- */
.cc-nav-container { background: var(--white); border-bottom: 1px solid var(--gray-border); padding: 12px 0;
    background: rgba(255, 255, 255, 0.8);position:relative;}
    .cc-nav-container::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    
    /* The Magic Layer */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1; /* Puts it behind the content */
}
.cc-identity img { height: 44px; width: auto; }
.cc-nav-list { display: flex; list-style: none; margin: 0; padding: 0; align-items: center; }
.cc-nav-list > li { padding: 0 10px; position: relative; list-style: none; }
.cc-nav-list > li:last-child{padding-right:0px;}

/* Trigger Row for Split Action */
.cc-menu-trigger-row { display: flex; align-items: center; gap: 5px; }

.cc-main-link { 
    text-decoration: none; color: var(--black); font-weight: 400; font-size: 11px; 
    letter-spacing: 1.2px; transition: 0.2s; display: flex; align-items: center;
}

/* --- The Dedicated Toggle Button --- */
.cc-menu-toggle {
    background: transparent;
    border: none;
    border-left: 1px solid var(--gray-border);
    border-radius: 0px;
    width: 20px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}
.cc-menu-toggle svg { width: 8px; height: 8px; opacity: 0.4; transition: 0.3s; }
.cc-menu-toggle:hover { border-color: var(--black); }
.cc-menu-toggle:hover svg { opacity: 1; fill:var(--black); }

/* Rotate icon when active */
.cc-dropdown.open .cc-menu-toggle{ border-left:1px solid var(--black);}
.cc-dropdown.open .cc-menu-toggle svg { transform: rotate(180deg); opacity: 1; }

/* --- Dropdown Styles (Restored Originals) --- */
.cc-submenu, .cc-mega-dropdown {
    position: absolute; top: calc(100% + 20px); left: 0;
    width: 260px; padding: 25px;
        background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0; visibility: hidden; transform: translateY(10px); 
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex; flex-direction: column; z-index: 99;
}

.cc-mega-dropdown { width: 500px; flex-direction: row; gap: 30px; left: -100px; }
.cc-mega-col { flex: 1; display: flex; flex-direction: column; }

/* Visibility Logic: Hover (Desktop) & Open Class (JS/Touch) */
.cc-dropdown:hover .cc-submenu, .cc-dropdown:hover .cc-mega-dropdown,
.cc-dropdown.open .cc-submenu, .cc-dropdown.open .cc-mega-dropdown { 
    opacity: 1; visibility: visible; transform: translateY(0); 
}

/* Bridge for hover gap */
.cc-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 25px; }

.cc-sub-label { display: block; font-size: 9px; font-weight: 800; color: #bbb; letter-spacing: 2px; margin-bottom: 15px; }

.cc-nav-wrap a:not(.cc-main-link):not(.cc-btn), .cc-footer-links1 li a {
    text-decoration: none; color: var(--black); font-size: 13px; font-weight: 500; 
    padding: 8px 0; display: block; transition: 0.2s;
}
.cc-nav-wrap a:not(.cc-main-link):not(.cc-btn):hover { color: var(--yellow); padding-left: 5px; }

/* --- Mobile Responsiveness --- */
.cc-mobile-icon { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.cc-line { width: 24px; height: 2px; background: var(--black); }

.cc-close-trigger{
    display:none;
}

@media (max-width: 1024px) {
    .cc-top-right{
        display:none;
    }
    .cc-top-left {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Pushes items to the far edges */
        width: 100%;
        padding: 10px 0; /* Vertical breathing room */
    }

    .cc-utility-link, 
    .cc-emergency-link {
        display: flex;
        align-items: center;
        white-space: nowrap; /* Prevents text wrapping on small screens */
    }
    .cc-utility-link svg{
        margin-right:5px;
    }
    .cc-mobile-icon { display: flex; }
    .cc-nav-wrap {
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 100%; 
        height: 100vh; /* Fixed height of the viewport */
        background: var(--white); 
        transition: right 1s cubic-bezier(0.05, 0.7, 0.1, 1.0);
        z-index: 10000; 
        padding: 80px 40px;
        
        /* THE FIXES: */
        overflow-y: auto; /* Allows vertical scrolling */
        -webkit-overflow-scrolling: touch; /* Makes scrolling smooth on iPhones */
        display: flex;
        flex-direction: column;
    }

    /* Prevent the background body from scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    .cc-nav-wrap.active { right: 0; }
    .cc-close-trigger { display: block; position: absolute; top: 20px; right: 40px; font-size: 40px; cursor: pointer; }
    
    .cc-nav-list { flex-direction: column; align-items: flex-start; }
    .cc-nav-list > li { width: 100%; padding: 0; border-bottom: 1px solid #eee; border-bottom: 1px solid var(--gray-border);}


    /* 2. The Row - Give it consistent vertical breathing room */
    .cc-menu-trigger-row {
        display: flex;
        align-items: center; /* Vertical center */
        justify-content: space-between;
        padding: 12px 0; /* This is your 'Clean Spacing' */
    }

    /* 3. The Link - Pure typography, no box constraints */
    .cc-main-link {
        flex: 1;
        padding: 10px 0;
        margin: 0;
        font-size: 13px; /* Slightly larger for mobile readability */
        font-weight: 800;
        letter-spacing: 1.5px;
        color: var(--black);
    }
    .cc-main-link.nodd{
        padding: 22px 0;
    }

    /* 4. The Toggle - Floating and Sharp */
    .cc-menu-toggle {
        background: transparent; /* Remove the grey box */
        border: none;
        border-left: 1px solid var(--gray-border); /* Single clean vertical line */
        width: 50px;
        height: 30px; /* Shorter than the row to look like a 'divider' */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        padding: 0;
    }

    /* Keep the icon sharp and minimal */
    .cc-mini-icon {
        width: 10px;
        stroke-width: 2px;
    }

    /* Highlight the divider when open */
    .cc-dropdown.open .cc-menu-toggle {
        border-left: 1px solid var(--black);
    }

    .cc-mega-dropdown, .cc-submenu { 
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; display: none; width: 100%; padding: 20px 0 0 15px;
    }
    .cc-dropdown.open .cc-mega-dropdown, .cc-dropdown.open .cc-submenu { display: flex; }
    .cc-mega-dropdown { flex-direction: column; gap: 20px; }
}







/*********************************/
/***footer***/
/*********************************/
/* --- Core Foundations --- */
.cc-footer-final {
    background: var(--white);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--gray-border);
    font-family: 'Inter', sans-serif;
}

.cc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Precision Quote Strip --- */
.cc-quote-strip {
   background-color: #f5f5f7;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 80px;
}

.cc-pre-title {
    display: block; font-size: 10px; font-weight: 900; letter-spacing: 2px; margin-bottom: 12px; color: var(--black);
}
.cc-pre-title svg{height:10px;}

.cc-h2-pogonia-small {
    font-family: 'Pogonia', serif;
    font-size: clamp(24px, 3.5vw, 42px);
    margin: 0; color: var(--black); font-weight: 700; line-height: 1.1;
}

.cc-yellow-highlight {
    background: var(--yellow);
    padding: 0 10px;
    display: inline-block;
}

/* --- Calculator Button --- */
.cc-btn-calculator {
    display: inline-flex; align-items: center; background: var(--black); color: var(--white) !important;
    text-decoration: none; padding: 5px 5px 5px 25px; transition: 0.3s;
}
.cc-btn-calculator .cc-btn-text { font-size: 11px; font-weight: 900; letter-spacing: 1px; }
.cc-btn-calculator .cc-btn-icon { 
    background: var(--yellow); color: var(--black); width: 45px; height: 45px; 
    display: flex; align-items: center; justify-content: center; margin-left: 20px;
}
.cc-btn-calculator:hover { transform: translateY(-3px); }

/* --- Restored Navigation Grid --- */
.cc-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 80px;
    gap: 40px;
}

.cc-col-title {
    display: block; font-size: 10px; font-weight: 900; letter-spacing: 2px; margin-bottom: 30px; color: var(--black);
}

.cc-footer-links { list-style: none; padding: 0; margin: 0; }
.cc-footer-links li { margin-bottom: 12px; }
.cc-footer-links a { text-decoration: none; color: var(--black); font-size: 13px; font-weight: 500; transition: 0.3s; }
.cc-footer-links a svg{height:13px; transition: 0.3s;}
.cc-footer-links a:hover svg{fill: var(--yellow); }
.cc-footer-links a:hover { color: var(--yellow); padding-left: 5px; }

/* --- Restored Contact Styles --- */
.cc-address-link { display: block; font-size: 14px; color: var(--cc-gray); line-height: 1.6; margin-bottom: 25px; text-decoration: none; }
.cc-contact-link { display: inline-block; color: var(--black); font-weight: 700; text-decoration: none; font-size: 14px; margin-bottom: 8px; border-bottom: 1px solid var(--yellow); }

/* --- Restored Bottom Bar --- */
.cc-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cc-status-bar { display: flex; gap: 40px; }
.cc-status-item, .cc-legal { font-size: 9px; font-weight: 900; letter-spacing: 1.5px; display: flex; align-items: center; gap: 8px; }
.cc-status-item svg{height:13px;fill: var(--yellow);}
.cc-status-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
.cc-legal-links a{
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--yellow);
}

@media (max-width: 1024px) {
    .cc-quote-strip { flex-direction: column; text-align: center; gap: 30px; padding: 30px; }
    .cc-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .cc-footer-bottom { flex-direction: column; gap: 30px; align-items: flex-start; }
}




/********************************/
/*****hero slider*********/
/********************************/

/* CORE LAYOUT ONLY - No Button Colors/Fonts from main.css */
.cc-v32-hero {
    position: relative;
    min-height: 90vh;
    width: 100%;
    background: var(--black);
    overflow: hidden;
    z-index:1;
}

.cc-v32-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 8%;
    opacity: 0;
    transition: opacity 1.2s ease;
    visibility: hidden;
    z-index:2;
}

.cc-v32-slide.active { opacity: 1; visibility: visible;z-index: 5; }

.cc-v32-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    filter: brightness(0.4);
    transition: transform 10s linear;
}

.cc-v32-ui{
    position: absolute;
    inset: 0;
    /* This MUST be higher than the .cc-v32-slide.active z-index */
    z-index: 100; 
    pointer-events: none; /* Allows clicks to pass through to buttons below if needed */
}

.cc-v32-slide.active .cc-v32-bg { transform: scale(1); }

.cc-v32-brand { font-size: 11px; letter-spacing: 4px; color: #ffde00; margin-bottom: 20px; font-weight: 800; }

.cc-v32-content h1, .cc-v32-content h2 { 
    font-family: 'Pogonia', serif; 
    font-size: clamp(40px, 8vw, 90px); 
    color: #fff; 
    line-height: 0.9; 
    margin: 0; 
}

.cc-v32-sub { max-width: 500px; color: rgba(255,255,255,0.6); font-size: 18px; margin-top: 30px; line-height: 1.6; }

/* LAYOUT FOR CONTROLS */
.cc-v32-bottom-controls { 
    position: absolute; 
    bottom: 50px; 
    left: 8%; 
    right: 8%; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
}

.cc-service-anchor-bar { display: flex; align-items: center; gap: 20px; }
.cc-service-tag { color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.cc-separator-yellow { width: 40px; height: 1px; background: #ffde00; }

.cc-v32-cta-group { display: flex; align-items: center; gap: 20px; }

/* --- TIMER ICON PRECISION --- */
.cc-v32-timer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-icon-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.cc-icon-state svg {
    width: 14px;
    height: 14px;
    fill: var(--white); /* Matches your white/yellow theme */
}

/* Hide play by default, show pause */
.cc-icon-state .icon-play { display: none; }
.cc-icon-state .icon-pause { display: block; }

/* When button has is-paused class (toggled via JS) */
.cc-v32-timer.is-paused .icon-pause { display: none; }
.cc-v32-timer.is-paused .icon-play { display: block; }

/* --- FIXED TIMER CIRCLE & ICON LOCK --- */
.cc-v32-timer {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    /* SIZE MUST BE DEFINED HERE */
    width: 44px; 
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Progress starts at top */
    display: block;
}

.cc-timer-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2;
}

.cc-timer-progress {
    fill: none;
    stroke: var(--yellow); /* Using your brand yellow */
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.1s linear;
}

.cc-icon-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.cc-icon-state svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

/* Toggle Logic */
.icon-play { display: none !important; }
.cc-v32-timer.is-paused .icon-play { display: block !important; }
.cc-v32-timer.is-paused .icon-pause { display: none !important; }

@media (max-width: 768px) {
    /* 1. Adjust Hero Height for mobile (stops content clipping) */
    .cc-v32-hero {
        min-height: 85vh; /* slightly shorter for better thumb reach */
    }

    /* 2. Stack the content and center it */
    .cc-v32-slide {
        padding: 0 20px;
        align-items: center; /* vertical center */
        justify-content: center;
        text-align: center;
    }

    .cc-v32-content h1, 
    .cc-v32-content h2 {
        font-size: clamp(32px, 10vw, 48px) !important;
        line-height: 1.1;
    }

    .cc-v32-sub {
        margin: 20px auto 0;
        font-size: 15px;
        max-width: 100%;
    }

    /* 3. The Bottom Controls - THE BIGGEST FIX */
    .cc-v32-bottom-controls {
        flex-direction: column; /* Stack Nav above Button */
        align-items: center;
        gap: 30px;
        bottom: 30px;
        left: 20px;
        right: 20px;
    }

    /* 4. Hide the anchor bar separators or the whole bar on tiny screens */
    .cc-service-anchor-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .cc-separator-yellow {
        display: none; /* Separators look messy when wrapping */
    }

    .cc-service-tag {
        font-size: 10px;
        background: rgba(255,255,255,0.1);
        padding: 5px 10px;
        border-radius: 4px;
    }

    /* 5. CTA Group (Button & Timer) */
    .cc-v32-cta-group {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    /* Adjust the Premium Button width for mobile */
    .cc-btn-premium {
        padding: 5px 5px 5px 15px;
        flex: 1; /* allow it to grow */
        max-width: 250px;
    }

    /* Keep the timer proportional */
    .cc-v32-timer {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
}


.cc-v30-wrap {
    padding: 160px 60px;
    background: #fff;
    text-align: center;
}

.cc-v30-reveal {
    font-family: 'Pogonia', serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom:30px;
}
.cc-guarantee-container .cc-v30-reveal, .cc-v6-section .cc-v30-reveal, .cc-v6-section .cc-phil-content p, .cc-v6-section .cc-phil-meta{
    color:white;
}
.cc-v6-section .cc-v30-highlight-container::after{
        background: #a99618;
}

/* Individual Word Styles */
.cc-v30-word {
    display: inline-block;
    opacity: 0;
    filter: blur(15px);
    transform: translateY(10px);
    transition: 
        opacity 0.8s ease, 
        filter 1s ease, 
        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    margin-right: 0.2em; /* Spacing between words */
    will-change: opacity, filter, transform;
}

/* Entering State */
.cc-v30-word.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* THE YELLOW LINE LOGIC */
/* We target the specific span that JS recreated */
.cc-v30-highlight-container {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.cc-v30-highlight-container::after {
    content: "";
    position: absolute;
    left: -2%;
    bottom: 15%;
    width: 104%;
    height: 35%;
    background: #ffde00;
    z-index: -1;
    
    /* Animation start state */
    transform: scaleX(0) rotate(-1.5deg);
    transform-origin: left;
    opacity: 0;
    
    /* Wipe transition */
    transition: 
        transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.4s ease;
}
.cc-guarantee-container .cc-v30-highlight-container::after{
    
    background: #2F855A;
    
}

/* Trigger the wipe */
.cc-v30-highlight-container.is-active::after {
    opacity: 1;
    transform: scaleX(1) rotate(-1.5deg);
    transition-delay: 0.6s; /* Wait for text to appear first */
}


 /* --- THE PLAY BUTTON --- */
    .cc-play-btn-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        cursor: pointer;
    }

    /* The outer pulsing ring */
    .cc-play-pulse {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        z-index: 1;
        animation: pulseRing 2.5s infinite cubic-bezier(0.25, 1, 0.5, 1);
    }

    @keyframes pulseRing {
        0% { transform: translateX(-50%) scale(0.8); opacity: 1; }
        100% { transform: translateX(-50%) scale(1.8); opacity: 0; }
    }

    /* The main button */
    .cc-play-btn {
        position: relative;
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        color: #fff;
    }

    .cc-play-btn svg {
        width: 24px;
        height: 24px;
        margin-left: 4px; /* Optically centers the play triangle */
        transition: transform 0.3s ease;
    }

    /* Hover Interaction */
    .cc-play-btn-wrapper:hover .cc-play-btn {
        background: #fff;
        color: #050505; /* Black icon on hover */
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .cc-play-btn-wrapper:hover .cc-play-btn svg {
        transform: scale(1.1);
    }

    /* The Text Prompt */
    .cc-play-text {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
        background: rgba(0,0,0,0.4);
        padding: 6px 12px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
        transition: opacity 0.3s ease;
    }


    /* --- THE LIGHTBOX MODAL --- */
    .cc-video-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        
        /* Initial Hidden State */
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
    }

    /* Active State */
    .cc-video-lightbox.is-open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    /* The Blur Background */
    .cc-lightbox-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(5, 5, 5, 0.9); /* Deep black translucent */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        cursor: pointer; /* Suggests clicking bg closes it */
    }

    /* The Video Container */
    .cc-lightbox-content {
        position: relative;
        width: 90%;
        max-width: 1100px; /* Cinema width */
        aspect-ratio: 16 / 9;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(0,0,0,0.5);
        
        /* Entrance Physics */
        transform: scale(0.95) translateY(20px);
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .cc-video-lightbox.is-open .cc-lightbox-content {
        transform: scale(1) translateY(0);
    }

    /* HTML5 Video Settings */
    .cc-lightbox-content video,
    .cc-lightbox-content iframe {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
    }

    /* The Close Button */
    .cc-lightbox-close {
        position: absolute;
        top: 30px;
        right: 40px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        z-index: 10000;
        transition: all 0.2s ease;
    }

    .cc-lightbox-close:hover {
        background: #fff;
        color: #000;
        transform: rotate(90deg); /* Sleek spin interaction */
    }

    /* Make sure screen frame can contain the absolute play button */
    .cc-screen-frame {
        position: relative; 
    }

    /* --- THE HUD DOCK CONTAINER --- */
.cc-hud-dock {
    position: absolute;
    bottom: 40px; /* Adjust spacing from bottom */
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    align-items: center;
    
    /* The Glass Effect */
    background: rgba(255, 255, 255, 0.85); /* Milky Glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    padding: 8px;
    border-radius: 16px; /* Smooth corners */
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 40px -10px rgba(0,0,0,0.1), 
        0 0 0 1px rgba(0,0,0,0.05); /* Crisp outline */
        
    z-index: 20;
    white-space: nowrap; /* Keeps it on one line */
    max-width: 90%; /* Safety for mobile */
}

/* --- THE ITEM MODULE --- */
.cc-hud-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
    position: relative;
}

/* Hover Interaction */
.cc-hud-item:hover {
    background: #fff;
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Active State (e.g., if on that page) */
.cc-hud-item.active {
    background: var(--black);
}
.cc-hud-item.active .cc-hud-title { color: #fff; }
.cc-hud-item.active .cc-hud-tag { color: var(--yellow); opacity: 1; }
.cc-hud-item.active .cc-hud-icon { color: #fff; }

/* --- ICON & TEXT --- */
.cc-hud-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--black);
    transition: transform 0.3s ease;
}

.cc-hud-item:hover .cc-hud-icon {
    transform: scale(1.1);
}

.cc-hud-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-hud-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.cc-hud-tag {
    font-size: 9px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* --- THE DIVIDER LINE --- */
.cc-hud-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.1);
    margin: 0 5px;
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .cc-hud-dock {
        bottom: 20px;
        width: 90%;
        overflow-x: auto; /* Allow scroll if screen is tiny */
        justify-content: space-between;
        padding: 5px;
    }
    
    .cc-hud-item {
        padding: 8px 12px;
        flex: 1; /* Distribute space evenly */
        justify-content: center;
    }
    
    .cc-hud-tag {
        display: none; /* Hide subtitle on mobile to save space */
    }
    
    .cc-hud-divider {
        display: none; /* Hide dividers on mobile for cleaner look */
    }
}

/* --- SECTION WRAPPER --- */
.cc-hero-section {
    width: 100%;
    padding: 0px; /* Standard spacing */
    position: relative;
    padding-top:50px;
}

/* --- THE ANIMATED BLOCK --- */
.cc-hero-block {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    
    /* Hardware Acceleration */
    will-change: transform, filter, opacity;
    transform-origin: center center;
    
    /* Initial State (Entrance) */
    transform: scale(0.8);
    filter: blur(10px);
    opacity: 0;
}

/* Frame Styles (Unchanged) */
.cc-screen-frame {
    width: 100%;
    aspect-ratio: 21/9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.3);
}

.cc-screen-img { width: 100%; height: 100%; object-fit: cover; }

/* Dock Styles (Unchanged) */
.cc-center-dock {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 10;
}
            /* --- HERO STAGE CONTAINER --- */
/* --- HERO STAGE (Animation Ready) --- */
.cc-hero-stage {
    position: relative;
    width: 100%;
    max-width: 1400px; /* Max width constraint */
    margin: 0 auto;
    perspective: 1000px;
    
    /* INITIAL STATE (Small) */
    transform: scale(0.6); 
    transform-origin: center center;
    will-change: transform, border-radius; /* Hardware Acceleration */
    
    /* Smoothness for initial load only, JS takes over after */
    transition: transform 0.1s linear; 
}

/* Screen Frame updates */
.cc-screen-frame {
    /* We animate border radius too for that Apple feel */
    border-radius: 40px; 
    overflow: hidden;
    will-change: border-radius;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.3);
}

/* Ensure the image covers correctly during scale */
.cc-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1); /* Internal image scale */
}

/* Slight Zoom on Hover (Optional) */
.cc-hero-stage:hover .cc-screen-img {
    transform: scale(1.02);
}

/* --- 2. THE SYSTEM OVERLAY (Top Left) --- */
.cc-screen-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: 'Inter', monospace; /* Use your mono font */
    font-size: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.cc-status-blink {
    width: 6px;
    height: 6px;
    background: #0f0; /* Matrix Green */
    border-radius: 50%;
    box-shadow: 0 0 8px #0f0;
    animation: blinkStatus 2s infinite;
}

@keyframes blinkStatus {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* --- 3. THE FLOATING DOCK (Bottom Center) --- */
.cc-center-dock {
    position: absolute;
    bottom: 30px; /* Floats inside the image */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 10;
}

/* The Icons */
.cc-dock-icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.85);
    border-radius: 14px; /* Squircle Shape */
    color: #000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy Physics */
    border: 1px solid rgba(255,255,255,0.5);
}

.cc-dock-icon-btn svg {
    width: 20px;
    height: 20px;
}

/* Hover: Pop Up Effect */
.cc-dock-icon-btn:hover {
    transform: translateY(-8px) scale(1.1); /* Physically lifts up */
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2; /* Ensures it overlaps neighbors */
}

/* Active State: Black & Yellow */
.cc-dock-icon-btn.active {
    background: #000; /* Your Brand Black */
    color: #FFDE00; /* Your Brand Yellow */
    border-color: #000;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .cc-screen-frame {
        aspect-ratio: 16/9; /* Taller on mobile for better visibility */
        border-radius: 16px;
    }
    .cc-center-dock {
        bottom: 15px;
        padding: 8px;
        gap: 8px;
    }
    .cc-dock-icon-btn {
        width: 38px;
        height: 38px;
    }
}
    /* --- CSS CONFIG --- */
    :root {
        --v5-black: #050505;
        --v5-yellow: #FFD700;
        --v5-radius: 16px;
    }

    /* --- SECTION --- */
    .cc-v5-section {
        padding: 100px 20px;
        background: #fcfcfc; /* Slight off-white to contrast with pure white sections */
        border-bottom: 1px solid #eee;
    }

    .cc-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- THE GRID (Desktop) --- */
    .cc-v5-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding-bottom: 20px; /* Space for shadow/scroll */
        max-width:1200px;
        margin:0 auto;
    }

    /* --- THE CARD --- */
    .cc-v5-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--v5-radius);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .cc-v5-card:first-child{
        margin-left:20px;
    }

    .cc-v5-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }

    /* Visual Block */
    .cc-v5-visual {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .cc-v5-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .cc-v5-card:hover .cc-v5-img {
        transform: scale(1.05);
    }

    /* The "Step 01" Tag */
    .cc-v5-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--v5-black);
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 800;
        padding: 6px 10px;
        border-radius: 4px;
        letter-spacing: 1px;
        z-index: 2;
    }

    /* Content Block */
    .cc-v5-content {
        padding: 30px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        text-align: left;
    }

    .cc-v5-card-title {
        font-family: 'Pogonia', serif;
        font-size: 28px;
        color: var(--v5-black);
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .cc-v5-role {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 800;
        color: black;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .cc-v5-content p {
        font-size: 14px;
        color: black;
        line-height: 1.6;
        margin-bottom: 25px;
        font-weight: 300;
    }

    /* Link/Button */
    .cc-v5-link {
        margin-top: auto; /* Pushes to bottom */
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 800;
        color: var(--v5-black);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: gap 0.2s ease, opacity 0.2s ease;
        opacity: 0.8;
    }

    .cc-v5-link:hover {
        gap: 12px;
        opacity: 1;
    }

    .cc-arrow {
        color: var(--v5-yellow);
        font-size: 16px;
    }

    /* --- THE CONTROL DECK (Hidden on Desktop) --- */
    .cc-v5-control-deck {
        display: none; /* Hidden by default */
        justify-content: space-between;
        align-items: center;
        max-width: 300px;
        margin: 20px auto 0;
        gap: 20px;
    }

    .cc-deck-btn {
        width: 44px;
        height: 44px;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        color: var(--v5-black);
    }

    .cc-deck-btn:hover {
        border-color: var(--v5-black);
        background: var(--v5-black);
        color: #fff;
    }

    .cc-progress-track {
        flex-grow: 1;
        height: 2px;
        background: #eee;
        position: relative;
        border-radius: 2px;
        overflow: hidden;
    }

    .cc-progress-bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%;
        background: var(--v5-black);
        transition: width 0.1s linear;
    }

    /* --- RESPONSIVE BEHAVIOR (Tablet & Mobile) --- */
    @media (max-width: 1024px) {
        .cc-v5-grid {
            display: flex; /* Switch to flex slider */
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            
            /* Hide Native Scrollbar */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .cc-v5-grid::-webkit-scrollbar { display: none; }

        .cc-v5-card {
            min-width: calc(50% - 10px); /* Show exactly 2 cards on tablet */
            scroll-snap-align: start;
        }

        /* Show the Control Deck */
        .cc-v5-control-deck { display: flex; }
    }

    @media (max-width: 768px) {
        .cc-v5-grid {
            gap: 15px;
            padding-right: 20px; /* Space for end of scroll */
        }

        .cc-v5-card {
            min-width: 85vw; /* Show 1 card + peek of next on mobile */
            scroll-snap-align: center;
        }
    }

           
    /* --- 1. DESKTOP/TABLET (Your Original Table Layout) --- */
    .cc-spec-sheet {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .cc-sheet-header, 
    .cc-sheet-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 20px;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

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

    .cc-mobile-label {
        display: none;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 800;
        color: #999;
        margin-bottom: 5px;
    }

    /* --- 2. ISOLATED CONTROL DECK (Hidden on Desktop) --- */
    .spec-control-deck {
        display: none; /* Hidden on desktop */
        justify-content: space-between;
        align-items: center;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .spec-deck-btn {
        width: 44px;
        height: 44px;
        border: 1px solid #ddd;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #050505;
        margin: 0 15px; /* Replaces gap to prevent bleed */
    }

    .spec-progress-track {
        flex-grow: 1;
        height: 2px;
        background: #eee;
        position: relative;
    }

    .spec-progress-bar {
        position: absolute;
        top: 0; left: 0; height: 100%;
        background: #050505;
        transition: width 0.1s linear;
    }

    /* --- 3. MOBILE ENGINE (The Swipe Fix) --- */
    @media (max-width: 768px) {
        
        #specSlider .cc-sheet-header { 
            display: none; 
        }
        
        /* The Wrapper */
        #specSlider {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch; /* Forces iOS momentum swipe */
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            width: 100%;
            /* Notice: NO GAP used here to prevent mobile flex bugs */
        }
        
        #specSlider::-webkit-scrollbar { display: none; }

        /* The Cards */
        #specSlider .cc-sheet-row {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            
            /* THIS IS THE MAGIC FIX FOR SWIPING */
            /* Do not grow, do not shrink, take up exactly 85% width */
            flex: 0 0 85%; 
            scroll-snap-align: center;
            
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 25px;
            margin-right: 15px; /* Creates the space between cards safely */
        }

        /* Remove margin from last card so scroll stops flush */
        #specSlider .cc-sheet-row:last-child {
            margin-right: 0;
        }

        /* Formatting inside the card */
        #specSlider .cc-mobile-label { display: block; }
        
        #specSlider .cc-col-template, 
        #specSlider .cc-col-bespoke {
            margin-top: 20px;
        }

        /* Show the Deck */
        .spec-control-deck { display: flex; }
    }


            /* --- THE SPEC SHEET (v7.2) --- */

.cc-v7-2-section {
    padding: 100px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

/* Header */
.cc-v7-2-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cc-v7-2-title {
    font-family: 'Pogonia', serif;
    font-size: 42px;
    color: var(--black);
    margin-bottom: 20px;
}

.cc-v7-2-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* --- THE SHEET CONTAINER --- */
.cc-spec-sheet {
    margin: 0 auto 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden; /* Clips corners */
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

/* GRID LAYOUT SETUP */
.cc-sheet-header, 
.cc-sheet-row {
    display: grid;
    /* Col 1 (Text) gets 2 parts, Cols 2 & 3 get 1 part each */
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 20px;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
}

/* Header Row Styling */
.cc-sheet-header {
    background: #f9f9f9;
    border-bottom: 2px solid #eee;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: black;
    text-align:left;
}

/* Standard Row Styling */
.cc-sheet-row {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

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

.cc-sheet-row:hover {
    background: #fafafa; /* Highlight row on hover */
}

.cc-phil-content .cc-spec-sheet h3, .cc-phil-content .cc-spec-sheet p{
    text-align: left;
    margin-bottom:0;
}
.cc-phil-content .cc-spec-sheet p{
    font-size:13px;
}

/* --- COLUMN 1: THE METRIC (Education) --- */
.cc-row-title {
    font-family: 'Pogonia', serif;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
}

.cc-row-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #777;
    max-width: 90%; /* Prevent line getting too long */
}

/* --- COLUMN 2: TEMPLATE (Bad) --- */
.cc-status-bad, .cc-status-good {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.cc-status-bad svg, .cc-status-good svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.cc-status-bad svg, .cc-status-bad{
    fill: #D32F2F;
    color:#D32F2F;
}
.cc-status-good svg, .cc-status-good{
    fill: #2F855A;
    color: #2F855A;;
}

/* --- FOOTER CTA --- */
.cc-v7-2-footer {
    text-align: center;
    margin-top: 40px;
}

.cc-v7-2-footer p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 800px) {
    /* Break the grid into a card layout */
    .cc-sheet-header { display: none; /* Hide header row on mobile */ }
    
    .cc-sheet-row {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 15px;
        padding: 20px;
        border-bottom: 8px solid #f9f9f9; /* Thick separator */
    }

    /* Add labels back in for mobile context */
    .cc-col-template::before { content: "TEMPLATE: "; color: #999; font-size: 10px; font-weight: 800; margin-right: 5px; }
    .cc-col-bespoke::before { content: "BESPOKE: "; color: #999; font-size: 10px; font-weight: 800; margin-right: 5px; }
    
    .cc-row-desc { max-width: 100%; }
}


    /* --- CSS CONFIG --- */
    :root {
        --g-gold: #FFD700;
        --g-trust-green: #00C875; 
        --g-black: #080808; 
        --g-ease: cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* --- SECTION --- */
    .cc-guarantee-section {
        padding: 120px 20px;
        background: #ffffff; 
        position: relative;
    }

    .cc-guarantee-container {
        position: relative;
        max-width: 950px; 
        margin: 0 auto;
        z-index: 1;
        perspective: 1000px; 
        margin-bottom:60px;
    }

    /* --- THE BLACK MONOLITH CARD --- */
    .cc-g-card {
        background: var(--g-black);
        color: #fff;
        border-radius: 30px;
        padding: 80px 60px;
        text-align: center;
        position: relative;
        overflow: hidden; 
        border-top: 3px solid var(--g-trust-green); 
        box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
        will-change: transform, filter, opacity; 
    }

    /* --- THE EMERALD GLOW --- */
    .cc-g-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        width: 650px;
        height: 650px;
        background: radial-gradient(circle, rgba(0, 200, 117, 0.08) 0%, transparent 65%);
        z-index: 0;
        pointer-events: none;
        transition: transform 2s var(--g-ease);
    }

    .cc-g-card.is-visible::before {
        transform: translate(-50%, -50%) scale(1.5);
    }

    /* --- THE SWEEPING LIGHT SHINE --- */
    .cc-g-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 60%;
        height: 100%;
        background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
        transform: skewX(-30deg);
        animation: none;
        z-index: 1;
    }

    .cc-g-card.is-visible::after {
        animation: premiumShine 3s var(--g-ease) forwards;
        animation-delay: 1.2s; 
    }

    @keyframes premiumShine {
        0% { left: -150%; }
        100% { left: 250%; }
    }

    /* --- CONTENT WRAPPER --- */
    .cc-g-content-wrapper { position: relative; z-index: 2; }

    /* --- STARS (Now at the top) --- */
    .cc-g-stars { 
        display: flex; 
        justify-content: center; 
        gap: 8px; 
        margin-bottom: 20px; /* Space above title */
    }

    .cc-star {
        width: 28px;
        height: 28px;
        color: var(--g-gold);
        opacity: 0; transform: scale(0.5) rotate(-30deg); filter: blur(10px);
    }

    .cc-g-card.is-visible .cc-star { animation: starPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .cc-g-card.is-visible .cc-star:nth-child(1) { animation-delay: 0.1s; }
    .cc-g-card.is-visible .cc-star:nth-child(2) { animation-delay: 0.25s; }
    .cc-g-card.is-visible .cc-star:nth-child(3) { animation-delay: 0.4s; }
    .cc-g-card.is-visible .cc-star:nth-child(4) { animation-delay: 0.55s; }
    .cc-g-card.is-visible .cc-star:nth-child(5) { animation-delay: 0.7s; }

    @keyframes starPop {
        0% { opacity: 0; transform: scale(0.5) rotate(-30deg); filter: blur(10px); }
        100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
    }

    /* --- TYPOGRAPHY --- */
    .cc-g-title {
        font-family: 'Pogonia', serif;
        font-size: 52px;
        color: #fff;
        margin-bottom: 25px;
        line-height: 1.1;
        opacity: 0; transform: translateY(20px); filter: blur(5px); transition: all 1s var(--g-ease);
    }

    .cc-phil-content .cc-g-text p {
        
    font-size: 16px;
    line-height: 1.7;
    color: white;
    font-weight: 300;
        max-width: 700px;
        margin: 0 auto 40px;
        opacity: 0; transform: translateY(20px); filter: blur(5px); transition: all 1s var(--g-ease);
    }

    /* Delays adjusted to follow stars */
    .cc-g-card.is-visible .cc-g-title { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.4s; }
    .cc-g-card.is-visible .cc-g-text p { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.55s; }


    /* --- QUOTE STRIP MODULE --- */
    .cc-review-module {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px; 
        padding: 20px 0; /* Sleeker padding */
        border-top: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .cc-review-rotator {
        position: relative;
        height: 24px; 
        width: 100%;
        max-width: 600px;
        opacity: 0; transition: opacity 1s var(--g-ease);
    }

    .cc-g-card.is-visible .cc-review-rotator { opacity: 1; transition-delay: 0.7s; }

    .cc-r-quote {
        position: absolute;
        top: 0; left: 0; width: 100%;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-style: italic;
        color: #aaa;
        opacity: 0;
        transform: translateY(5px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
    }

    .cc-r-quote.active { opacity: 1; transform: translateY(0); }
    .cc-r-author { font-weight: 700; color: #fff; font-style: normal; font-size: 13px; margin-left: 8px; }

    /* --- PILLARS --- */
    .cc-g-pillars {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        opacity: 0; transform: translateY(20px); filter: blur(5px); transition: all 1s var(--g-ease);
    }

    .cc-g-card.is-visible .cc-g-pillars { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.85s; }

    .cc-g-pillar { display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .cc-g-pillar-icon { color: var(--g-trust-green); opacity: 0.9; }
    .cc-g-pillar-title { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff; }
    .cc-phil-content .cc-g-pillar-desc p { font-size: 13px; color: white; line-height: 1.3;font-weight:300; }

    @media (max-width: 768px) {
        .cc-g-card { padding: 50px 20px; }
        .cc-g-title { font-size: 36px; }
        .cc-g-pillars { grid-template-columns: 1fr; gap: 30px; }
        .cc-review-rotator { height: 44px; } /* More height for mobile text wrap */
    }


    /* --- CSS CONFIGURATION --- */
    :root {
        --arch-gap: 30px;
        --arch-radius: 16px;
        --arch-black: #050505;
        --arch-yellow: #FFD700;
    }

    .cc-arch-section {
        padding: 100px 20px;
        background: #fff;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
    }

    /* --- HEADER --- */
    .cc-arch-header {
        max-width: 1200px;
        margin: 0 auto 50px;
    }

    .cc-arch-title {
        font-family: 'Pogonia', serif; /* Your Header Font */
        font-size: 42px;
        color: var(--arch-black);
        margin-bottom: 15px;
    }

    .cc-arch-sub {
        font-size: 16px;
        color: #666;
        max-width: 600px;
        line-height: 1.6;
    }

    /* --- THE GRID CONTAINER --- */
    .cc-arch-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Desktop: 2x2 */
        gap: var(--arch-gap);
        max-width: 1200px;
        margin: 0 auto;
        padding-bottom: 20px; /* Safety padding */
    }

    /* --- THE CARD --- */
    .cc-arch-card {
        position: relative;
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--arch-radius);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .cc-arch-card h3, .cc-arch-card p{
        text-align: left;
    }
    .cc-phil-content .cc-arch-card p{
        
    font-size: 13px;
    }

    .cc-arch-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: rgba(0,0,0,0.15);
    }

    /* Visual Top (Image) */
    .cc-card-visual {
        position: relative;
        border-top-left-radius: var(--arch-radius);
        border-top-right-radius: var(--arch-radius);
        overflow: hidden;
    }

    .cc-card-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .cc-arch-card:hover .cc-card-visual img {
        transform: scale(1.05);
    }

    .cc-card-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(5px);
        color: #fff;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1px;
        padding: 6px 12px;
        border-radius: 4px;
        text-transform: uppercase;
    }

    /* The Unclipped Icon (Sibling to Visual) */
    .cc-card-icon {
        position: absolute;
        top: 190px; /* 220px height - 30px half icon */
        right: 30px;
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        color: var(--arch-black);
        z-index: 2;
    }

    /* Content Body */
    .cc-card-body {
        padding: 40px 30px 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .cc-card-title {
        font-family: 'Pogonia', serif;
        font-size: 24px;
        color: var(--arch-black);
        margin-bottom: 10px;
    }

    .cc-card-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Feature List */
    .cc-feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }

    .cc-feature-list li {
        font-size: 13px;
        color: #444;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .cc-feature-list li svg{
        height:13px;
        width:13px;
    fill: #2F855A;
    }

    .cc-check { color: var(--arch-yellow); font-weight: 900; }

    .cc-text-link {
        font-size: 11px;
        font-weight: 800;
        color: var(--arch-black);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 25px;
        opacity: 0.7;
        transition: 0.2s;
    }
    
    .cc-text-link:hover { opacity: 1; gap: 8px; }

    /* Accordion */
    .cc-accordion-wrapper {
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 25px;
    }

    .cc-accordion-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 10px;
        font-weight: 800;
        color: black;
        letter-spacing: 1px;
    }

    .cc-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .cc-app-list {
        list-style: none;
        padding: 0 0 15px 0;
        margin: 0;
    }

    .cc-app-list li {
        font-size: 13px;
        text-align:left;
        margin-bottom: 6px;
        padding-left: 12px;
        border-left: 2px solid var(--arch-yellow);
    }

    /* Final CTA */
    .cc-card-btn {
        margin-top: auto;
        display: block;
        text-align: center;
        background: var(--arch-black);
        color: #fff;
        padding: 14px;
        border-radius: 50px; /* Modern Pill Shape */
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.3s;
    }

    .cc-card-btn:hover {
        background: #333;
        transform: translateY(-2px);
    }

    /* --- THE COCKPIT CONTROL DECK (Hidden on Desktop) --- */
    .cc-control-deck {
        display: none; /* Default hidden */
        justify-content: space-between;
        align-items: center;
        max-width: 300px;
        margin: 30px auto 0;
        gap: 20px;
    }

    .cc-deck-btn {
        width: 44px;
        height: 44px;
        border: 1px solid #eee;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        color: var(--arch-black);
    }

    .cc-deck-btn:hover {
        border-color: var(--arch-black);
        background: var(--arch-black);
        color: #fff;
    }

    /* The Progress Line */
    .cc-progress-track {
        flex-grow: 1;
        height: 2px;
        background: #eee;
        position: relative;
        border-radius: 2px;
        overflow: hidden;
    }

    .cc-progress-bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0%; /* JS will update this */
        background: var(--arch-black);
        transition: width 0.1s linear;
    }

    /* --- RESPONSIVE BEHAVIOR --- */

    /* TABLET (1024px) - Switch to Slider with 2 Cards */
    @media (max-width: 1024px) {
        .cc-arch-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            
            /* Hide Native Scrollbar */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .cc-arch-grid::-webkit-scrollbar { display: none; }

        .cc-arch-card {
            min-width: calc(50% - 10px); /* Exactly 2 cards */
            scroll-snap-align: start;
        }

        /* Show the Controls */
        .cc-control-deck { display: flex; }
    }

    /* MOBILE (768px) - Switch to Slider with 1 Card + Peek */
    @media (max-width: 768px) {
        .cc-arch-grid {
            gap: 15px;
            padding-right: 20px; /* Space for end of scroll */
        }

        .cc-arch-card {
            min-width: 85vw; /* 1 Card with peek */
            scroll-snap-align: center;
        }
        
        /* Adjust Controls Margin */
        .cc-control-deck { margin-top: 20px; }
    }

       
    /* --- PROCESS SLIDER SECTION --- */
.cc-process-section {
    padding: 100px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.cc-process-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Nav width | Content width */
    gap: 60px;
    margin: 0 auto;
    min-height: 500px; /* Fixed height container to prevent jumping */
}

/* --- LEFT NAVIGATION --- */
.cc-process-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cc-nav-header {
    font-family: 'Pogonia', serif;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 20px;
    padding-left: 10px;
}

/* Nav Button */
.cc-nav-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.3s;
    opacity: 0.5; /* Dimmed by default */
}

.cc-nav-btn:hover {
    background: rgba(0,0,0,0.03);
    opacity: 0.8;
}

.cc-nav-btn.active {
    opacity: 1; /* Fully visible */
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Timer Circle Logic */
.cc-timer-circle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-timer-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Start at top */
}

.cc-bg-ring {
    fill: none;
    stroke: #eee;
    stroke-width: 3;
}

.cc-progress-ring {
    fill: none;
    stroke: var(--yellow); /* Brand Accent */
    stroke-width: 3;
    stroke-dasharray: 113; /* Circumference of r=18 (2 * pi * 18) */
    stroke-dashoffset: 113; /* Start empty */
    transition: stroke-dashoffset 0.1s linear; /* JS will handle animation */
}

/* The Animation Class (Added by JS) */
.cc-nav-btn.active .cc-progress-ring {
    animation: fillTimer 5s linear forwards;
}

.cc-nav-btn.paused .cc-progress-ring {
    animation-play-state: paused;
}

@keyframes fillTimer {
    to { stroke-dashoffset: 0; }
}

.cc-btn-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--black);
    z-index: 1;
}

/* Text Content */
.cc-btn-text {
    display: flex;
    flex-direction: column;
}

.cc-btn-title {
    font-family: 'Pogonia', serif;
    font-size: 16px;
    color: var(--black);
}

.cc-btn-sub {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pause Button */
.cc-pause-toggle {
    margin-top: auto; /* Push to bottom */
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    padding-left: 10px;
    transition: color 0.2s;
}

.cc-pause-toggle:hover { color: var(--black); }


/* --- RIGHT CONTENT WINDOW --- */
.cc-process-window {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Slide Positioning */
.cc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Image | Text */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.cc-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

/* Visual Side */
.cc-slide-visual {
    height: 100%;
    overflow: hidden;
}

.cc-slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease; /* Slow pan effect */
}

.cc-slide.active .cc-slide-visual img {
    transform: scale(1);
}

/* Content Side */
.cc-slide-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Staggered Entrance Animations */
.cc-slide-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.cc-slide.active .cc-slide-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delays */
.cc-slide.active .cc-tag { transition-delay: 0.1s; }
.cc-slide.active h3 { transition-delay: 0.2s; }
.cc-slide.active p { transition-delay: 0.3s; }
.cc-slide.active .cc-slide-list { transition-delay: 0.4s; }

/* Content Styling */
.cc-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cc-slide-content h3 {
    font-family: 'Pogonia', serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.1;
}

.cc-slide-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.cc-slide-list {
    list-style: none;
    padding: 0;
}

.cc-slide-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.cc-slide-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .cc-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cc-process-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px; /* Space for scrollbar */
    }
    
    .cc-nav-btn {
        flex: 0 0 auto; /* Don't shrink */
        width: 200px;
    }
    
    .cc-process-window {
        min-height: 500px;
    }

    .cc-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
    }
    
    .cc-slide-content {
        padding: 30px;
    }
    
    /* Hide pause button on mobile to save space */
    .cc-pause-toggle { display: none; }
}
/* --- SLIDER WRAPPER --- */
.cc-slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    background: #000; /* Default bg */
}

/* --- THE SLIDES --- */
.cc-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.cc-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.cc-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease; /* Slow Zoom Effect */
}

.cc-hero-slide.active img {
    transform: scale(1.1); /* Zooms in while active */
}

/* Dark overlay to make text pop if needed */
.cc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

/* --- THE SYSTEM MONITOR (Timer) --- */
.cc-system-monitor {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.6); /* Tech Dark */
    backdrop-filter: blur(10px);
    padding: 8px 12px 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cc-monitor-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.cc-mon-label { font-family: 'Inter', monospace; font-size: 8px; color: #aaa; letter-spacing: 1px; }
.cc-mon-index { font-family: 'Inter', monospace; font-size: 11px; color: #fff; font-weight: 700; }

.cc-timer-circle {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-timer-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 3; }

.cc-timer-progress {
    fill: none;
    stroke: var(--yellow); /* Brand Color */
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 126; /* Circumference of r=20 circle approx */
    stroke-dashoffset: 126; /* Start empty */
    transform: rotate(-90deg); /* Start at top */
    transform-origin: center;
    /* transition handled by JS for smoothness */
}

.cc-timer-icon {
    position: absolute;
    font-size: 8px;
    color: #fff;
}

/* --- THE INTERACTIVE DOCK --- */
.cc-hero-dock {
    position: absolute;
    bottom: 30px;
    left: -40px; /* Overlap Style */
    z-index: 20;
    display: flex;
    flex-direction: column; /* Stack vertically for "Control Panel" feel */
    gap: 10px;
}

.cc-dock-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 12px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
    overflow: hidden; /* For the loader bar */
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cc-dock-icon { color: #888; transition: 0.3s; }
.cc-dock-title { display: block; font-size: 11px; font-weight: 900; color: #333; }
.cc-dock-desc { display: block; font-size: 10px; color: #888; }

/* Active State */
.cc-dock-btn.active {
    background: #fff;
    transform: translateX(10px); /* Popped out */
    border-color: var(--black);
}

.cc-dock-btn.active .cc-dock-icon { color: var(--yellow); }
.cc-dock-btn.active .cc-dock-title { color: var(--black); }

/* The Linear Loader Bar (Bottom of button) */
.cc-btn-loader {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--yellow);
    width: 0%;
    transition: width 0.1s linear; /* JS updates this */
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .cc-hero-dock {
        position: relative;
        left: auto;
        bottom: auto;
        flex-direction: row; /* Horizontal on mobile */
        margin-top: -30px;
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }
    .cc-dock-btn {
        min-width: auto;
        flex: 1;
        padding: 10px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .cc-dock-desc { display: none; } /* Hide description to save space */
}
/* --- 1. HERO LAYOUT --- */
.cc-hero-cockpit {
    padding: 160px 0 100px; /* Top padding clears fixed header */
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.cc-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Image side slightly larger */
    gap: 60px;
    align-items: center;
}

/* --- 2. LEFT CONTENT --- */
.cc-hero-content {
    position: relative;
    z-index: 2;
}

/* The Review Badge */
.cc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f5f5f7;
    padding: 8px 16px 8px 8px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
}

.cc-badge-icon {
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cc-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.cc-stars{
    text-align:left;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.cc-stars svg { fill: #FBBC05; width: 13px;}
.cc-rating { font-size: 9px; font-weight: 800; color: #333; letter-spacing: 0.5px; }

/* Typography */
.cc-hero-title {
    font-family: 'Pogonia', serif;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 25px;
}

.cc-highlight-text {
    /* Subtle yellow highlight behind text */
    background: linear-gradient(120deg, transparent 0%, transparent 10%, rgba(255, 222, 0, 0.3) 10%, rgba(255, 222, 0, 0.3) 90%, transparent 90%);
    padding: 0 5px;
}

.cc-hero-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Buttons */
.cc-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content:center;
}

.cc-btn-primary {
    background: var(--black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.cc-btn-primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.cc-btn-secondary {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
    text-transform: uppercase;
}
.cc-btn-secondary svg{
    width:25px;
}

.cc-play-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: 0.3s;
}

.cc-btn-secondary:hover .cc-play-icon {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* --- 3. RIGHT CONTENT (Visual + Dock) --- */
.cc-hero-visual {
    position: relative;
    /* Creating a canvas for the dock */
}

.cc-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* Aspect ratio for the main hero image */
    aspect-ratio: 4/3; 
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.cc-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.cc-image-wrapper:hover .cc-hero-img {
    transform: scale(1.03);
}

.cc-tech-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc-tech-overlay span {
    color: #0f0; /* Matrix Green */
    font-family: 'Inter', monospace;
    font-size: 9px;
    letter-spacing: 1px;
}

/* --- 4. THE GLASS DOCK (Quick Links) --- */
.cc-hero-dock {
    position: absolute;
    bottom: 30px; /* Floats over bottom of image area */
    left: -30px; /* Overlaps nicely to the left */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.9);
    z-index: 10;
}

.cc-dock-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: rgba(255,255,255,0.5);
    min-width: 140px;
}

.cc-dock-icon {
    color: var(--black);
    display: flex;
    align-items: center;
}

.cc-dock-info {
    display: flex;
    flex-direction: column;
}

.cc-dock-title {
    font-size: 10px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 0.5px;
}

.cc-dock-desc {
    font-size: 9px;
    color: #666;
}

/* Dock Hover */
.cc-dock-item:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cc-dock-item:hover .cc-dock-icon {
    color: var(--yellow);
}

/* --- ANIMATIONS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.8s forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* --- MOBILE --- */
@media (max-width: 1024px) {
    .cc-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cc-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cc-hero-actions {
        justify-content: center;
    }

    .cc-hero-dock {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -40px; /* Pull it up over the image slightly */
        flex-direction: column; /* Stack links on mobile */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cc-dock-item {
        width: 100%;
        justify-content: center;
    }
}
/* --- 1. SECTION SETUP --- */
.cc-glass-section {
    padding: 120px 0;
    position: relative;
    background: transparent; /* Keep your existing background */
    overflow: hidden;
}

/* Optional: A faint blurred orb behind the cards to make the "Glass" effect visible */
.cc-bg-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 222, 0, 0.08) 0%, rgba(255,255,255,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.cc-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 60px auto 80px;
    max-width: 1100px;
}

/* --- 2. THE GLASS CARD --- */
.cc-glass-card {
    position: relative;
    /* The Magic: Frosted Glass Background */
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(20px); /* Blurs whatever is behind it */
    -webkit-backdrop-filter: blur(20px);
    
    /* Crystal Borders (Lighter top, Darker bottom to simulate light source) */
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    
    border-radius: 20px;
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.05), /* Soft Shadow */
        0 0 0 1px rgba(0,0,0,0.02); /* Crisp Outline */
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.cc-glass-content {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

/* The Gloss Reflection (Top Right Corner) */
.cc-glass-shine {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Typography */
.cc-glass-grade {
    font-family: 'Inter', monospace;
    font-size: 10px;
    color: #bbb;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.cc-glass-card h3 {
    font-family: 'Pogonia', serif;
    font-size: 26px;
    color: var(--black);
    margin: 0 0 5px 0;
    font-weight: 400;
}

.cc-glass-target {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin: 0;
}

.cc-glass-divider {
    width: 100%;
    height: 1px;
    /* Gradient Divider */
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    margin: 25px 0;
}

/* List Styling */
.cc-glass-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-glass-list li {
    font-size: 14px;
    color: #444;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- 3. THE HIGHLIGHT CARD (Frosted Gold) --- */
.cc-glass-highlight {
    /* Slightly thicker glass feel */
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: scale(1.03);
    z-index: 10;
}

.cc-glass-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.05); /* Dark Glass Pill */
    color: var(--black);
    font-size: 9px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 30px;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

/* --- 4. GLASS CALCULATOR --- */
.cc-calc-glass {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border-radius: 50px; /* Full Pill Shape */
    padding: 15px 15px 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cc-calc-glass-content h3 {
    font-family: 'Pogonia', serif;
    font-size: 18px;
    margin: 0;
    color: var(--black);
}

.cc-calc-glass-content p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.cc-btn-glass-arrow {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.3s;
}

.cc-btn-glass-arrow:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 5px 15px rgba(255, 222, 0, 0.3);
}

/* --- HOVER EFFECTS --- */
.cc-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .cc-glass-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .cc-glass-highlight {
        transform: scale(1);
    }
    .cc-calc-glass {
        flex-direction: column;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        gap: 20px;
    }
}

    /* --- V6 CSS CONFIG --- */
    /* Variables scoped specifically to this section to prevent bleed */
    .cc-v6-section {
        --v6-black: #050505;
        --v6-gold: #FFD700;
        --v6-duration: 6000ms; /* 6 Seconds per slide */
        
        background: var(--v6-black);
        padding: 100px 20px;
        position: relative;
    }

    /* --- V6 HEADER --- */
    .cc-v6-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .cc-v6-section-title {
        font-family: 'Pogonia', serif;
        font-size: 48px;
        color: #fff;
        line-height: 1.1;
        margin: 0;
    }

    /* --- V6 SLIDER WRAPPER --- */
    .cc-v6-slider {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 24px;
        overflow: hidden;
        aspect-ratio: 16 / 9; /* Cinematic widescreen */
        background: #111;
        box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    }

    /* --- V6 SLIDES --- */
    .cc-v6-slide {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease, visibility 0.8s ease;
        overflow: hidden;
    }

    .cc-v6-slide.is-active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    /* V6 Ken Burns Effect */
    .cc-v6-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform var(--v6-duration) linear;
    }

    .cc-v6-slide.is-active .cc-v6-bg-img {
        transform: scale(1.08); /* Slow zoom while active */
    }

    /* V6 Gradient Overlay (For text contrast) */
    .cc-v6-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.2) 60%, transparent 100%);
    }

    /* --- V6 CENTERED GLASS CARD --- */
    .cc-v6-glass-card {
        position: absolute;
        bottom: 70px; /* Space for the timer below it */
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 90%;
        max-width: 700px;
        background: rgba(15, 15, 15, 0.4);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .cc-v6-slide.is-active .cc-v6-glass-card {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        transition-delay: 0.3s; 
    }

    /* V6 Glass Content Typography */
    .cc-v6-tag {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 800;
        color: var(--v6-gold);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .cc-v6-title {
        font-family: 'Pogonia', serif;
        font-size: 32px;
        color: #fff;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    .cc-v6-desc {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto; margin-right: auto;
    }

    /* --- V6 OVAL BUTTON --- */
    .cc-v6-btn {
        display: inline-flex;
        align-items: center;
        background: #fff;
        color: var(--v6-black);
        border: none;
        border-radius: 50px;
        padding: 6px 6px 6px 25px;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cc-v6-btn-circle {
        width: 38px; height: 38px;
        background: var(--v6-black);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #fff;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        margin-left: 15px;
    }

    .cc-v6-btn:hover { background: var(--v6-gold); }
    .cc-v6-btn:hover .cc-v6-btn-circle { transform: translateX(4px) scale(1.05); }

    /* --- V6 PROGRESS DASHES --- */
    .cc-v6-nav {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .cc-v6-track {
        width: 50px;
        height: 3px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    /* Invisible expanded hit area for easier clicking */
    .cc-v6-track::before {
        content: ''; position: absolute; top: -15px; bottom: -15px; left: 0; right: 0;
    }

    .cc-v6-fill {
        position: absolute;
        top: 0; left: 0; height: 100%; width: 0%;
        background: #fff;
        border-radius: 2px;
    }

    .cc-v6-track.is-active .cc-v6-fill {
        width: 100%;
        transition: width var(--v6-duration) linear;
    }

    /* --- V6 RESPONSIVE --- */
    @media (max-width: 1024px) {
        .cc-v6-slider { aspect-ratio: 4 / 3; }
        .cc-v6-glass-card { bottom: 50px; padding: 30px; }
        .cc-v6-title { font-size: 28px; }
    }

    @media (max-width: 768px) {
        .cc-v6-slider { 
            aspect-ratio: auto; /* Allow natural height on mobile */
            height: 600px; /* Fixed height so cards don't jump */
            border-radius: 16px; 
        }
        .cc-v6-glass-card { 
            width: 90%; 
            bottom: 50px; 
            padding: 25px 20px; 
            background: rgba(10, 10, 10, 0.6); 
        }
        .cc-v6-title { font-size: 24px; }
        .cc-v6-desc { font-size: 14px; margin-bottom: 20px; }
        .cc-v6-nav { bottom: 20px; }
    }

.cc-faq-section {
    padding: 100px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

/* Header */
.cc-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.cc-faq-title {
    font-family: 'Pogonia', serif;
    font-size: 42px;
    color: var(--black);
    margin-bottom: 20px;
}

.cc-faq-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* --- THE ACCORDION SYSTEM --- */
.cc-faq-wrapper {
    max-width: 1100px; /* The perfect reading width */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between items */
}

/* The Item Container */
.cc-faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Active state styling (when open) */
.cc-faq-item.is-open {
    border-color: var(--black); /* Dark border when active */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* The Clickable Trigger */
.cc-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 20px;
}

/* 1. Category Tag (Small, Techy) */
.cc-faq-category {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: black;
    min-width: 80px; /* Aligns questions nicely */
}

/* 2. The Question */
.cc-faq-question {
    font-family: 'Pogonia', serif; /* Or your heading font */
    font-size: 18px;
    color: var(--black);
    flex-grow: 1; /* Pushes icon to the right */
    transition: color 0.3s;
}

.cc-faq-item.is-open .cc-faq-question {
    color: var(--black); /* Can change to Brand Color if desired */
}

/* 3. The Icon (Plus / Minus) */
.cc-faq-icon {
    width: 24px;
    height: 24px;
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

/* Rotate icon when open (Plus becomes Cross) */
.cc-faq-item.is-open .cc-faq-icon {
    transform: rotate(45deg); 
    color: var(--black);
}

/* --- THE CONTENT (Hidden by default) --- */
.cc-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Apple-style ease */
}

.cc-faq-inner {
    padding: 0 30px 30px 130px; /* Indented to align with question text, ignoring category tag */
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.cc-faq-inner p {
    margin-bottom: 15px;
}

.cc-faq-inner p:last-child {
    margin-bottom: 0;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .cc-hero-actions{
        flex-direction: column;
    }
    .cc-faq-trigger {
        flex-wrap: wrap; /* Allow category to stack */
        padding: 20px;
        gap: 10px;
    }
    
    .cc-faq-category {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .cc-faq-inner {
        padding: 0 20px 20px 20px; /* Remove indentation on mobile */
    }
}
/* --- 1. LAYOUT --- */
.cc-faq-section {
    padding: 100px 0;
    /* Optional: Keep consistent with previous section background */
    background: transparent; 
}

.cc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- 2. THE GLASS ITEM --- */
.cc-faq-item {
    margin-bottom: 20px;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Subtle shadow edge */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover State */
.cc-faq-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

/* --- 3. THE TRIGGER (Question) --- */
.cc-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.cc-faq-title {
    font-family: 'Pogonia', serif; /* Use your brand font */
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

.cc-faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--yellow); /* Brand accent */
    transition: transform 0.3s ease;
}

/* --- 4. THE CONTENT (Answer) --- */
.cc-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-faq-inner {
    padding: 0 30px 30px 30px;
    border-top: 1px solid rgba(0,0,0,0.03); /* Subtle separator */
}

.cc-faq-inner p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 20px 0 0 0;
}

/* --- 5. ACTIVE STATE (JS) --- */
.cc-faq-item.active {
    background: #fff; /* Solid white when open for readability */
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.05);
}

.cc-faq-item.active .cc-faq-icon {
    transform: rotate(45deg); /* Turns + into x */
    color: var(--black);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .cc-faq-grid {
        grid-template-columns: 1fr; /* Stack vertically */
    }
}
/* --- 1. LAYOUT --- */
.cc-cinema-section {
    padding: 100px 0 140px;
    background: #000; /* Dark mode for cinema feel */
    color: #fff;
}
/* --- CONTAINER OVERRIDE --- */
/* Use this class on any section where you need vertical stacking */
.cc-container.cc-stack {
    display: block !important; /* Overrides the flex */
    text-align: center; /* Ensures content centers naturally */
}

/* Optional: If you want to keep flex but stack vertically */
.cc-container.cc-flex-col {
    flex-direction: column !important;
    justify-content: center;
}

/* Override the white header styles for this dark section */
.cc-cinema-section .cc-v30-reveal { color: #fff; }
.cc-cinema-section .cc-phil-meta { color: #666; }

/* --- 2. THE STAGE --- */
.cc-cinema-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    margin: 0 auto 40px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.cc-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Slight dim for text readability */
    transition: opacity 0.5s;
}

/* The Veil (Fades to black during switch) */
.cc-video-veil {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 5;
}

/* --- 3. THE INFO OVERLAY --- */
.cc-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

.cc-project-tag {
    display: block;
    font-family: 'Inter', monospace;
    font-size: 10px;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cc-video-info h3 {
    font-family: 'Pogonia', serif;
    font-size: 42px;
    margin: 0 0 15px 0;
    line-height: 1;
}

.cc-video-info p {
    font-size: 16px;
    color: #ccc;
    max-width: 500px;
    margin: 0;
    line-height: 1.6;
}

.cc-view-case-btn {
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

.cc-view-case-btn:hover {
    background: #fff;
    color: #000;
}

/* --- 4. THE THUMBNAIL NAV --- */
.cc-cinema-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cc-nav-thumb {
    flex: 1;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    border-top: 2px solid rgba(255,255,255,0.1);
    text-align: left;
    transition: 0.3s;
    position: relative;
}

.cc-thumb-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

/* Active State */
.cc-nav-thumb.active {
    border-top-color: var(--white);
}

.cc-nav-thumb.active .cc-thumb-label {
    color: var(--white);
}

/* Progress Bar Effect (Optional) */
.cc-thumb-progress {
    position: absolute;
    top: -2px;
    left: 0;
    height: 2px;
    background: var(--yellow);
    width: 0%;
    transition: width 10s linear; /* Matches video length roughly */
}

.cc-nav-thumb.active .cc-thumb-progress {
    width: 100%;
}

@media (max-width: 768px) {
    .cc-cinema-stage { aspect-ratio: 4/5; border-radius: 0; }
    .cc-video-info { flex-direction: column; align-items: flex-start; gap: 20px; padding: 30px; }
    .cc-cinema-nav { flex-direction: column; padding: 0 30px; }
}
/* --- FLOW STACK CONTAINER --- */
.cc-flow-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CARD DESIGN (Clean & Architectural) --- */
.cc-flow-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #eee;
    padding: 35px 50px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* ANIMATION START STATE: Hidden & Pushed Right */
    opacity: 0;
    transform: translateX(100px); 
}

.cc-flow-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left; /* Re-align text to left inside the centered container */
}

.cc-flow-num {
    font-family: 'Pogonia', serif;
    font-size: 18px;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 2px;
}

.cc-flow-details h3 {
    font-family: 'Pogonia', serif;
    font-size: 22px;
    color: var(--black);
    margin: 0 0 8px 0;
    font-weight: 400;
}

.cc-flow-details p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    max-width: 450px;
    line-height: 1.5;
}

.cc-flow-arrow {
    font-size: 20px;
    color: #ddd;
    transition: 0.3s;
}

/* --- ANIMATION ACTIVE STATE --- */
.cc-flow-card.is-in-view {
    opacity: 1;
    transform: translateX(0); /* Slide to center */
}

/* --- HOVER INTERACTION --- */
.cc-flow-card:hover {
    border-color: var(--black);
    transform: translateX(-10px) !important; /* Gentle nudge left on hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cc-flow-card:hover .cc-flow-arrow {
    color: var(--black);
    transform: translateX(5px);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .cc-flow-card {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cc-flow-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cc-flow-arrow {
        align-self: flex-end;
    }
}

.cc-phil-premium {
    background: #ffffff;
    padding: 180px 0;
    color: #000;
}

.cc-container-narrow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    margin-top:180px;
}

.cc-phil-row {
    text-align: center;
    margin:0 20px;
    margin-bottom: 60px;
}
.cc-phil-row.nomb {
    text-align: center;
    margin-bottom: 0px;
}

.cc-phil-meta {
        font-family: 'Inter', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 800;
    color: black;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.cc-phil-content p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.5;
    color: black;
    font-weight: 300;
    margin-bottom:30px;
}

/* STRUCTURAL LINE */
.cc-phil-line {
    width: 1px;
    height: 150px;
    background: #eeeeee;
    margin: 0 auto 60px;
}

/* NAVIGATION */
.cc-phil-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.cc-phil-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #000;
    transition: 0.3s;
}

.cc-nav-dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    transition: 0.3s;
}

.cc-phil-nav-link:hover {
    color: #aeaeae;
}

.cc-phil-nav-link:hover .cc-nav-dot {
    transform: scale(2);
    box-shadow: 0 0 10px var(--yellow);
}

@media (max-width: 768px) {
    .cc-phil-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


/* --- SECTION STYLING --- */
.cc-local-seo {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

/* --- MARQUEE SLIDER --- */
.cc-logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 100px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cc-marquee-track {
    display: flex;
    width: fit-content;
    gap: 80px;
    animation: scrollMarquee 20s linear infinite;
}

.cc-marquee-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Placeholder Logo Style (Replace with <img>) */
.cc-client-logo {
    font-family: 'Inter', monospace;
    font-weight: 900;
    font-size: 24px;
    color: #ddd; /* Inactive Grey */
    transition: 0.3s;
    white-space: nowrap;
    cursor: default;
}

.cc-client-logo:hover {
    color: var(--black); /* Lights up on hover */
    transform: scale(1.1);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- HYPER-LOCAL TEXT --- */
.cc-geo-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cc-geo-content h3 {
    font-family: 'Pogonia', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--black);
}

.cc-geo-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.cc-geo-content a {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--yellow);
}

/* --- THE MAP CARD --- */
.cc-geo-map {
    height: 250px;
    background-color: #f5f5f7;
    background-image: radial-gradient(#ddd 1px, transparent 1px); /* Dot Pattern Map */
    background-size: 20px 20px;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.cc-map-pin {
    width: 20px;
    height: 20px;
    background: var(--black);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.cc-pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulseMap 2s infinite;
    z-index: -1;
}

.cc-map-label {
     position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 300px;
    text-align: left;
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    font-size: 11px;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cc-map-label span{
    text-transform: initial;
    letter-spacing: 0;
    font-size: 13px;
    line-height: 1.5;
    color: black;
    font-weight: 300;
}

@keyframes pulseMap {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

@media (max-width: 768px) {
    .cc-geo-grid { grid-template-columns: 1fr; }
    .cc-logo-marquee { margin-bottom: 60px; }
}
    /* --- CSS CONFIG --- */
:root {
    --cc-black: #050505;
    --cc-gold: #FFD700;
    --cc-bg-light: #fafafa;
}

/* --- SECTION & INTRO --- */
.cc-contact-split {
    background: var(--cc-bg-light);
    padding: 100px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cc-contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.cc-cta-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--cc-black);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.cc-cta-title {
    font-family: 'Pogonia', serif;
    font-size: 48px;
    color: var(--cc-black);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cc-cta-title span {
    position: relative;
    display: inline-block;
}

.cc-cta-title span::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 0;
    width: 100%; height: 10px;
    background: rgba(255, 215, 0, 0.4);
    z-index: -1;
}

.cc-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

/* --- THE 2-COLUMN GRID --- */
.cc-contact-grid {
    display: grid;
    /* Ratio: Form takes up slightly more space than the contact details */
    grid-template-columns: 1.3fr 1fr; 
    gap: 40px;
    align-items: start;
    max-width:1200px;
    margin:0 auto;
}

/* --- COLUMN 1: THE FORM (Light Mode) --- */
.cc-form-col {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.03);
}

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

.cc-input-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align:left;
}

.cc-req { color: #d93025; }

.wpcf7-form-control-wrap { display: block !important; }

.cc-form-col input[type="text"],
.cc-form-col input[type="email"],
.cc-form-col input[type="tel"],
.cc-form-col textarea {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: black;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight:300;
}

.cc-form-col input::placeholder,
.cc-form-col textarea::placeholder { color: #bbb; }

.cc-form-col input:focus,
.cc-form-col textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--cc-black);
    box-shadow: 0 0 0 4px rgba(5, 5, 5, 0.05);
}

.cc-form-col textarea { resize: vertical; min-height: 120px; }

/* Left-Aligned Submit Button */
.cc-submit-left {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns button to the left */
    gap: 15px;
}

.cc-btn-oval {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 4px 4px 18px !important;
    background: var(--black);
    border: 1px solid black;
    border-radius: var(--v4-radius);
    text-decoration: none !important;
    transition: all var(--v4-speed) ease !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 50px;
}

.cc-btn-circle {
    width: 36px;
    height: 36px;
    background: #ffde01;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cc-btn-circle svg {
    width: 14px;
    height: 14px;
    color: var(--black);
    transition: transform var(--v4-speed) ease;
}
.cc-form-secure {
    font-family: 'Inter', sans-serif; font-size: 12px; color: black;
    display: flex; align-items: center; gap: 6px;
}
.cc-form-secure svg { color: #00D37F; }

/* --- COLUMN 2: DIRECT CONTACT (Dark Mode) --- */
.cc-info-col {
    background: var(--cc-black);
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    text-align: left;
    align-items: flex-start;
}

.cc-info-title {
    font-family: 'Pogonia', serif;
    font-size: 32px;
    margin:0;
    margin-bottom: 15px;
}

.cc-phil-content p.cc-info-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: white;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cc-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cc-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cc-info-icon {
    width: 36px;
    height: 36px;
    background: #ffde01;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cc-info-icon svg{
    
    stroke: black;
}

.wpcf7-form-control-wrap{
    margin-top:10px;
}
.cc-info-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.cc-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-info-link,
.cc-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cc-info-link:hover {
    color: var(--cc-gold);
}

/* Validation Fixes */
.wpcf7-not-valid-tip { font-size: 12px !important; color: #d93025 !important; margin-top: 5px; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { border: 1px solid #d93025; color: #d93025; background: #fce8e6; border-radius: 8px; font-size: 13px; padding: 12px; }
.wpcf7 form.sent .wpcf7-response-output { border: 1px solid #00D37F; color: #00995c; background: #e6f9f0; border-radius: 8px; font-size: 13px; padding: 12px; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .cc-contact-grid { grid-template-columns: 1fr; } /* Stacks the columns on tablet */
    .cc-info-col { padding: 40px; }
}

@media (max-width: 768px) {
    .cc-contact-split { padding: 80px 20px; }
    .cc-cta-title { font-size: 36px; }
    .cc-form-col { padding: 30px 20px; }
    .cc-form-grid { grid-template-columns: 1fr; gap: 0; }
    .cc-info-col { padding: 40px 20px; }
    .cc-info-item { flex-direction: column; gap: 15px; } /* Stacks icons on top of text on tiny screens */
}