/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 25%, #2c5364 50%, #0f2027 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==== GLOBAL COLOR TOKENS (fix missing vars) ==== */
:root{
  --text-primary: #111827;   /* slate-900 */
  --text-secondary: #374151; /* slate-700 */
  --primary-blue: #2563eb;   /* already referenced elsewhere */
  --secondary-blue: #1d4ed8; /* already referenced elsewhere */
}

/* Utility for light surfaces */
.on-light { color: var(--text-primary); }
.on-light p,
.on-light .muted,
.on-light .subtle { color: var(--text-secondary); }

/* Make sure light blocks never get white text by inheritance */
.assessment-card,
.assessment-cta-section { color: var(--text-primary); }
.assessment-card p,
.assessment-cta-section p { color: var(--text-secondary); }

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4fd1c7;
}

p {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4fd1c7;
    border: 2px solid #4fd1c7;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: #4fd1c7;
    color: #0f2027;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2c5364;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.nav-logo h2 {
    color: #4fd1c7;
    font-size: 1.5rem;
    margin: 0;
    margin-bottom: 0.25rem;
}

.nav-tagline {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4fd1c7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4fd1c7;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 25%, #2c5364 50%, #0f2027 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4fd1c7;
    font-weight: 600;
    margin-bottom: 3rem;
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background: rgba(15, 32, 39, 0.7);
    border: 1px solid #2c5364;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-item h3 {
    color: #ffffff;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #4fd1c7;
    box-shadow: 0 8px 30px rgba(79, 209, 199, 0.2);
}

/* AI Assistant Banner */
.ai-assistant-banner {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: #0f2027;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(79, 209, 199, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

.ai-assistant-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 209, 199, 0.4);
}

.ai-assistant-banner i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* AI Readiness Section */
.ai-readiness {
    background: rgba(15, 32, 39, 0.5);
}

/* Limit white text to the dark cards, not the whole assessment section */
.ai-readiness .assessment-card p,
.ai-readiness .assessment-card li { color: #ffffff; }

.assessment-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.assessment-card {
    background: rgba(15, 32, 39, 0.7);
    border: 1px solid #2c5364;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.assessment-card h3 {
    color: #ffffff;
}

.assessment-card p {
    color: #ffffff;
}

.assessment-card h4 {
    color: #4fd1c7;
    margin: 2rem 0 1rem;
}

.assessment-card ul {
    list-style: none;
    padding: 0;
}

.assessment-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
}

.assessment-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4fd1c7;
    font-weight: bold;
}

/* Assessment Form */
.assessment-form-section {
    background: rgba(15, 32, 39, 0.7);
    border: 1px solid #2c5364;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-top: 4rem;
    text-align: center;
}

.assessment-form {
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.disclaimer {
    font-size: 0.9rem;
    color: #ffffff;
    text-align: center;
    margin-top: 1rem;
}

/* 5-Pillar Framework */
.framework {
    background: rgba(15, 32, 39, 0.5);
    overflow-x: auto;
    padding: 4rem 0;
}

.pillars-grid {
    display: flex;
    flex-wrap: nowrap;
    --pillar-gap: 1.5rem;
    gap: var(--pillar-gap);
    justify-content: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    min-width: fit-content;
}

.pillar {
    flex: 0 0 calc((100% - 4 * var(--pillar-gap)) / 5);
    min-height: 400px;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    color: white;
}

/* Individual pillar colors matching screenshot */
.pillar:nth-child(1) {
    background: linear-gradient(135deg, #2d7d6e, #1e5f4f);
}

.pillar:nth-child(2) {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.pillar:nth-child(3) {
    background: linear-gradient(135deg, #8e44ad, #732d91);
}

.pillar:nth-child(4) {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.pillar:nth-child(5) {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 1;
}

.pillar h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.pillar p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 1);
}

.pillar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pillar li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: rgba(255, 255, 255, 1);
    font-size: 0.9rem;
    line-height: 1.3;
}

.pillar li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 1200px) {
    .pillars-grid {
        justify-content: flex-start;
        padding: 0 1rem;
    }
    
    .pillar {
        flex: 0 0 240px;
    }
}

@media (max-width: 768px) {
    .framework {
        padding: 2rem 0;
        -webkit-overflow-scrolling: touch;
        scroll-padding: 1rem;
    }
    
    .pillars-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        padding: 0 1rem;
    }
    
    .pillar {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

/* Data Analytics Section */
.data-analytics {
    background: rgba(15, 32, 39, 0.5);
}

.data-analytics .analytics-content p {
    color: #ffffff;
}

.analytics-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: rgba(15, 32, 39, 0.7);
    border: 1px solid #2c5364;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card h3 {
    color: #ffffff;
}

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

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4fd1c7;
    font-weight: bold;
}

