:root {
    --brand-black: #1b1c1e;
    --brand-blue: #51e7db;
    --brand-purple: #676bd4;
    --white: #ffffff;
    --red: #e74c3c;
    --green: #2ecc71;
}

/* Make sure this integration works with the site theme */
.site-content {
    background-color: var(--brand-black);
}

.cs-hero {
    height: 800px;
    position: relative;
    background-color: var(--brand-black) !important;
    overflow: hidden;
    width: 100%;
    margin: -32px auto 0; /* This negative margin helps with full width */
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(81, 231, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(103, 107, 212, 0.08) 0%, transparent 50%);
}

.gradient-overlay-homepage {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(29 31 33) 0%, rgb(29 31 33) 100%);
}

.exclusive-tag {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(81, 231, 219, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Manrope', sans-serif;
    color: var(--brand-blue);
    border: 1px solid rgba(81, 231, 219, 0.2);
    z-index: 10;
}

/* Fix for event links */
.exclusive-tag a {
    color: var(--white);
    text-decoration: none;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.tag-spots {
    padding: 0.25rem 0.75rem;
    background: rgba(81, 231, 219, 0.15);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white); /* Make sure this is white */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px; /* Match your original content width */
    margin: 0 auto;
    padding: 120px 2rem 0;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    height: 100%;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(103, 107, 212, 0.1);
    border: 1px solid rgba(103, 107, 212, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    color: var(--brand-purple);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--brand-purple);
    border-radius: 50%;
    position: relative;
}
.pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: inherit;
    animation: pulse 2s ease-out infinite;
}

.hero-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.title-line {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.15s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
    color: var(--brand-blue);
}

.hero-subtitle {
    animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.key-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    font-family: 'Manrope', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.key-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: var(--brand-blue);
}

.primary-cta-wrapper {
    margin-top: 3rem;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background-color: var(--brand-blue);
    border: none;
    border-radius: 4px;
    color: var(--brand-black);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 220px;
}

