/**
 * Computational Chemistry Framework Page Styles
 * 
 * Enterprise-level styling with molecular/chemistry theme (purple/blue palette)
 * Following the pattern from highnoon-language-layout.css
 */

/* ============================================================================
   CSS CUSTOM PROPERTIES
   ============================================================================ */

.ccf-page {
    --ccf-primary: #9333ea;
    --ccf-primary-light: #a855f7;
    --ccf-primary-dark: #7c22bb;
    --ccf-secondary: #3b82f6;
    --ccf-secondary-light: #60a5fa;
    --ccf-accent-gold: #f59e0b;
    --ccf-accent-green: #10b981;
    --ccf-text: #f1f5f9;
    --ccf-text-muted: #94a3b8;
    --ccf-bg-dark: #0a0a0f;
    --ccf-bg-card: rgba(30, 30, 45, 0.6);
    --ccf-border: rgba(147, 51, 234, 0.2);
    --ccf-glass: rgba(255, 255, 255, 0.03);

    min-height: 100vh;
    background: linear-gradient(180deg, var(--ccf-bg-dark) 0%, #0d0d18 100%);
    color: var(--ccf-text);
    font-family: var(--font-primary, 'Inter', sans-serif);
    overflow-x: hidden;
}

/* Breadcrumbs */
.ccf-page .breadcrumbs {
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ccf-page .breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.ccf-page .breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--ccf-text-muted);
}

.ccf-page .breadcrumbs li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--ccf-border);
}

.ccf-page .breadcrumbs li:last-child::after {
    display: none;
}

.ccf-page .breadcrumbs li:last-child {
    color: var(--ccf-primary-light);
}

.ccf-page .breadcrumbs a {
    color: var(--ccf-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ccf-page .breadcrumbs a:hover {
    color: var(--ccf-text);
}


/* Animation Classes */
.ccf-animate-slide-up {
    animation: ccfSlideUp 0.8s ease-out forwards;
}

@keyframes ccfSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ccf-section--visible {
    animation: ccfFadeIn 0.7s ease-out forwards;
}

@keyframes ccfFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Spacer */
.ccf-section-spacer {
    height: 4rem;
}

/* Highlight Badges */
.ccf-highlight {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.ccf-highlight--purple {
    background: rgba(147, 51, 234, 0.15);
    color: var(--ccf-primary-light);
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.ccf-highlight--blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--ccf-secondary-light);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.ccf-highlight--gold {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.ccf-highlight--green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Section Titles */
.ccf-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ccf-text) 0%, var(--ccf-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ccf-section-subtitle {
    font-size: 1.125rem;
    color: var(--ccf-text-muted);
    max-width: 700px;
    line-height: 1.7;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.ccf-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.ccf-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ccf-hero__molecular-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

.ccf-hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(147, 51, 234, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.ccf-hero__glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: ccfOrbFloat 8s ease-in-out infinite;
}

.ccf-hero__glow-orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.ccf-hero__glow-orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes ccfOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-10px, 10px) scale(0.95);
    }

    75% {
        transform: translate(15px, 15px) scale(1.02);
    }
}

.ccf-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.ccf-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ccf-primary-light);
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.ccf-hero__title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--ccf-primary-light) 50%, var(--ccf-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ccf-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ccf-text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-inline: auto;
}

.ccf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ccf-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ccf-hero__btn--primary {
    background: linear-gradient(135deg, var(--ccf-primary) 0%, var(--ccf-secondary) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.ccf-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5);
}

.ccf-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ccf-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.ccf-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Molecular Visualization */
.ccf-molecular-viz {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    opacity: 0.6;
}

.ccf-molecular-viz__orbital {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ccf-molecular-viz__orbital--1 {
    width: 100px;
    height: 100px;
    border-color: rgba(147, 51, 234, 0.3);
    animation: ccfOrbitPulse 4s ease-in-out infinite;
}

.ccf-molecular-viz__orbital--2 {
    width: 180px;
    height: 180px;
    border-color: rgba(59, 130, 246, 0.25);
    animation: ccfOrbitPulse 5s ease-in-out infinite 1s;
}

.ccf-molecular-viz__orbital--3 {
    width: 260px;
    height: 260px;
    border-color: rgba(147, 51, 234, 0.15);
    animation: ccfOrbitPulse 6s ease-in-out infinite 2s;
}

.ccf-molecular-viz__nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--ccf-primary-light), var(--ccf-secondary));
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.6);
}