/* Data Strategy Section */
.data-strategy {
    background: rgba(15, 32, 39, 0.5);
}

.data-strategy .strategy-content p {
    color: #ffffff;
}

.strategy-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy-card {
    background: rgba(15, 32, 39, 0.7);
    border: 1px solid #2c5364;
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid #4fd1c7;
    transition: transform 0.3s ease;
}

.strategy-card h3 {
    color: #ffffff;
}

.strategy-card p {
    color: #ffffff;
}

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

.strategy-card ul {
    list-style: none;
    padding: 0;
}

.strategy-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
}

.strategy-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4fd1c7;
    font-weight: bold;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    background: rgba(15, 32, 39, 0.7);
    border: 1px solid #2c5364;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.cta-section h3 {
    color: #ffffff;
}

.cta-section p {
    color: #ffffff;
}

/* Contact Section */
.contact {
    background: #1a365d;
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #4fd1c7;
    margin-bottom: 2rem;
}

.company-info h4 {
    color: white;
    margin-bottom: 1rem;
}

.company-info p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.company-info a {
    color: #4fd1c7;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.company-info a:hover {
    color: #7ce4dc;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    color: #1f2937 !important;
}

.contact-form *,
.contact-form h1,
.contact-form h2,
.contact-form h3,
.contact-form h4,
.contact-form h5,
.contact-form h6,
.contact-form p,
.contact-form label,
.contact-form span,
.contact-form div {
    color: #1f2937 !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    color: #1f2937 !important;
    background: white !important;
}

.contact-form .form-group label {
    color: #1f2937 !important;
    font-weight: 500;
}