.primary-cta:hover {
    background-color: var(--brand-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.value-proposition {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    max-width: 450px;
}

.value-header {
    margin-bottom: 1.5rem;
    font-family: 'Manrope', sans-serif;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.value-icon {
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 600;
    width: 24px;
    height: 24px;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-text {
    font-family: 'Manrope', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight-point {
    margin-top: 0.75rem;
}

.highlight-point .value-icon {
    color: var(--brand-purple);
}

.highlight-point .value-text {
    font-weight: 500;
}

.bottom-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 28, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 2rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ticker-divider {
    color: var(--brand-blue);
}

/* Keyframes */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Queries - Simplified for better performance */
@media (max-width: 1200px) {
    .cs-hero {
        height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-title { font-size: 3.5rem; }
    .bottom-ticker { padding-top: 40px; position: relative; }
}

@media (max-width: 768px) {
    .cs-hero {
        height: auto;
        min-height: 100vh;
    }
    .hero-title { font-size: 2.75rem; }
    .exclusive-tag { position: relative; }
    .key-features { flex-direction: column; gap: 1rem; }
}

.cs-benefits-section {
    padding: 100px 0;
    background-color: #1d1f21; /* Slightly lighter than hero for subtle separation */
    position: relative;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-blue);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}

.benefit-column {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.benefit-column:hover {
    transform: translateY(-5px);
}

.brand-column {
    border-top: 4px solid var(--brand-blue);
}

.vendor-column {
    border-top: 4px solid var(--brand-purple);
}

.column-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.column-icon {
    font-size: 24px;
}

.column-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-check {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--brand-blue);
}

.benefit-content {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.benefit-content strong {
    color: var(--white);
}

.column-cta {
    margin-top: auto;
    text-align: center;
}

.benefits-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--brand-blue);
    color: var(--brand-black);
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.benefits-cta:hover {
    transform: translateY(-3px);
    background-color: #5fffe2; /* Slightly lighter on hover */
}

.vendor-cta {
    background-color: var(--brand-purple);
    color: var(--white);
}

.vendor-cta:hover {
    background-color: #7c80e2; /* Slightly lighter on hover */
}

.live-questions {
    background: linear-gradient(135deg, rgba(27, 28, 30, 0.95) 0%, rgba(27, 28, 30, 0.8) 100%);
    border-radius: 12px;
    padding: 35px 40px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.question-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pulse-icon {
    width: 12px;
    height: 12px;
    background-color: var(--brand-blue);
    border-radius: 50%;
    position: relative;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background-color: rgba(81, 231, 219, 0.3);
    animation: pulse 2s infinite;
}

.question-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.question-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.question-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.question-mark {
    flex-shrink: 0;
    font-size: 20px;
}

.question-content {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.5;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-column {
        padding: 30px;
    }
    
    .cs-benefits-section {
        padding: 70px 0;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-content,
    .question-content {
        font-size: 1rem;
    }
    
    .benefits-cta {
        width: 100%;
    }
}

.cs-how-section {
    padding: 100px 0;
    background-color: var(--brand-black);
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* Subtle background pattern */
.cs-how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(81, 231, 219, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(103, 107, 212, 0.03) 0%, transparent 30%);
    opacity: 0.5;
    pointer-events: none;
}

.how-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-blue);
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin: 30px 0 10px;
}

.section-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin: 10px 0 0;
}

.we-do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.we-do-column {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.we-do-column:hover {
    transform: translateY(-5px);
}

.we-do-column:first-child {
    border-left: 3px solid var(--red);
}

.we-do-column:last-child {
    border-left: 3px solid var(--green);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
    font-size: 24px;
}

.column-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.negative h3 {
    color: var(--red);
}

.positive h3 {
    color: var(--green);
}

.point-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-icon {
    flex-shrink: 0;
    font-size: 24px;
}

.negative .point-icon {
    color: var(--red);
}

.positive .point-icon {
    color: var(--green);
}

.point-content {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.point-content strong {
    color: var(--white);
}

.vendor-access {
    background: linear-gradient(135deg, rgba(103, 107, 212, 0.1) 0%, rgba(81, 231, 219, 0.1) 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.access-header {
    margin-bottom: 40px;
}

.access-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.info-icon {
    font-size: 22px;
    color: var(--brand-purple);
}

.info-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.instead-section {
    margin-top: 30px;
}

.instead-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 25px;
    color: var(--brand-blue);
}

.instead-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instead-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.instead-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.instead-icon {
    font-size: 20px;
    color: var(--brand-blue);
}

.instead-content {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.instead-content strong {
    color: var(--white);
}

.connection-highlight {
    background: linear-gradient(135deg, rgba(81, 231, 219, 0.15) 0%, rgba(81, 231, 219, 0.05) 100%);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    border: 1px solid rgba(81, 231, 219, 0.1);
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-content {
    font-family: 'Manrope', sans-serif;
}

.highlight-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-content p strong {
    color: var(--white);
}

/* Subtle reveal animation for elements as they come into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.we-do-column,
.vendor-access,
.connection-highlight {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-header { animation-delay: 0.1s; }
.we-do-column:first-child { animation-delay: 0.3s; }
.we-do-column:last-child { animation-delay: 0.5s; }
.vendor-access { animation-delay: 0.7s; }
.connection-highlight { animation-delay: 0.9s; }

/* Responsive Styles */
@media (max-width: 900px) {
    .we-do-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-how-section {
        padding: 70px 0;
    }
    
    .connection-highlight {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vendor-access,
    .connection-highlight {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle,
    .section-description {
        font-size: 1.1rem;
    }
    
    .point-content,
    .info-text,
    .instead-content,
    .highlight-content p {
        font-size: 1rem;
    }
    
    .we-do-column,
    .vendor-access,
    .connection-highlight {
        padding: 25px;
    }
}

.cs-expectations-section {
    padding: 100px 0;
    background-color: #1b1c1e; /* Match hero background */
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.cs-expectations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(81, 231, 219, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(103, 107, 212, 0.03) 0%, transparent 40%);
    opacity: 0.4;
    pointer-events: none;
}

.expectations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-blue);
}

.section-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px auto 0;
    max-width: 700px;
}

.expectations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.expectation-column {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expectation-column:hover {
    transform: translateY(-5px);
}

.brand-column {
    border-top: 4px solid var(--brand-blue);
}

.vendor-column {
    border-top: 4px solid var(--brand-purple);
}

.column-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
    font-size: 24px;
}

.column-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.contribution-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: var(--brand-blue);
    margin: 0 0 20px;
    font-weight: 500;
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expectation-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.expectation-icon {
    flex-shrink: 0;
    font-size: 24px;
}

.expectation-content {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.expectation-content strong {
    color: var(--white);
}

.time-commitment {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(81, 231, 219, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(81, 231, 219, 0.2);
}

.time-icon {
    font-size: 20px;
}

.time-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--brand-blue);
    font-weight: 500;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.expectation-column {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-header { animation-delay: 0.1s; }
.expectation-column:first-child { animation-delay: 0.3s; }
.expectation-column:last-child { animation-delay: 0.5s; }

/* Responsive styles */
@media (max-width: 900px) {
    .expectations-grid {
        grid-template-columns: 1fr;
    }
    
    .expectation-column {
        padding: 30px;
    }
    
    .cs-expectations-section {
        padding: 70px 0;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .expectation-content {
        font-size: 1rem;
    }
}

/* EXPANDED TESTIMONIALS & FINAL CTA SECTION CSS - DARK THEME */

/* TESTIMONIALS SECTION */
.cs-testimonials-section {
    padding: 100px 0;
    background-color: #1d1f21; /* Slightly lighter than main black */
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.cs-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 75% 25%, rgba(81, 231, 219, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 25% 75%, rgba(103, 107, 212, 0.03) 0%, transparent 40%);
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brand-blue);
}

.section-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px auto 0;
    max-width: 700px;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    margin: 20px 0 50px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transition: transform 0.5s ease;
    margin: 0 -15px;
    padding: 0 15px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(81, 231, 219, 0.2);
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    padding-top: 20px;
    flex-grow: 1;
}

.testimonial-content blockquote {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.author-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: var(--brand-blue);
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 40px;
}

.nav-dot-wrapper {
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background: rgba(81, 231, 219, 0.5);
}

.nav-dot.active {
    background: var(--brand-blue);
}

.nav-arrows {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.nav-arrow:focus {
    outline: none;
    border-color: var(--brand-blue);
}

/* Companies showcase */
.companies-showcase {
    margin-top: 80px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.companies-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 500;
}

.companies-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.company-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.company-logo:hover {
    background: rgba(81, 231, 219, 0.1);
    transform: translateY(-3px);
}

/* FINAL CTA SECTION */
.cs-final-cta-section {
    padding: 120px 0;
    background-color: var(--brand-black);
    position: relative;
    overflow: hidden;
}

/* Subtle radial gradient background */
.cs-final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(81, 231, 219, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(103, 107, 212, 0.05) 0%, transparent 40%);
    opacity: 0.8;
    pointer-events: none;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(81, 231, 219, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.tag-dot-wrapper {
    position: relative;
    width: 8px;
    height: 8px;
}

.tag-dot {
    position: absolute;
    inset: 0;
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
}

.tag-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: inherit;
    animation: pulse 2s ease-out infinite;
}

.tag-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 30px;
}

.cta-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button-container {
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-blue);
    color: var(--brand-black);
    padding: 18px 35px;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(81, 231, 219, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(81, 231, 219, 0.3);
}

.button-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translate(3px, -3px);
}

.spots-remaining {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.spots-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.spots-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--brand-purple);
    margin: 0;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.section-header,
.testimonial-card,
.testimonial-nav,
.companies-showcase,
.cta-tag,
.cta-title,
.cta-description,
.cta-button-container,
.spots-remaining {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.section-header { animation-delay: 0.1s; }
.testimonial-card { animation-delay: 0.3s; }
.testimonial-nav { animation-delay: 0.4s; }
.companies-showcase { animation-delay: 0.5s; }
.cta-tag { animation-delay: 0.1s; }
.cta-title { animation-delay: 0.2s; }
.cta-description { animation-delay: 0.3s; }
.cta-button-container { animation-delay: 0.4s; }
.spots-remaining { animation-delay: 0.5s; }

/* Responsive styles */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
    }
    
    .cs-testimonials-section,
    .cs-final-cta-section {
        padding: 80px 0;
    }
    
    .companies-logos {
        gap: 15px;
    }
    
    .company-logo {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}