.ccf-molecular-viz__electron {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--ccf-secondary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.ccf-molecular-viz__electron--1 {
    animation: ccfElectronOrbit1 3s linear infinite;
}

.ccf-molecular-viz__electron--2 {
    animation: ccfElectronOrbit2 4s linear infinite;
}

.ccf-molecular-viz__electron--3 {
    animation: ccfElectronOrbit3 5s linear infinite;
}

@keyframes ccfOrbitPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes ccfElectronOrbit1 {
    from {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

@keyframes ccfElectronOrbit2 {
    from {
        transform: rotate(120deg) translateX(90px) rotate(-120deg);
    }

    to {
        transform: rotate(480deg) translateX(90px) rotate(-480deg);
    }
}

@keyframes ccfElectronOrbit3 {
    from {
        transform: rotate(240deg) translateX(130px) rotate(-240deg);
    }

    to {
        transform: rotate(600deg) translateX(130px) rotate(-600deg);
    }
}

@media (max-width: 1024px) {
    .ccf-molecular-viz {
        display: none;
    }
}

/* ============================================================================
   WHAT IS IT SECTION
   ============================================================================ */

.ccf-what-section {
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.ccf-what-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Benchmark Callout */
.ccf-benchmark-callout {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.ccf-benchmark-callout__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ccf-benchmark-callout__number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ccf-primary-light), var(--ccf-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ccf-benchmark-callout__label {
    font-size: 1.125rem;
    color: var(--ccf-text);
}

.ccf-benchmark-callout__note {
    font-size: 0.875rem;
    color: var(--ccf-text-muted);
}

/* What Grid */
.ccf-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .ccf-what-grid {
        grid-template-columns: 1fr;
    }
}

/* Architecture Panel */
.ccf-architecture-panel {
    background: var(--ccf-bg-card);
    border: 1px solid var(--ccf-border);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.ccf-architecture-panel__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ccf-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ccf-border);
}

.ccf-architecture-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ccf-architecture-item {
    padding-left: 1rem;
    border-left: 3px solid var(--ccf-primary);
}

.ccf-architecture-item__title {
    font-weight: 600;
    color: var(--ccf-primary-light);
    display: block;
    margin-bottom: 0.25rem;
}

.ccf-architecture-item__desc {
    font-size: 0.875rem;
    color: var(--ccf-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Features Panels */
.ccf-features-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ccf-feature-panel {
    background: var(--ccf-bg-card);
    border: 1px solid var(--ccf-border);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.ccf-feature-panel__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ccf-text);
    margin-bottom: 1rem;
}

.ccf-feature-panel--included .ccf-feature-panel__title {
    color: var(--ccf-accent-green);
}

.ccf-feature-panel--enterprise .ccf-feature-panel__title {
    color: var(--ccf-accent-gold);
}

.ccf-feature-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ccf-feature-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ccf-text-muted);
}

.ccf-feature-panel__list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--ccf-accent-green);
}

.ccf-feature-panel--enterprise .ccf-feature-panel__list li svg {
    color: var(--ccf-accent-gold);
}

.ccf-feature-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ccf-accent-gold);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ccf-feature-panel__link:hover {
    background: rgba(245, 158, 11, 0.2);
}

/* ============================================================================
   CAPABILITIES SECTION
   ============================================================================ */

.ccf-capabilities-section {
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.ccf-capabilities-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ccf-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .ccf-capabilities-grid {
        grid-template-columns: 1fr;
    }
}

.ccf-capability-card {
    background: var(--ccf-bg-card);
    border: 1px solid var(--ccf-border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ccf-capability-card:hover {
    border-color: var(--ccf-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.15);
}

.ccf-capability-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid var(--ccf-border);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--ccf-primary-light);
}

.ccf-capability-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ccf-text);
    margin-bottom: 0.75rem;
}

