/* ========================================
   Triple 5 LTD - Extended Component Styles
   ======================================== */

/* === Service Cards Grid === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.service-card {
    background: rgba(43, 95, 255, 0.03);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(11, 31, 59, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(43, 95, 255, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 95, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(43, 95, 255, 0.18);
    border-color: var(--color-royal-blue);
    background: white;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(43, 95, 255, 0.18), rgba(0, 212, 255, 0.18));
    transform: scale(1.1);
}

.service-card:hover .service-icon svg {
    color: var(--color-electric-blue);
    transform: scale(1.05);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(43, 95, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-royal-blue);
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-navy);
}

.service-card p {
    font-size: 15px;
    color: var(--color-grey-dark);
    margin-bottom: 28px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
}

.service-card .btn-secondary {
    background: transparent;
    color: var(--color-royal-blue);
    border: 2px solid var(--color-royal-blue);
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-royal-blue);
    transition: left 0.3s ease;
    z-index: -1;
}

.service-card .btn-secondary:hover::before {
    left: 0;
}

.service-card .btn-secondary:hover {
    color: white;
    border-color: var(--color-royal-blue);
    transform: translateY(-2px);
}

/* === Feature Cards === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 48px 32px;
    background: rgba(43, 95, 255, 0.03);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(43, 95, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-royal-blue), var(--color-electric-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(43, 95, 255, 0.15);
    background: white;
    border-color: var(--color-royal-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(43, 95, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(43, 95, 255, 0.15), rgba(0, 212, 255, 0.15));
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-royal-blue);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg {
    color: var(--color-electric-blue);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-navy);
}

.feature-card p {
    font-size: 15px;
    color: var(--color-grey-dark);
    line-height: 1.7;
    margin: 0;
}

/* === Process Timeline === */
}

/* === Process Timeline === */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-royal-blue) 0%, var(--color-electric-blue) 100%);
    z-index: 0;
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(43, 95, 255, 0.02);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(11, 31, 59, 0.1);
    transform: translateY(-4px);
}

.process-number {
    width: 64px;
    height: 64px;
    background: white;
    border: 4px solid var(--color-royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-royal-blue);
    font-family: var(--font-heading);
    box-shadow: 0 4px 16px rgba(43, 95, 255, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: var(--color-royal-blue);
    color: white;
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.process-step p {
    font-size: 14px;
    color: var(--color-grey-dark);
    line-height: 1.6;
}

/* === Image + Text Blocks === */
.image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-text-block:last-child {
    margin-bottom: 0;
}

.image-text-block.reverse {
    direction: rtl;
}

.image-text-block.reverse > * {
    direction: ltr;
}

.image-block-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 31, 59, 0.12);
    transition: all 0.4s ease;
}

.image-block-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(11, 31, 59, 0.15);
}

.image-block-content h2 {
    margin-bottom: 24px;
    font-size: 40px;
}

.image-block-content p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

.image-block-content ul {
    margin-bottom: 32px;
}

.image-block-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--color-grey-dark);
}

.image-block-content ul li::before {
    content: '✓';
    color: var(--color-royal-blue);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

/* === Benefits Grid === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--card-bg-tint);
    padding: 32px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--card-shadow-premium);
    transition: all 0.3s ease;
    border: var(--card-border);
    border-left: var(--card-accent-border);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(43, 95, 255, 0.12);
    background: white;
    border-left-color: var(--color-electric-blue);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(43, 95, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-royal-blue);
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--color-grey-dark);
    line-height: 1.6;
    margin: 0;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, #163A6F 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(43, 95, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    font-size: 44px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-grey-dark);
    line-height: 1.7;
}
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-grey-dark);
}

/* === FAQ Accordion === */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.faq-item {
    background: white;
    border: 1px solid var(--color-grey-medium);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-royal-blue);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-navy);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-royal-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-royal-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    color: var(--color-grey-dark);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* === Contact Page === */
.contact-section {
    padding: 140px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-royal-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-info-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-grey-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-details p {
    font-size: 16px;
    color: var(--color-navy);
    margin: 0;
    font-weight: 500;
}

.contact-trust {
    background: var(--color-grey-light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-top: 32px;
}

.contact-trust p {
    font-size: 14px;
    color: var(--color-grey-dark);
    margin: 0;
    line-height: 1.6;
}

/* === Contact Form === */
.contact-form-card {
    background: white;
    padding: 48px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-card h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--color-grey-medium);
    border-radius: 10px;
    background: white;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-royal-blue);
    box-shadow: 0 0 0 4px rgba(43, 95, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A5568' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-error {
    display: none;
    font-size: 13px;
    color: #E53E3E;
    margin-top: 8px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #E53E3E;
}

.form-group.error .form-error {
    display: block;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-royal-blue), #1E4FD9);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(43, 95, 255, 0.3);
}

