/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d7a;
    --accent-color: #00a4ef;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f7fa;
    --white: #ffffff;
   --gradient-1: linear-gradient(135deg, #0066cc 0%, #003d7a 100%); 
    --gradient-2: linear-gradient(135deg, #FFFFFF 0%, #fffff2 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

       /* =========================================================
   Roadmap Component Tokens
   ========================================================= */

    --roadmap-primary: #0078d4;
    --roadmap-primary-dark: #005a9e;
    --roadmap-accent: #00b7c3;

    --roadmap-text-dark: #1e293b;
    --roadmap-text-medium: #475569;
    --roadmap-text-light: #94a3b8;

    --roadmap-bg: #f8fafc;
    --roadmap-card-bg: var(--white);

    --roadmap-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --roadmap-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
    --roadmap-shadow-lg: 0 8px 24px rgba(77, 68, 68, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background: #0a0a0a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(0, 164, 239, 0.1);
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge img {
    height: 60px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-quote {
    font-style: italic;
    font-size: 1.1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.hero-quote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Excellence Section */
.excellence {
    background: var(--bg-light);
}

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

.badge-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.badge-item img {
    max-width: 100%;
    height: auto;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

/* Leadership Section */
.leadership {
    background: var(--bg-light);
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.badges-row img {
    height: 80px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Solutions Preview */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    
}

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

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-2);
    color: var(--white);
}

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

.cta h2 {
    margin-bottom: 1rem;
}

.cta h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.service-item img {
    height: 60px;
    margin-bottom: 1rem;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.benefit-badge img {
    height: 100px;
}

.benefit-list {
    text-align: left;
}

.benefit-list p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 3rem;
    border-radius: 12px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--white);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand img {
    height: 100px;
    margin-bottom: 2rem;
    display: block;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-badges img {
    height: 60px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Feature Cards with Icons */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

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

    .badges-row {
        flex-direction: column;
    }

    .cta-benefits {
        flex-direction: column;
    }
}

/* Page-specific Styles */
.page-hero {
    background: var(--gradient-1);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

/* Offer Cards */
.offer-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    display: flex;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 2rem;
}

.offer-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}
/* --- ---------------------------Package Card Styles--------------------------------- --- */
/* --- Package Card Styles --- */
.pkg-card {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    text-align: center !important;
    width: 350px !important;
    margin: 20px auto !important;
    font-family: sans-serif !important;
    display: block !important;
}

.pkg-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.pkg-badge {
    display: inline-block;
    background: #e6f0ff;
    color: #0066cc;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pkg-title {
    color: #333 !important;
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
}

.pkg-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pkg-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* ============================================
   Industry Experience Section Styles
   Cybersecurity Consulting Firm
   ============================================ */

.industry-experience {
    background: #FFFFFF;
    padding: 80px 20px;
}

.industry-experience .container {
    max-width: 1200px;
    margin: 0 auto;
}

.industry-experience .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #003d7a;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.industry-experience .section-subtitle {
    font-size: 18px;
    color: #605E5C;
    text-align: center;
    margin-bottom: 60px;
}

.industry-experience .industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.industry-experience .industry-card {
    background: #FFFFFF;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.industry-experience .industry-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.industry-experience .card-icon {
    color: #0078D4;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.industry-experience .card-icon svg {
    width: 100%;
    height: 100%;
}

.industry-experience .industry-name {
    font-size: 20px;
    font-weight: 600;
    color: #323130;
    margin-bottom: 16px;
}

.industry-experience .industry-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-experience .industry-points li {
    font-size: 15px;
    color: #605E5C;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.industry-experience .industry-points li:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #0078D4;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 9px;
}

.industry-experience .industry-points li:last-child {
    margin-bottom: 0;
}

.industry-experience .confidentiality-callout {
    background: #F3F9FD;
    border-left: 4px solid #0078D4;
    border-radius: 4px;
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.industry-experience .callout-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-experience .lock-icon {
    width: 16px;
    height: 16px;
    color: #0078D4;
}

.industry-experience .callout-text {
    font-size: 15px;
    color: #323130;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industry-experience .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-experience {
        padding: 60px 20px;
    }

    .industry-experience .section-title {
        font-size: 28px;
    }

    .industry-experience .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .industry-experience .industry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-experience .industry-card {
        padding: 24px;
    }

    .industry-experience .confidentiality-callout {
        padding: 24px;
    }
}



/* ================================
   Mobile Hamburger Menu
   ================================ */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1100;
}

.nav-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #ffffff;
    left: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* Active (X) */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

/* ================================
   Mobile Navigation Layout
   ================================ */

@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0a0a;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    .nav-menu.open {
        max-height: 500px;
    }

    .nav-link {
        padding: 16px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* Mobile dropdown support */
    .dropdown-content {
        position: static;
        display: none;
        background: #121212;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }
}

/* =========================================================
   Threat Protection Roadmap - Fixed Version
   ========================================================= */

.roadmap-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--roadmap-bg);
}

.roadmap-header {
    text-align: center;
    margin-bottom: 80px;
}

.roadmap-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--roadmap-text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.roadmap-subtitle {
    font-size: 18px;
    color: var(--roadmap-text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Static grid, 5 cards in a row */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* always 5 in a row */
    gap: 40px;
    justify-items: center;
    align-items: stretch;
    padding: 20px 0 40px;
}

.roadmap-card {
    display: flex;
    flex-direction: column;
    width: 274px;
    max-width: 300px; /* adjust so 5 fit nicely in row */
    background: var(--roadmap-card-bg);
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 120, 212, 0.1);
    box-shadow: var(--roadmap-shadow-md);
    position: relative;
    min-height: 400px;
    opacity: 0;
    animation: roadmapFadeInUp 0.6s ease-out forwards;
    transition: all 0.3s ease;
}

.roadmap-card:nth-child(1) { animation-delay: 0.1s; }
.roadmap-card:nth-child(2) { animation-delay: 0.2s; }
.roadmap-card:nth-child(3) { animation-delay: 0.3s; }
.roadmap-card:nth-child(4) { animation-delay: 0.4s; }
.roadmap-card:nth-child(5) { animation-delay: 0.5s; }

.roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--roadmap-shadow-lg);
    border-color: var(--roadmap-primary);
}

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

