/* ──────────────────────────────────────────
   Pages & Blog Styles
   ────────────────────────────────────────── */

/* Page Header */
.page-header {
    padding: var(--spacing-lg) 0;
}

.page-header .page-title {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--color-secondary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--color-text-light);
}

/* Content + Sidebar Layout */
.content-sidebar-wrap {
    display: flex;
    gap: var(--spacing-md);
}

.content-sidebar-wrap .content-area {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .content-sidebar-wrap {
        flex-direction: column;
    }
}

/* Sidebar */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar .widget {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--color-bg-grey);
    border-radius: var(--radius-md);
}

.sidebar .widget-title {
    font-size: 1rem;
    color: var(--color-primary);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.sidebar .widget ul {
    list-style: none;
}

.sidebar .widget ul li {
    padding: 6px 0;
    border-bottom: 1px solid var(--color-border);
}

.sidebar .widget ul li:last-child {
    border-bottom: none;
}

.sidebar .widget ul li a {
    color: var(--color-text-main);
    font-size: 0.875rem;
}

.sidebar .widget ul li a:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
    }
}

/* Post Cards (Grid) */
.post-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.post-card-thumbnail {
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--color-bg-grey);
}

.post-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.05);
}

.post-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.post-card-body {
    padding: var(--spacing-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-meta {
    margin-bottom: 0.5rem;
}

.post-card-meta .separator {
    margin: 0 0.25rem;
}

.post-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--color-primary);
}

.post-card-title a:hover {
    color: var(--color-secondary);
}

.post-card-excerpt {
    flex: 1;
    margin-bottom: 0.75rem;
}

.post-card-link {
    color: var(--color-secondary);
    font-weight: 600;
}

.post-card-link:hover {
    color: var(--color-primary);
}

/* Single Post */
.single-post-content .entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.single-post-content .entry-content p {
    margin-bottom: 1.5em;
}

.single-post-content .entry-content h2,
.single-post-content .entry-content h3,
.single-post-content .entry-content h4 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.single-post-content .entry-content img {
    border-radius: var(--radius-md);
    margin: var(--spacing-sm) 0;
}

.single-post-content .entry-content blockquote {
    border-left: 4px solid var(--color-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-md) 0;
    background: var(--color-bg-grey);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.single-post-content .entry-content ul,
.single-post-content .entry-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.single-post-content .entry-content li {
    margin-bottom: 0.5em;
    list-style: disc;
}

.single-post-content .entry-content ol li {
    list-style: decimal;
}

.single-post-content .entry-content pre {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 1.5em;
}

.single-post-content .entry-content code {
    background: var(--color-bg-grey);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.875em;
}

.single-post-content .entry-content pre code {
    background: none;
    padding: 0;
}

/* Page Content */
.page-content .entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    max-width: 800px;
}

.page-content .entry-content p {
    margin-bottom: 1.5em;
}