/* === Quick Links === */
.quick-links {
    margin-top: 60px;
}

.quick-links h3 {
    text-align: center;
    margin-bottom: 32px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-link-card {
    background: white;
    padding: 24px 20px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: 0 4px 15px rgba(11, 31, 59, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    border-color: var(--color-royal-blue);
    transform: translateY(-4px);
}

.quick-link-card svg {
    width: 40px;
    height: 40px;
    color: var(--color-royal-blue);
    margin: 0 auto 16px;
}

.quick-link-card h4 {
    font-size: 16px;
    margin: 0;
    color: var(--color-navy);
}

/* === About Page Styles === */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.capability-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 15px rgba(11, 31, 59, 0.08);
    text-align: center;
}

.capability-card svg {
    width: 48px;
    height: 48px;
    color: var(--color-royal-blue);
    margin: 0 auto 20px;
}

.capability-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.capability-card p {
    font-size: 14px;
    color: var(--color-grey-dark);
    margin: 0;
}

.approach-section {
    background: var(--color-navy);
    color: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.approach-card {
    text-align: center;
}

.approach-card svg {
    width: 64px;
    height: 64px;
    color: var(--color-electric-blue);
    margin: 0 auto 24px;
}

.approach-card h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 16px;
}

.approach-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* === Responsive Design === */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .image-text-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-text-block.reverse {
        direction: ltr;
    }
    
    .image-block-img {
        height: 400px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-card {
        position: static;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .image-block-content h2 {
        font-size: 28px;
    }
    
    .image-block-img {
        height: 300px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PREMIUM ENHANCEMENTS & NEW UTILITIES
   ======================================== */

/* === Image Credit Styling === */
.image-credit {
    font-size: 12px;
    color: var(--color-grey-dark);
    margin-top: 8px;
    font-style: italic;
    opacity: 0.7;
}

.image-credit a {
    color: var(--color-royal-blue);
    text-decoration: none;
}

.image-credit a:hover {
    text-decoration: underline;
}

/* === Tech Divider with Glow === */
.tech-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-royal-blue), transparent);
    margin: 80px 0;
    position: relative;
}

.tech-divider::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: radial-gradient(ellipse, var(--tech-glow) 0%, transparent 70%);
}

/* === Premium Section Backgrounds === */
.section-premium-bg {
    background: linear-gradient(135deg, rgba(43, 95, 255, 0.02) 0%, rgba(0, 212, 255, 0.01) 100%);
    position: relative;
}

.section-premium-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, var(--tech-glow) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

/* === Book a Call Button Styling === */
.btn-book-call {
    background: linear-gradient(135deg, var(--color-electric-blue), var(--color-royal-blue));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-book-call::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-book-call:hover::before {
    width: 300px;
    height: 300px;
}

.btn-book-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* === Calendly Embed Styling === */
.calendly-inline-widget {
    min-height: 700px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* === Callback Form Premium Styling === */
.callback-form {
    background: var(--card-bg-tint);
    padding: 40px;
    border-radius: var(--border-radius);
    border: var(--card-border);
    border-left: var(--card-accent-border);
    box-shadow: var(--card-shadow-premium);
}

.callback-form h3 {
    margin-bottom: 24px;
    color: var(--color-navy);
}

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

/* === Animation Keyframes === */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

/* === FAQ Section Enhancements === */
.faq-section {
    background: var(--card-bg-tint);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    margin-top: 60px;
    border: var(--card-border);
}

.faq-section h3 {
    color: var(--color-navy);
    margin-bottom: 32px;
    text-align: center;
}

/* === Content Expand Sections === */
.content-expand {
    margin-top: 80px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    color: var(--color-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-royal-blue);
    display: inline-block;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
}

.content-block ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--color-grey-dark);
    line-height: 1.7;
}

.content-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-royal-blue);
    font-weight: 700;
}

/* === Data Points Display === */
.data-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.data-point {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--color-electric-blue);
    box-shadow: 0 2px 10px rgba(11, 31, 59, 0.05);
}

.data-point-label {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--color-grey-dark);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.data-point-value {
    font-size: 18px;
    color: var(--color-navy);
    font-weight: 700;
}

/* === Compliance Badge === */
.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 100, 0.1);
    color: #008855;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0;
}

.compliance-badge svg {
    width: 18px;
    height: 18px;
}

/* === Deliverable Options === */
.deliverable-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.deliverable-tag {
    background: var(--card-bg-tint);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-navy);
    border: 1px solid var(--color-royal-blue);
    font-weight: 500;
}

/* === Enhanced CTA Blocks === */
.cta-block-inline {
    background: linear-gradient(135deg, var(--color-navy) 0%, #163A6F 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block-inline::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
}

.cta-block-inline h3 {
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-block-inline p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-block-inline .btn {
    position: relative;
    z-index: 1;
}