.roadmap-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--roadmap-primary),
        var(--roadmap-primary-dark)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.25);
}

.roadmap-card .card-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.roadmap-card .card-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--roadmap-text-dark);
    margin-bottom: 12px;
}

.roadmap-card .card-description {
    font-size: 14px;
    color: var(--roadmap-text-medium);
    margin-bottom: 30px;
    /* flex-grow: 1; */
}

.roadmap-card .card-capabilities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-card .card-capabilities li {
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    color: var(--roadmap-text-medium);
}

.roadmap-card .card-capabilities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--roadmap-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 1600px) {
    .roadmap-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }

    .roadmap-card {
        max-width: 280px;
    }
}

@media (max-width: 1200px) {
    .roadmap-container {
        grid-template-columns: repeat(3, 1fr); /* 3 cards in a row for medium screens */
    }

    .roadmap-card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .roadmap-section {
        padding: 60px 24px;
    }

    .roadmap-title {
        font-size: 32px;
    }

    .roadmap-subtitle {
        font-size: 16px;
    }

    .roadmap-container {
        grid-template-columns: 1fr; /* single column on mobile */
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .roadmap-card {
        animation: none;
        opacity: 1;
    }

    .roadmap-card:hover {
        transform: none;
    }
}

/* Print */
@media print {
    .roadmap-card {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
/* Offer Card Footer */
.offer-card-footer{
    padding: 10px;
    margin-left: 22px;
}
.margin-bottom{
margin-bottom: 25px;
}
.margin-left-roadmap {
        margin-left: 57px !important;
}
/* ============================================================
   Cyber Insurance Assessment Page — Additive Styles
   Append to bottom of existing styles.css
   ============================================================ */

/* ── Page Hero (overrides .page-hero for this page's dark gradient) ── */
.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-dark {
    background: linear-gradient(135deg,#0066cc 100%, #1e3a5f 60%,#0f172a 0%);
    color: var(--white);
    padding: 90px 0 80px;
    text-align: center;
}

.hero-dark .hero-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero-dark .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 2rem;
}

/* ── Section Tag / Eyebrow Label ──────────────────────────────────── */
.section-tag {
    display: inline-block;
    background: #e6f0ff;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;  
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* ── Value Block (centered prose) ────────────────────────────────── */
.value-block {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.value-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ── Challenge Cards (why audits fail) ───────────────────────────── */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.challenge-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.challenge-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.challenge-icon svg {
    width: 28px;
    height: 28px;
}

.challenge-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.challenge-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ── Phase Cards (9-step methodology) ────────────────────────────── */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 3rem;
}

.phase-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.phase-number {
    position: absolute;
    top: -16px;
    left: 28px;
    width: 34px;
    height: 34px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    margin-top: 10px;
}

.phase-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.phase-deliverables {
    border-top: 1px solid #e2e8f0;
    padding-top: 14px;
    margin-top: 4px;
}

.phase-deliverables .deliverables-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.phase-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-deliverables ul li {
    font-size: 13px;
    color: var(--text-light);
    padding-left: 18px;
    margin-bottom: 5px;
    position: relative;
}

.phase-deliverables ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
}

/* ── Framework Badges ─────────────────────────────────────────────── */
.frameworks-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 2.5rem;
}

.framework-badge {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 28px;
    text-align: center;
    min-width: 140px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.framework-badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.1);
}

.fw-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.fw-desc {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

/* ── Outcome Items ────────────────────────────────────────────────── */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.outcome-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    align-items: flex-start;
}

.outcome-check {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #059669;
    font-weight: 700;
}

.outcome-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.outcome-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* ── Participation (dark band) ────────────────────────────────────── */
.participation-band {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.participation-band .section-title {
    color: var(--white);
}

.participation-band .section-description {
    color: rgba(255, 255, 255, 0.75);
}

.participation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 2rem auto 0;
}

.participation-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.participation-box h3 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.participation-box .big-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.participation-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.participation-box.full-width {
    grid-column: 1 / -1;
}

.stakeholders-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.stakeholder-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--white);
}

/* ── CTA / Qualify Form ───────────────────────────────────────────── */
.qualify-section {
    background: #eff6ff;
    border-top: 1px solid #dbeafe;
    padding: 5rem 0;
    text-align: center;
}

.qualify-section h2 {
    color: var(--secondary-color);
}

.qualify-section p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.qualify-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 380px;
    margin: 0 auto;
}

.qualify-form label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    align-self: flex-start;
}

.qualify-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--text-color);
    appearance: none;
    cursor: pointer;
}

.qualify-form select:focus {
    outline: 2px solid var(--primary-color);
}

.qualify-form .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px;
}

/* ── Responsive additions ─────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-dark .hero-title  { font-size: 2rem; }
    .challenge-grid         { grid-template-columns: 1fr; }
    .phases-grid            { grid-template-columns: 1fr; }
    .outcomes-grid          { grid-template-columns: 1fr; }
    .participation-grid     { grid-template-columns: 1fr; }
    .participation-box.full-width { grid-column: 1; }
}