/* Post Navigation */
.post-navigation {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.post-navigation .nav-title {
    color: var(--color-primary);
    font-weight: 600;
}

.post-navigation a:hover .nav-title {
    color: var(--color-secondary);
}

/* Comments */
.comments-area {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.comments-title {
    margin-bottom: var(--spacing-md);
}

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

.comment-list .comment {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.comment-list .comment .comment-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 0.5rem;
}

.comment-list .comment .comment-author img {
    border-radius: 50%;
}

.comment-list .comment .comment-content p {
    margin-bottom: 0.5em;
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(230, 177, 49, 0.15);
}

.comment-form .submit {
    background: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.comment-form .submit:hover {
    background: var(--color-primary-light);
}

/* Pagination */
.pagination {
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: var(--transition);
}

.pagination .page-numbers:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
}

/* 404 Page */
.error-404 .search-form {
    display: flex;
    max-width: 400px;
    margin: var(--spacing-sm) auto 0;
}

.error-404 .search-form .search-field {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.error-404 .search-form .search-submit {
    background: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.error-404 .search-form .search-submit:hover {
    background: var(--color-primary-light);
}

/* Search Form (general) */
.search-form {
    display: flex;
    max-width: 400px;
}

.search-form .search-field {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.search-form .search-submit {
    background: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-weight: 600;
}

/* Spacing Helpers */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.pt-sm { padding-top: var(--spacing-sm); }

/* Text Helpers */
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--color-text-muted); }
.op-80 { opacity: 0.8; }
.op-50 { opacity: 0.5; }
.border-t { border-top: 1px solid rgba(255, 255, 255, 0.1); }

/* Header styles - Always dark */
.site-header {
    background: rgba(33, 33, 33, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    z-index: 100;
    transition: var(--transition);
}

.site-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Non-front pages: push content below fixed header */
.site-header.fixed-header ~ .site-main {
    padding-top: var(--header-height);
}

/* Front page: hero goes behind transparent header */
.site-header.fixed-header ~ .site-main.front-page {
    padding-top: 0;
}

.site-header.scrolled {
    background: rgba(33, 33, 33, 0.95);
    box-shadow: var(--shadow-md);
}

.site-branding .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link .custom-logo {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: var(--spacing-sm);
    list-style: none;
}

.main-navigation ul li a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation ul li a:hover {
    color: var(--color-secondary);
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(33, 33, 33, 0.95);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs) 0;
    z-index: 101;
}

.nav-item.menu-item-has-children {
    position: relative;
}

.nav-item.menu-item-has-children:hover > .nav-dropdown {
    display: block;
}

.nav-dropdown li {
    display: block;
}

.nav-dropdown li a {
    display: block;
    padding: 8px 16px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-light);
}

.nav-dropdown li a::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile lang item - hidden on desktop */
.mobile-lang-item {
    display: none;
}

/* Mobile menu uses Font Awesome icons */
.mobile-menu-toggle i {
    color: var(--color-text-light);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(33, 33, 33, 0.95);
        flex-direction: column;
        padding: var(--spacing-sm);
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .main-navigation ul.active {
        display: flex;
    }

    .main-navigation ul li a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-text-light);
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        padding-left: var(--spacing-sm);
    }

    .nav-item.menu-item-has-children:hover > .nav-dropdown {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .mobile-lang-item {
        display: flex;
        justify-content: center;
        gap: 0;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mobile-lang-item a {
        padding: 6px 12px !important;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        border-bottom: none !important;
    }

    .mobile-lang-item a.mobile-lang-active {
        background: var(--color-secondary);
        border-radius: 3px;
    }

    .post-grid.grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Header Actions */
.header-actions {
    position: relative;
    z-index: 10;
}

.header-actions .btn-sm {
    padding: 6px 16px;
    font-size: 0.8125rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-switcher li {
    list-style: none;
}

.lang-switcher li a {
    display: block;
    padding: 4px 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.lang-switcher li a:hover {
    background: var(--color-secondary);
    color: #fff;
}

.lang-switcher li.current-lang a {
    background: var(--color-secondary);
    color: #fff;
    font-weight: 600;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.icon-link:hover {
    color: var(--color-secondary);
}

.icon-link svg {
    width: 20px;
    height: 20px;
}

/* Footer - 1-column centered */
.site-footer {
    background: var(--color-primary);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.site-footer .footer-links {
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
}

.site-footer .footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.site-footer .footer-links a:hover {
    color: var(--color-secondary);
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

.site-info {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer widget areas kept for compatibility */

/* Page Links */
.page-links {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border);
}

/* ──────────────────────────────────────────
   Hero Slider (Fullbleed Background Images)
   ────────────────────────────────────────── */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05));
}

.slide-content {
    position: relative;
    z-index: 3;
    padding-top: 0;
    width: 100%;
    max-width: 1400px;
    text-align: left;
}

.slide-subtitle {
    display: block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-title .title-highlight {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-top: 10px;
    color: var(--color-secondary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.slide-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
    font-weight: 300;
}

.slide-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.slide.active .slide-subtitle,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons .btn + .btn {
    margin-left: 10px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.slider-controls .container {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
}

.progress-container {
    flex-grow: 1;
    max-width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.arrow-btn:hover {
    color: #fff;
}

.paging-info {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    font-family: var(--font-heading);
}

/* ──────────────────────────────────────────
   Front Page Sections
   ────────────────────────────────────────── */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-md);
}

.section-header-row .section-title {
    margin-bottom: 0;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-link svg {
    transition: var(--transition);
}

.btn-link:hover svg {
    transform: translateX(4px);
}

/* ──────────────────────────────────────────
   Why Charlie Chois? - 4 Step Accordion
   ────────────────────────────────────────── */
.wcc-section {
    background-color: #fff;
    color: var(--color-primary);
    padding: 100px 0;
}

.wcc-section .section-subtitle {
    color: var(--color-secondary-hover);
}

.wcc-section .section-title {
    color: var(--color-primary);
}

.wcc-section .section-desc {
    color: #666;
}

/* Accordion Container */
.wcc-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Accordion Item */
.wcc-item {
    border: 2px solid #eee;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wcc-item:hover,
.wcc-item.is-open {
    border-color: var(--color-secondary);
}

.wcc-item.is-open {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Accordion Header (clickable bar) */
.wcc-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.wcc-item-header:hover {
    background: #fafafa;
}

.wcc-item.is-open .wcc-item-header {
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.wcc-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.wcc-step-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.wcc-item-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.wcc-item.is-open .wcc-item-icon {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.wcc-item-center {
    flex: 1;
    min-width: 0;
}

.wcc-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 2px 0;
}

.wcc-item-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.wcc-item-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    font-size: 0.85rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.wcc-item.is-open .wcc-item-toggle {
    transform: rotate(180deg);
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* Accordion Body (expandable content) */
.wcc-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.wcc-item.is-open .wcc-item-body {
    max-height: 5000px;
}

.wcc-item-content {
    padding: 36px 32px 32px;
}

/* Headline */
.wcc-headline {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.6;
    text-align: center;
    padding: 20px 16px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #f8f6f0, #f0ede4);
    border-radius: 10px;
    font-style: italic;
}

/* Intro */
.wcc-intro {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.wcc-intro p {
    margin: 0;
}

.wcc-intro-label {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

/* Section Divider */
.wcc-section-divider {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-secondary);
}

/* Subsections */
.wcc-subsections {
    margin-bottom: 28px;
}

.wcc-sub {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    border-left: 3px solid var(--color-secondary);
}

.wcc-sub:last-child {
    margin-bottom: 0;
}

.wcc-sub-marker {
    flex-shrink: 0;
    width: 52px;
    text-align: center;
    padding-top: 2px;
}

.wcc-sub-num {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.wcc-sub-marker i {
    font-size: 1.4rem;
    color: var(--color-primary);
}

.wcc-sub-content {
    flex: 1;
}

.wcc-sub-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.wcc-sub-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
}

.wcc-sub-text p {
    margin-bottom: 6px;
}

.wcc-sub-text p:last-child {
    margin-bottom: 0;
}

/* CEO Message */
.wcc-ceo {
    background: #f8f6f0;
    border-left: 4px solid var(--color-secondary);
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 28px 0;
    font-style: italic;
}

.wcc-ceo-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-style: normal;
}

.wcc-ceo-badge i {
    margin-right: 4px;
}

.wcc-ceo p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Brand Cards Area (bottom of each accordion) */
.wcc-cards-area {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 24px;
    margin-top: 8px;
}

.wcc-cards-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.wcc-cards-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.wcc-cards-header h4 i {
    color: var(--color-secondary);
    margin-right: 6px;
}

/* Language Tabs */
.wcc-dl-lang-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.wcc-dl-tab {
    padding: 4px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
}

.wcc-dl-tab:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.wcc-dl-tab.active {
    background: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
    font-weight: 700;
}

/* Card Images */
.wcc-dl-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.wcc-dl-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.wcc-dl-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.wcc-img-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Download Buttons */
.wcc-dl-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wcc-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 18px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    text-decoration: none;
}

.wcc-dl-btn:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* ──────────────────────────────────────────
   Insight Cards (Front Page Blog Preview)
   ────────────────────────────────────────── */
.insight-card {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.insight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.insight-card-thumb {
    display: block;
    height: 180px;
    overflow: hidden;
    background: var(--color-bg-grey);
}

.insight-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insight-card:hover .insight-card-thumb img {
    transform: scale(1.05);
}

.insight-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.insight-card-body {
    padding: var(--spacing-sm);
}

.insight-card-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.insight-card-title {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0.5rem 0;
}

.insight-card-title a {
    color: var(--color-primary);
}

.insight-card-title a:hover {
    color: var(--color-secondary);
}

.insight-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .insights-section .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
}

/* ──────────────────────────────────────────
   Contact Section (Parallax Background)
   ────────────────────────────────────────── */
.contact-section {
    position: relative;
    background-image: url(../images/contact_bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-overlay {
    width: 100%;
    padding: 120px 0;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
    padding-right: 60px;
}

.text-white {
    color: #fff;
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.contact-info i {
    color: var(--color-secondary);
}

.contact-form-wrapper {
    flex: 1;
    background: transparent;
    padding: 0;
    color: #fff;
}

.contact-alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-alert--success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #a3f0b8;
}

.contact-alert--error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #f5a3ad;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    color: #fff;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.2);
}

.form-input.full {
    margin-bottom: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* ──────────────────────────────────────────
   Smooth Page Transitions
   ────────────────────────────────────────── */
.site-main {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────
   Front Page Section Utilities
   ────────────────────────────────────────── */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-subtitle {
    display: block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light-grey { background: var(--color-bg-grey); }
.bg-dark { background: var(--color-bg-dark); }

.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* Value Prop Section - kept for compatibility */

/* ──────────────────────────────────────────
   Products Section
   ────────────────────────────────────────── */
.products-section {
    background-color: #fff;
    color: var(--color-primary);
    padding: 100px 0;
}

.products-section .section-subtitle {
    color: var(--color-secondary-hover);
}

.products-section .section-title {
    color: var(--color-primary);
}

.products-section .section-desc {
    color: #666;
}

.products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.view-all-link {
    color: var(--color-secondary-hover);
    font-size: 1.1rem;
    font-weight: 500;
}

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

.product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--color-secondary-hover);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 700;
}

.product-price {
    display: block;
    font-weight: 500;
    color: #333;
    text-align: right;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Badge Variants */
.product-badge.badge-new {
    background: var(--color-primary);
    color: #fff;
}

.product-badge.badge-best {
    background: #e74c3c;
    color: #fff;
}

/* Best Sellers Section — alternate background */
.products-section--best {
    background-color: var(--color-bg-grey);
}

/* Empty State */
.products-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
    font-size: 1rem;
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
}

/* Brand Partners Section - now using brands.css */

/* ──────────────────────────────────────────
   Solution Section (Pricing)
   ────────────────────────────────────────── */
.solution-section {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 100px 0;
}

.solution-section .section-title {
    color: #fff;
}

.solution-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Virtual Branch Introduction */
.vb-intro {
    margin-bottom: 80px;
}

.vb-main-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.3;
}

.vb-block {
    margin-bottom: 40px;
}

.vb-block h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.vb-definition {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.vb-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vb-value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.vb-value-item i {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.vb-value-item strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.vb-value-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.vb-org-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Department Cards */
.vb-depts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.vb-dept-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.vb-dept-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.vb-dept-num {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 12px;
}

.vb-dept-card h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
}

.vb-dept-card h5 small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.vb-dept-detail {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vb-dept-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.vb-dept-contact {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}

.vb-dept-contact i {
    color: var(--color-secondary);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.vb-dept-contact span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .vb-depts {
        grid-template-columns: repeat(3, 1fr);
    }
    .vb-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vb-main-title {
        font-size: 1.3rem;
    }
    .vb-depts {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    .vb-intro {
        margin-bottom: 50px;
    }
}

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

.price-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--color-secondary);
}

.best-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 0 6px 0 6px;
}

.price-label {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.price-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
}

.price-subtitle {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.price-goal {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-secondary);
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-value-prefix {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}

.price-includes {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 0;
    padding: 8px 12px;
    background: rgba(196, 160, 56, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(196, 160, 56, 0.2);
}

.price-features {
    margin-bottom: 30px;
    text-align: left;
    list-style: none;
    padding: 16px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
}

.price-features li::before {
    content: '→';
    color: var(--color-secondary);
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-features li strong {
    color: #fff;
    font-weight: 600;
}

.price-features li.price-report {
    margin-top: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-features li.price-report::before {
    display: none;
}

.price-features li.price-report i {
    color: var(--color-secondary);
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .price-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .price-card.featured {
        transform: none;
    }
}

/* ──────────────────────────────────────────
   Initial Setup Section
   ────────────────────────────────────────── */
.setup-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.setup-header {
    text-align: center;
    margin-bottom: 50px;
}

.setup-main-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 10px 0 12px;
}

.setup-en-title {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.setup-sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.setup-sub strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.setup-block {
    margin-bottom: 50px;
}

.setup-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.setup-why-sub {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.setup-block-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
}

.setup-block-desc strong {
    color: #fff;
    font-weight: 600;
}

/* Setup Reasons (3 items) */
.setup-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.setup-reason-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}

.setup-reason-item i {
    font-size: 1.3rem;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.setup-reason-item strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.setup-reason-item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.setup-reason-item span strong {
    display: inline;
    color: var(--color-secondary);
    font-size: 0.82rem;
}

/* Setup Table */
.setup-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.setup-price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.setup-price-table thead {
    background: rgba(196, 160, 56, 0.15);
}

.setup-price-table th {
    padding: 14px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: left;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.setup-price-table td {
    padding: 14px 18px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.setup-price-table tbody tr:last-child td {
    border-bottom: none;
}

.setup-price-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.setup-price-table td strong {
    color: #fff;
    font-weight: 700;
}

.setup-price-cell {
    color: var(--color-secondary) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

/* Setup Included Grid */
.setup-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.setup-included-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}

.setup-included-item i {
    font-size: 1.3rem;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.setup-included-item strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.setup-included-item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* CEO Message */
.setup-ceo-message {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(196, 160, 56, 0.1), rgba(196, 160, 56, 0.03));
    border: 1px solid rgba(196, 160, 56, 0.25);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    margin-top: 20px;
}

.setup-ceo-icon {
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.setup-ceo-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.setup-ceo-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--color-secondary);
}

.setup-ceo-quote small {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.setup-ceo-body {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.setup-ceo-body strong {
    color: var(--color-secondary);
    font-weight: 700;
}

/* Setup Section Responsive */
@media (max-width: 1024px) {
    .setup-reasons {
        grid-template-columns: 1fr;
    }

    .setup-included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .setup-section {
        margin-top: 50px;
        padding-top: 40px;
    }

    .setup-main-title {
        font-size: 1.5rem;
    }

    .setup-ceo-message {
        flex-direction: column;
        padding: 24px 20px;
    }

    .setup-ceo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ──────────────────────────────────────────
   CC Logo Text
   ────────────────────────────────────────── */
.cc-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
}

.cc-logo-text strong {
    font-weight: 800;
}

.btn-header-login {
    padding: 8px 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-text-light);
    border-radius: 4px;
}

.btn-header-login:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* Section label - now using .section-subtitle class */

/* Old hero slider classes removed - using new fullbleed slider */

/* Feature icon circles - replaced with .feature-icon in new design */

/* Brand section - styles moved to brands.css */

/* Contact form select options */
.contact-section .form-input option {
    background: var(--color-primary);
    color: var(--color-text-light);
}

/* Design Card shared utility styles (reused in modals) */

.dc-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Card Actions - Centered */
.dc-pair-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dc-action-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #777;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    text-decoration: none;
}

.dc-action-link:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.dc-download-pair {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.dc-download-pair:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* ──────────────────────────────────────────
   Responsive - Design Components
   ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-title .title-highlight {
        font-size: 3rem;
    }

    .section-header {
        text-align: center;
    }

    .products-section .section-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .slider-controls .container {
        gap: 15px;
    }

    .progress-container {
        max-width: 150px;
    }

    /* WCC accordion responsive */
    .wcc-item-header {
        padding: 18px 20px;
        gap: 14px;
    }

    .wcc-item-left {
        flex-direction: column;
        gap: 8px;
    }

    .wcc-item-content {
        padding: 24px 20px;
    }

    .wcc-headline {
        font-size: 1.1rem;
        padding: 16px 12px;
    }

    .wcc-sub {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .wcc-ceo {
        padding: 18px 18px;
    }

    .wcc-cards-area {
        padding: 18px 14px;
    }

    .wcc-cards-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .wcc-dl-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-title .title-highlight {
        font-size: 2.5rem;
    }

    .slide-buttons .btn + .btn {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }

    .wcc-section {
        padding: 60px 0;
    }

    .wcc-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .wcc-item-title {
        font-size: 1.05rem;
    }

    .wcc-step-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
    }
}

/* ──────────────────────────────────────────
   Coming Soon Page
   ────────────────────────────────────────── */
.coming-soon-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    padding: 80px 0;
}

.coming-soon-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 32px;
    background: rgba(230, 177, 49, 0.1);
    border: 2px solid rgba(230, 177, 49, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-secondary);
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.coming-soon-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.coming-soon-desc:empty {
    display: none;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.coming-soon-notice {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 40px;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.coming-soon-btn:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2rem;
    }

    .coming-soon-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

/* ──────────────────────────────────────────
   Intro Video Section (Home)
   ────────────────────────────────────────── */
.intro-video-section {
    background: var(--color-bg-dark);
    padding: 100px 0;
}

.intro-video-section .section-title {
    color: #fff;
}

.intro-video-wrap,
.about-video-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.intro-video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.intro-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* About page video variant */
.about-video-section {
    background: var(--color-bg-grey);
    padding: 60px 0;
}

@media (max-width: 768px) {
    .intro-video-section {
        padding: 60px 0;
    }

    .about-video-section {
        padding: 40px 0;
    }

    .intro-video-player {
        border-radius: var(--radius-sm);
    }
}