.contact-form .form-group p {
    color: #1f2937 !important;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #4fd1c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4fd1c7;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 9999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: #ffffff !important;
        font-weight: 600;
        padding: 1rem;
        font-size: 1.1rem;
        display: block;
    }

    .nav-menu .nav-link:hover {
        color: #4fd1c7 !important;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: flex;
        padding: 10px;
        margin-right: 1rem;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Header Optimization - Hide tagline on tablets and mobile */
    .nav-tagline {
        display: none;
    }
    
    /* Reduce company name font size for mobile */
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    /* Reduce logo image size slightly */
    .logo-img {
        height: 35px;
    }
    
    /* Ensure logo text doesn't overflow */
    .logo-text {
        max-width: calc(100vw - 200px);
        overflow: hidden;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-services {
        grid-template-columns: 1fr;
    }

    .ai-assistant-banner {
        margin: 1.5rem 0;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .assessment-types {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pillar {
        flex: 1 1 100%;
        max-width: 400px;
    }

    .analytics-services {
        grid-template-columns: 1fr;
    }

    .strategy-services {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Phone-specific header optimization */
    .nav-logo h2 {
        font-size: 0.95rem;
        line-height: 1.2;
    }
    
    /* Smaller logo for phones */
    .logo-img {
        height: 30px;
    }
    
    /* Adjust nav-logo gap for phones */
    .nav-logo {
        gap: 8px;
    }
    
    /* Ensure proper spacing on small phones */
    .logo-text {
        max-width: calc(100vw - 160px);
    }

    .pillar,
    .service-card,
    .strategy-card,
    .assessment-card {
        padding: 1.5rem;
    }

    .ai-assistant-banner {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .assessment-form-section {
        padding: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.pillar,
.service-card,
.strategy-card,
.assessment-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
}

.about-intro {
    font-size: 1.2rem;
    color: #333333;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: #f7fafc;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.story-content p {
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.value-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f7fafc;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 1rem;
    text-align: center;
}

.category-description {
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.team-category > p {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #333 !important;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo i {
    font-size: 4rem;
    color: #ffffff;
}

.team-member h4 {
    color: #1a365d !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #4fd1c7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #333 !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.expertise-tag {
    background: #667eea;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: white;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.step-card p {
    color: #ffffff;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Active nav link */
.nav-link.active {
    color: #4fd1c7;
    font-weight: 600;
}

/* Responsive styles for About page */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro {
        font-size: 1.1rem;
        margin: 1.5rem auto 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .skill-tag, .expertise-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

/* Privacy Page Specific Styles */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066cc 100%);
    color: white;
    padding: 6rem 0;
}

.privacy-intro {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    opacity: 1;
}

.last-updated {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-principles {
    padding: 4rem 0;
    background: #f8f9fa;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.principle-icon {
    background: var(--primary-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.principle-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.information-collection,
.information-usage,
.privacy-rights {
    padding: 4rem 0;
}

.collection-categories,
.usage-categories {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.category-card,
.usage-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-header,
.usage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header i,
.usage-header i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.category-header h3,
.usage-header h3 {
    color: var(--text-primary);
    margin: 0;
}

.category-card ul,
.usage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li,
.usage-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.category-card li:before,
.usage-card li:before {
    content: '\2022';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.category-card li:last-child,
.usage-card li:last-child {
    border-bottom: none;
}

.information-sharing {
    background: #f8f9fa;
    padding: 4rem 0;
}

.no-sell-notice {
    background: #e7f3ff;
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    padding: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.sharing-content {
    margin-top: 2rem;
}

.sharing-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.sharing-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sharing-list i {
    color: #28a745;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.data-security {
    padding: 4rem 0;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.security-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.3s ease;
}

.security-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.security-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.right-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.right-card i {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.right-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cookies-section,
.data-retention {
    background: #f8f9fa;
    padding: 4rem 0;
}

.cookies-content,
.retention-content {
    margin-top: 2rem;
}

.cookies-list,
.retention-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.cookies-list li,
.retention-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.cookies-list li:before,
.retention-list li:before {
    content: '\2713';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cookie-control,
.retention-note {
    background: #e7f3ff;
    border-left: 4px solid var(--primary-blue);
    padding: 1rem;
    margin-top: 2rem;
    font-style: italic;
}

.privacy-contact {
    padding: 4rem 0;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: var(--text-primary);
}

.policy-updates {
    background: #f8f9fa;
    padding: 4rem 0;
}

.updates-content {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Assessment Modal and Components */
#assessment-modal { position: fixed; inset: 0; z-index: 9999; }
.assessment-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.5); cursor:pointer; }
.assessment-dialog { position:relative; margin:5vh auto; max-width:680px; background:#fff; border-radius:16px; overflow:hidden; padding:24px; max-height:85vh; overflow-y:auto; }
.assessment-close { position:absolute; top:8px; right:12px; font-size:22px; background:none; border:0; cursor:pointer; }
.assessment-card .progress-bar { height:8px; background:#eee; border-radius:999px; overflow:hidden; margin-bottom:8px; }
.assessment-card .progress-fill { height:100%; background:#4f46e5; width:0; transition:width .3s ease; }
.btn-primary { cursor:pointer; }
.btn-secondary { cursor:pointer; }


.assessment-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    position: relative;
}

.assessment-card h2 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.assessment-card p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.question-container {
    margin: 2rem 0;
}

.category {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.question-container h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.option:hover {
    border-color: var(--primary-blue);
    background: #f8fafc;
}

.option input[type="radio"] {
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.option input[type="radio"]:checked + span {
    color: var(--primary-blue);
    font-weight: 500;
}

.option:has(input[type="radio"]:checked) {
    border-color: var(--primary-blue);
    background: #f0f9ff;
}

.option-text {
    line-height: 1.4;
}

.option-text strong {
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover {
    background: #9ca3af;
    transform: none;
}

/* Results Styling */
.assessment-card.results {
    text-align: center;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.score {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.score-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.result-actions .btn-primary,
.result-actions .btn-secondary {
    min-width: 200px;
}

/* Take Assessment Button in Services */
.assessment-trigger {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.assessment-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.assessment-trigger i {
    margin-right: 0.5rem;
}

/* Assessment CTA Section Styling */
.assessment-cta-section {
    text-align: center !important;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-top: 3rem;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.assessment-cta-section h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center !important;
    width: 100%;
}

.assessment-cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
    width: 100%;
}

.assessment-cta-section .disclaimer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 0;
}

.assessment-cta-section .btn {
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: fit-content !important;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 0;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .security-measures {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .assessment-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .assessment-card {
        padding: 20px;
    }
    
    .navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation .btn-primary,
    .navigation .btn-secondary {
        width: 100%;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .result-actions .btn-primary,
    .result-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}


/* About Page Dark Text Overrides - FORCE DARK TEXT */
.about-hero, .mission-vision, .our-story, .leadership, .values {
    background: white !important;
    color: #333 !important;
}

.mission-card, .vision-card, .leader-card, .value-card,
.about-hero *, .mission-vision *, .our-story *, .leadership *, .values * {
    color: #333 !important;
}

.mission-card h2, .vision-card h2, .leader-card h3, .value-card h3 {
    color: #1a365d !important;
}

.mission-card p, .vision-card p, .leader-card p, .value-card p,
.our-story p, .leadership p, .values p {
    color: #333 !important;
}


/* Team Member Text Fixes */
.team-member .member-title, .team-member .member-bio, .team-member p {
    color: #333 !important;
}

.team-member * {
    color: #333 !important;
}

.team-member h4 {
    color: #1a365d !important;
}

/* --- Fix (Android): ensure dark text on the light CTA panel in Assessment --- */
.ai-readiness .assessment-cta-section,
.ai-readiness .assessment-cta-section h3 {
  color: var(--text-primary) !important;
}

.ai-readiness .assessment-cta-section p,
.ai-readiness .assessment-cta-section .disclaimer {
  color: var(--text-secondary) !important;
}

/* Keep the button text white on its gradient background */
.ai-readiness .assessment-cta-section .btn-primary { color: #fff !important; }

/* === Android readability fixes for the Assessment section === */

/* 1) Lock the section to light mode so Android Chrome doesn't auto-darken text */
.ai-readiness {
  color-scheme: light;
}

/* 2) Make sure copy inside the light CTA/checklist renders dark */
.ai-readiness .assessment-cta-section,
.ai-readiness .assessment-cta-section h2,
.ai-readiness .assessment-cta-section h3,
.ai-readiness .assessment-cta-section p,
.ai-readiness .assessment-cta-section li,
.ai-readiness .assessment-cta-section .disclaimer {
  color: #0f172a !important; /* slate-900 */
}

/* 3) Belt & suspenders: removed broad override - using targeted approach below */

/* Keep the teal accents and buttons as-is */
.ai-readiness .assessment-cta-section .checkmark,
.ai-readiness .assessment-cta-section .accent,
.ai-readiness .assessment-cta-section .tag {
  /* if you use classes like these for the ✓ icons or accent labels */
  color: #41d6cd !important; /* your teal */
}

.ai-readiness .assessment-cta-section .btn-primary {
  color: #ffffff !important;
}

/* === Assessment Section: Complete Android-Safe Styling === */

.ai-readiness .assessment-card {
background: radial-gradient(120% 140% at 0% 0%, #123040 0%, var(--surface-dark) 60%);
border-radius: var(--card-radius);
padding: 18px 16px 14px;
color-scheme: dark; /* pin to dark so Android won't auto flip */
}
.ai-readiness .assessment-card h3 { color: var(--text-on-dark); margin: 0 0 8px; font-size: 1.06rem; }
.ai-readiness .assessment-card p,
.ai-readiness .assessment-card li { color: var(--text-on-dark); }
.ai-readiness .assessment-card ul { padding-left: 18px; margin: 0; }


/* Desktop/tablet only: CTA uses light surface with dark text */
@media (min-width: 701px) {
  .ai-readiness .assessment-cta-section {
    margin-top: 16px;
    background: #f8fafc; /* light */
    border-radius: var(--card-radius);
    padding: 20px 16px 18px;
    color-scheme: light; /* explicitly light so Android keeps dark text */
    box-shadow: 0 10px 24px rgba(0,0,0,.14);
  }
  .ai-readiness .assessment-cta-section h3 { color: var(--text-on-light); margin: 0 0 12px; font-size: 1.25rem; }
  .ai-readiness .assessment-cta-section p,
  .ai-readiness .assessment-cta-section li,
  .ai-readiness .assessment-cta-section .disclaimer { color: var(--text-on-light); }
  .ai-readiness .assessment-cta-section .disclaimer { color: var(--muted-on-light); font-size: .95rem; }
}


/* Checklist */
.ai-readiness .checklist { list-style: none; padding: 0; margin: 8px 0 16px; }
.ai-readiness .checklist li { display: flex; gap: 10px; align-items: baseline; margin: 10px 0; }
.ai-readiness .checklist .checkmark { color: var(--teal); font-weight: 700; }


/* Primary CTA button */
.btn-primary {
display: inline-block; text-decoration: none; font-weight: 700;
background: linear-gradient(135deg, #1676ff, #0051d6);
color: #fff; padding: 12px 18px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,81,214,.28);
}
.btn-primary:focus { outline: 2px solid #9cc3ff; outline-offset: 2px; }


/* Safety overrides (win the cascade on Android without breaking desktop) */
@media (max-width: 1024px) {
/* If any legacy rule forces white text broadly, neutralize it outside of dark surfaces */
.ai-readiness .assessment-cta-section *,
.ai-readiness .assessment-cta-section { color: var(--text-on-light) !important; }
.ai-readiness .assessment-card *,
.ai-readiness .assessment-card { color: var(--text-on-dark) !important; }
.ai-readiness .assessment-hero *,
.ai-readiness .assessment-hero { color: var(--text-on-dark) !important; }
}


/* Optional visual polish for round white panel shown in your screenshots */
.ai-readiness .assessment-cta-section { border: 1px solid rgba(2,6,23,.06); }
.ai-readiness .assessment-cta-section::before { content: ""; display:block; height:0; }

/* Safety net for alternative intro class naming */
.ai-readiness .assessment-intro,
.ai-readiness .assessment-intro p { color: var(--text-on-dark); }

/* === Mobile fix: CTA sits on dark gradient; make text light for contrast === */
@media (max-width: 700px) {
  .ai-readiness .assessment-cta-section {
    background: transparent !important; /* sit on the dark gradient */
    border: 0 !important;
    box-shadow: none !important;
    color-scheme: dark;                  /* prevent Android auto-darkening */
    padding-left: 16px;
    padding-right: 16px;
  }

  .ai-readiness .assessment-cta-section h2,
  .ai-readiness .assessment-cta-section h3,
  .ai-readiness .assessment-cta-section p,
  .ai-readiness .assessment-cta-section li,
  .ai-readiness .assessment-cta-section .disclaimer {
    color: #ffffff !important;           /* light on dark */
  }

  .ai-readiness .checklist .checkmark {  /* keep your teal ticks */
    color: #41d6cd !important;
  }

  /* Button stays readable on dark */
  .ai-readiness .assessment-cta-section .btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(22,118,255,.85), rgba(0,81,214,.85)) !important;
    border: 1px solid rgba(255,255,255,.25);
  }
}

/* Ensure the hero/cards remain light on dark */
.ai-readiness .assessment-hero,
.ai-readiness .assessment-card,
.ai-readiness .assessment-hero *,
.ai-readiness .assessment-card * { color:#ffffff; }

/* === FINAL FIX: make Assessment section light-on-dark by default === */

/* Pin the whole section to dark color context (prevents Chrome auto-dark tweaks) */
.ai-readiness { color-scheme: dark; }

/* Force readable light text on the dark gradient for ALL content by default */
.ai-readiness,
.ai-readiness h1,
.ai-readiness h2,
.ai-readiness h3,
.ai-readiness p,
.ai-readiness li,
.ai-readiness .disclaimer {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important; /* guards against text-fill overrides */
  mix-blend-mode: normal;                       /* avoids accidental darkening */
}

/* Keep teal ticks and accents visible */
.ai-readiness .checklist .checkmark,
.ai-readiness .accent,
.ai-readiness .tag { color: #41d6cd !important; }

/* Buttons stay readable on dark */
.ai-readiness .btn-primary { color: #ffffff !important; }

/* -------- OPTIONAL: if you ever want a LIGHT panel inside Assessment -------- */
/* Wrap that panel with class .is-light and it will flip to dark text on light bg */
.ai-readiness .is-light {
  background: #f8fafc;
  border-radius: 16px;
  color-scheme: light;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.ai-readiness .is-light,
.ai-readiness .is-light h2,
.ai-readiness .is-light h3,
.ai-readiness .is-light p,
.ai-readiness .is-light li,
.ai-readiness .is-light .disclaimer {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}