.ccf-capability-card__desc {
    font-size: 0.9375rem;
    color: var(--ccf-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ccf-capability-card__details {
    display: block;
    font-size: 0.8125rem;
    color: var(--ccf-primary-light);
    padding-top: 0.75rem;
    border-top: 1px solid var(--ccf-border);
}

/* ============================================================================
   QUICK START SECTION
   ============================================================================ */

.ccf-quickstart-section {
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.ccf-quickstart-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ccf-quickstart-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .ccf-quickstart-content {
        grid-template-columns: 1fr;
    }
}

/* Code Block */
.ccf-code-block {
    background: #0d0d14;
    border: 1px solid var(--ccf-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.ccf-code-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--ccf-border);
}

.ccf-code-block__dots {
    display: flex;
    gap: 0.5rem;
}

.ccf-code-block__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ccf-code-block__dots span:nth-child(1) {
    background: #ff5f56;
}

.ccf-code-block__dots span:nth-child(2) {
    background: #ffbd2e;
}

.ccf-code-block__dots span:nth-child(3) {
    background: #27c93f;
}

.ccf-code-block__lang {
    font-size: 0.75rem;
    color: var(--ccf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ccf-code-block__copy {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ccf-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ccf-code-block__copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ccf-text);
}

.ccf-code-block__pre {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.7;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.ccf-code-block__pre code {
    color: #e2e8f0;
}

/* Quickstart Info */
.ccf-quickstart-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ccf-requirements,
.ccf-datasets {
    background: var(--ccf-bg-card);
    border: 1px solid var(--ccf-border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
}

.ccf-requirements__title,
.ccf-datasets__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ccf-text);
    margin-bottom: 1rem;
}

.ccf-requirements__list,
.ccf-datasets__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ccf-requirements__list li,
.ccf-datasets__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.ccf-requirements__name,
.ccf-datasets__name {
    color: var(--ccf-text);
}

.ccf-requirements__version,
.ccf-datasets__molecules {
    color: var(--ccf-text-muted);
}

/* ============================================================================
   COMPARISON SECTION
   ============================================================================ */

.ccf-compare-section {
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.ccf-compare-section__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ccf-compare-table-wrapper {
    margin-top: 2.5rem;
    overflow-x: auto;
}

.ccf-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ccf-bg-card);
    border: 1px solid var(--ccf-border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.ccf-compare-table thead {
    background: rgba(147, 51, 234, 0.1);
}

.ccf-compare-table th,
.ccf-compare-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--ccf-border);
}

.ccf-compare-table th {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ccf-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ccf-compare-table th:nth-child(2) {
    color: var(--ccf-secondary-light);
}

.ccf-compare-table th:nth-child(3) {
    color: var(--ccf-accent-gold);
}

.ccf-compare-table td {
    font-size: 0.9375rem;
    color: var(--ccf-text-muted);
}

.ccf-compare-table td:first-child {
    font-weight: 500;
    color: var(--ccf-text);
}

.ccf-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.ccf-compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ccf-compare-cta {
    margin-top: 2rem;
}

.ccf-compare-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ccf-bg-dark);
    background: linear-gradient(135deg, var(--ccf-accent-gold) 0%, #f97316 100%);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.ccf-compare-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.ccf-faq-section {
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.ccf-faq-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.ccf-faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ccf-faq-item {
    background: var(--ccf-bg-card);
    border: 1px solid var(--ccf-border);
    border-radius: 0.75rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ccf-faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ccf-text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.ccf-faq-item__question:hover {
    color: var(--ccf-primary-light);
}

.ccf-faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--ccf-text-muted);
}

.ccf-faq-item__icon.rotated {
    transform: rotate(180deg);
}

.ccf-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ccf-faq-item--open .ccf-faq-item__answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.ccf-faq-item__answer p {
    font-size: 0.9375rem;
    color: var(--ccf-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.ccf-cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(147, 51, 234, 0.05) 100%);
}

.ccf-cta-section__inner {
    max-width: 700px;
    margin: 0 auto;
}

.ccf-cta-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--ccf-text);
    margin-bottom: 1rem;
}

.ccf-cta-section__description {
    font-size: 1.125rem;
    color: var(--ccf-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ccf-cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ccf-cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ccf-cta-section__btn--primary {
    background: linear-gradient(135deg, var(--ccf-primary) 0%, var(--ccf-secondary) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.ccf-cta-section__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5);
}

.ccf-cta-section__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ccf-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ccf-cta-section__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

@media (max-width: 640px) {
    .ccf-hero {
        min-height: 80vh;
        padding: 5rem 1.5rem 3rem;
    }

    .ccf-hero__actions {
        flex-direction: column;
    }

    .ccf-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .ccf-section-spacer {
        height: 2.5rem;
    }

    .ccf-benchmark-callout__number {
        font-size: 2.25rem;
    }

    .ccf-capability-card {
        padding: 1.5rem;
    }

    .ccf-compare-table th,
    .ccf-compare-table td {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }

    .ccf-cta-section__actions {
        flex-direction: column;
    }

    .ccf-cta-section__btn {
        width: 100%;
        justify-content: center;
    }
}