/* Product Page Specific Styling */

/* General Features and Solution Icons (used in product page) */
.solution-icon,
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;                    /* Premium larger size */
    height: 56px;
    background: linear-gradient(135deg, 
        var(--deep-atlantic-blue) 0%, 
        var(--royal-wave-blue) 50%, 
        #3B82F6 100%);             /* Rich multi-stop gradient */
    border-radius: 18px;            /* More elegant radius */
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(14, 58, 116, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);  /* Premium depth */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-icon::before,
.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 70%);           /* Stronger shine effect */
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.solution-icon:hover,
.feature-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(14, 58, 116, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.solution-icon:hover::before,
.feature-icon:hover::before {
    transform: translateX(100%);
}

.solution-icon svg,
.feature-icon svg {
    width: 28px;                    /* Slightly larger for better visibility */
    height: 28px;
    color: var(--white);            /* Keep icons white for consistency */
    stroke-width: 1.8px;            /* Thicker strokes for clarity */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));  /* Subtle icon shadow */
    z-index: 2;
}

/* Consistent DataNXT styling for all feature icons - White icons on brand gradient */
.solution-icon,
.feature-icon {
    background: linear-gradient(135deg, 
        var(--deep-atlantic-blue) 0%, 
        var(--royal-wave-blue) 100%);     /* Consistent DataNXT brand gradient */
    box-shadow: 
        0 8px 24px rgba(14, 58, 116, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.solution-icon:hover,
.feature-icon:hover {
    box-shadow: 
        0 12px 32px rgba(14, 58, 116, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Card Styles - MODERN DESIGN WITH ENHANCED SHADOWS */
.solution-card,
.feature-card {
    background: var(--white);
    border-radius: 16px;               /* Premium radius like Unique.ai */
    padding: var(--space-6);           /* 48px - Unique.ai generous padding */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);  /* Luxury shadow */
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.solution-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

.solution-card:hover::before,
.feature-card:hover::before {
    opacity: 1;
}

/* Ensure features section cards have the blue line hover effect - CRITICAL OVERRIDE */
.features .feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #1768d4 0%, #0e3a74 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 10 !important;
}

.features .feature-card:hover::before {
    opacity: 1 !important;
}

/* Double ensure with ID-level specificity */
section#features .feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #1768d4 0%, #0e3a74 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 15 !important;
}

section#features .feature-card:hover::before {
    opacity: 1 !important;
}

.solution-card:hover .solution-icon,
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.solution-card:hover .solution-icon svg,
.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.solution-title,
.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-atlantic-blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.solution-description,
.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Feature Benefits List */
.feature-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-benefits li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--verdant-rise-green);
    font-weight: 600;
    font-size: 0.85rem;
}

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

/* Four columns on large screens */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Integrations Section - MODERN CARD DESIGN - Exact Original */
.integrations {
    background: var(--white);
    padding: var(--space-6) 0;      /* 48px - consistent section spacing */
    position: relative;
}

.integrations .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.integrations .feature-row {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: var(--space-3);        /* 24px - comfortable card padding */
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(23, 104, 212, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.integrations .feature-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integrations .feature-row:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

.integrations .feature-row:hover::before {
    opacity: 1;
}

.integrations .feature-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.integrations .feature-title {
    font-size: 1.4rem;
    color: var(--deep-atlantic-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.integrations .feature-title svg {
    width: 24px;
    height: 24px;
    color: var(--royal-wave-blue);
    stroke-width: 1.5px;
    background: linear-gradient(135deg, rgba(23, 104, 212, 0.1) 0%, rgba(45, 166, 110, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid rgba(23, 104, 212, 0.08);
    padding: 12px;
    flex-shrink: 0;
}

.integrations .feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
    flex: 1;
}

.integration-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: auto;
}

.integration-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(23, 104, 212, 0.03);
}

.integration-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    background: rgba(23, 104, 212, 0.08);
    transform: scale(1.05);
}

.integration-cta {
    text-align: center;
    margin-top: 4rem;
    padding: var(--space-6) var(--space-4);  /* 48px 32px - systematic spacing */
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(23, 104, 212, 0.08);
    box-shadow: var(--shadow-light);
}

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

.integration-cta .btn-secondary {
    background: var(--royal-wave-blue);
    color: var(--white);
    border: 2px solid var(--royal-wave-blue);
    box-shadow: var(--shadow-light);
}

.integration-cta .btn-secondary:hover {
    background: var(--deep-atlantic-blue);
    color: var(--white);
    border-color: var(--deep-atlantic-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Roadmap Section - TIMELINE DESIGN */
.roadmap {
    background: var(--mist-grey);
    position: relative;
    padding: var(--space-6) 0;      /* 48px - consistent section spacing */
}

.roadmap-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Central timeline line */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(23, 104, 212, 0.2) 0%, 
        rgba(23, 104, 212, 0.15) 40%,
        rgba(255, 159, 28, 0.2) 60%, 
        rgba(34, 197, 94, 0.2) 100%
    );
    transform: translateX(-50%);
    border-radius: 1px;
    z-index: -1;
}

/* Roadmap markers - positioned in front */
.roadmap-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--royal-wave-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--white), 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.roadmap-marker:hover {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: var(--gold-signal);
    box-shadow: 0 0 0 4px var(--white), 0 6px 24px rgba(255, 159, 28, 0.3);
}

.marker-icon {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--royal-wave-blue);
    transition: color 0.3s ease;
}

.roadmap-marker:hover .marker-icon {
    color: var(--gold-signal);
}

.roadmap-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-item::before {
    display: none;
}

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

.roadmap-item:hover::before {
    display: none;
}

.roadmap-item.roadmap-future {
    background: transparent;
    border: none;
}

.roadmap-item.roadmap-future::before {
    display: none;
}

.roadmap-item.roadmap-future:hover::before {
    display: none;
}



.roadmap-content {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(23, 104, 212, 0.1);
    width: 45%;
    transition: all 0.3s ease;
    position: relative;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-right: auto;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-left: auto;
}

.roadmap-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(23, 104, 212, 0.2);
}

/* Arrow pointing to timeline */
.roadmap-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.roadmap-item:nth-child(odd) .roadmap-content::before {
    right: -24px;
    border-left-color: var(--white);
    transform: translateY(-50%);
}

.roadmap-item:nth-child(even) .roadmap-content::before {
    left: -24px;
    border-right-color: var(--white);
    transform: translateY(-50%);
}

.roadmap-feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roadmap-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.roadmap-number.future {
    background: linear-gradient(135deg, var(--royal-wave-blue) 0%, var(--verdant-rise-green) 100%);
    font-size: 0.8rem;
}

.roadmap-feature .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(23, 104, 212, 0.1) 0%, rgba(45, 166, 110, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    flex-shrink: 0;
    border: 2px solid rgba(23, 104, 212, 0.08);
    transition: all 0.3s ease;
}

.roadmap-feature .feature-icon:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(23, 104, 212, 0.15) 0%, rgba(45, 166, 110, 0.15) 100%);
}

.roadmap-feature .feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--royal-wave-blue);
    stroke-width: 1.8px;
}

.feature-details {
    flex: 1;
}

.roadmap-feature .feature-title {
    font-size: 1.1rem;
    color: var(--deep-atlantic-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.roadmap-feature .feature-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.feature-status {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: rgba(23, 104, 212, 0.1);
    color: var(--royal-wave-blue);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(23, 104, 212, 0.2);
    align-self: flex-start;
}

.roadmap-future .feature-status {
    background: linear-gradient(135deg, rgba(23, 104, 212, 0.1) 0%, rgba(45, 166, 110, 0.1) 100%);
    color: var(--deep-atlantic-blue);
    border-color: rgba(23, 104, 212, 0.3);
}

.future-content {
    /* Special styling for future roadmap items */
}

.roadmap-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

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

.roadmap-cta .btn-secondary {
    background: var(--royal-wave-blue);
    color: var(--white);
    border: 2px solid var(--royal-wave-blue);
    box-shadow: var(--shadow-light);
}

.roadmap-cta .btn-secondary:hover {
    background: var(--deep-atlantic-blue);
    color: var(--white);
    border-color: var(--deep-atlantic-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.future-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
    text-align: left;
}

.future-feature-item {
    background: rgba(23, 104, 212, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-left: 4px solid var(--royal-wave-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.future-feature-item .feature-bullet {
    color: var(--royal-wave-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Pricing Section - Enhanced Styling */
.pricing {
    background: var(--white);
    padding: var(--space-6) 0;      /* 48px - consistent section spacing */
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(23, 104, 212, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(23, 104, 212, 0.2);
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--royal-wave-blue);
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.pricing-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(23, 104, 212, 0.08);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-atlantic-blue);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--royal-wave-blue);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-atlantic-blue);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.plan-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Enhanced Plan Features List */
.plan-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
    border-radius: 8px;
    background: rgba(23, 104, 212, 0.02);
    border: 1px solid rgba(23, 104, 212, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.plan-features li:hover {
    background: rgba(23, 104, 212, 0.05);
    border-color: rgba(23, 104, 212, 0.1);
    transform: translateX(4px);
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--verdant-rise-green) 0%, var(--royal-wave-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(45, 166, 110, 0.2);
}

.plan-features li::after {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Pricing Card Actions */
.pricing-card .btn {
    margin: 0 2rem 2rem;
    text-align: center;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Featured card special styling */
.pricing-card.featured .plan-features li {
    background: rgba(23, 104, 212, 0.05);
    border-color: rgba(23, 104, 212, 0.1);
}

.pricing-card.featured .plan-features li:hover {
    background: rgba(23, 104, 212, 0.08);
    border-color: rgba(23, 104, 212, 0.15);
}

.pricing-card.featured .plan-features li::before {
    background: linear-gradient(135deg, var(--royal-wave-blue) 0%, var(--verdant-rise-green) 100%);
    box-shadow: 0 2px 8px rgba(23, 104, 212, 0.3);
}

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

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

/* Responsive Design for Product Page */
@media (max-width: 768px) {



    .roadmap-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .roadmap-item {
        min-height: 320px;
    }

    .roadmap-content {
        padding: 1.5rem;
    }

    .roadmap-feature .feature-title {
        font-size: 1.2rem;
    }

    .roadmap-number {
        width: 48px;
        height: 28px;
        font-size: 0.8rem;
        top: 1rem;
        right: 1rem;
    }

    .roadmap-number.future {
        font-size: 0.75rem;
        min-width: 48px;
    }

    .roadmap-feature .feature-icon {
        width: 56px;
        height: 56px;
    }

    .roadmap-feature .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .integrations .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .integrations .feature-row {
        padding: 2rem;
    }

    .integrations .feature-title {
        font-size: 1.3rem;
    }

    .integrations .feature-title svg {
        width: 20px;
        height: 20px;
        padding: 10px;
    }

    .integration-logos {
        gap: 1rem;
    }

    .integration-logos img {
        height: 32px;
    }

    .integration-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-header {
        padding: 2rem 1.5rem 1.25rem;
    }

    .plan-features {
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .plan-features li {
        padding: 0.5rem 0 0.5rem 2rem;
        font-size: 0.9rem;
    }

    .plan-features li::before,
    .plan-features li::after {
        width: 14px;
        height: 14px;
        left: 0.5rem;
    }

    .plan-features li::after {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .integrations .feature-row {
        padding: 1.5rem;
    }

    .integrations .feature-title {
        font-size: 1.2rem;
        gap: 0.75rem;
    }

    .integrations .feature-title svg {
        width: 18px;
        height: 18px;
        padding: 8px;
    }

    .integration-logos img {
        height: 28px;
    }

    .integration-cta {
        padding: 1.5rem 1rem;
    }

    .roadmap-content {
        padding: 1.25rem;
    }

    .roadmap-feature .feature-title {
        font-size: 1.1rem;
    }

    .roadmap-number {
        width: 44px;
        height: 24px;
        font-size: 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .roadmap-feature .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .roadmap-feature .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .pricing-card .btn {
        margin: 0 1.5rem 1.5rem;
        padding: 0.875rem 1.5rem;
    }

    .pricing-header {
        padding: 1.5rem 1.25rem 1rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .plan-features {
        padding: 1.25rem;
        gap: 0.5rem;
    }

    .plan-features li {
        padding: 0.5rem 0 0.5rem 1.75rem;
        font-size: 0.85rem;
    }

    .plan-features li::before,
    .plan-features li::after {
        width: 12px;
        height: 12px;
        left: 0.375rem;
    }

    .plan-features li::after {
        font-size: 8px;
    }
} 

/* ========================================
   INTERACTIVE ROADMAP STYLES - TIMELINE DESIGN
   ======================================== */

/* Interactive Roadmap Section */
.interactive-roadmap {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--space-6) 0;      /* 48px - consistent section spacing */
    position: relative;
}

.interactive-roadmap .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.interactive-roadmap .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-atlantic-blue);
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.interactive-roadmap .section-subtitle {
    font-size: 1.25rem;
    color: var(--slate-grey);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Roadmap Timeline Container */
.roadmap-visualization {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Central Timeline Line */
.roadmap-visualization::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--deep-atlantic-blue) 0%,
        var(--royal-wave-blue) 35%,
        var(--gold-signal) 65%,
        var(--verdant-rise-green) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(14, 58, 116, 0.4);
    z-index: 0;
}

/* Timeline Roadmap Items */
.interactive-roadmap .roadmap-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    width: 100%;
}

/* Alternating Layout - Left and Right */
.interactive-roadmap .roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.interactive-roadmap .roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Feature Card Containers - Enhanced Visual Design (Reduced Size) */
.interactive-roadmap .feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 247, 250, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    width: 42%;
    box-shadow:
        0 12px 40px rgba(14, 58, 116, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Enhanced Card Hover Effects (Reduced) */
.interactive-roadmap .feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(14, 58, 116, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(23, 104, 212, 0.3);
}


/* Enhanced Timeline Marker (Bubbles) - Better Design */
.roadmap-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--white), var(--mist-grey));
    border: 3px solid var(--deep-atlantic-blue);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.95),
        0 6px 16px rgba(14, 58, 116, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}


/* Timeline Quarter Indicators with Text */
.roadmap-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--deep-atlantic-blue);
    border-radius: 50%;
    z-index: 11;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px var(--white);
}


/* Quarter Labels on Timeline */
.roadmap-item[data-feature="reporting"]::after {
    content: 'Q1';
    width: 20px;
    height: 20px;
    background: var(--deep-atlantic-blue);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(14, 58, 116, 0.3);
}

.roadmap-item[data-feature="predictive"]::after {
    content: 'Q1';
    width: 20px;
    height: 20px;
    background: var(--deep-atlantic-blue);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(14, 58, 116, 0.3);
}

.roadmap-item[data-feature="document-finder"]::after {
    content: 'Q2';
    width: 20px;
    height: 20px;
    background: var(--verdant-rise-green);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(45, 166, 110, 0.3);
}

.roadmap-item[data-feature="document-scraping"]::after {
    content: 'Q3';
    width: 20px;
    height: 20px;
    background: #7C3AED;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.roadmap-item[data-feature="realtime-api"]::after {
    content: 'Q4';
    width: 20px;
    height: 20px;
    background: var(--gold-signal);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.3);
}


/* Connecting arrows from cards to timeline */
.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.interactive-roadmap .roadmap-item:nth-child(odd) .feature-card::before {
    right: -30px;
    border-left: 15px solid var(--white);
}

.interactive-roadmap .roadmap-item:nth-child(even) .feature-card::before {
    left: -30px;
    border-right: 15px solid var(--white);
}

/* Feature Information */
.feature-info {
    flex: 1;
}

/* Enhanced Feature Card Content Layout (Reduced) */
.feature-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

/* Enhanced Feature Icon (Reduced Size) */
.interactive-roadmap .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue), #3B82F6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 16px rgba(14, 58, 116, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.interactive-roadmap .feature-icon:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow:
        0 8px 20px rgba(14, 58, 116, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.interactive-roadmap .feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}





.feature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-atlantic-blue);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-summary {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 400;
}

/* Enhanced Feature Indicator Section (Reduced) */
.feature-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

/* Enhanced Status Badges (Reduced) */
.status-badge {
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 12px rgba(14, 58, 116, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.status-badge:hover::before {
    left: 100%;
}




.detail-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--deep-atlantic-blue);
    margin: 0 0 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.detail-section h4::before {
    content: '';
    width: 1px;
    height: 8px;
    background: var(--gold-signal);
    border-radius: 1px;
}

/* Feature List Styling - Minimal */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.35rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    border: 1px solid rgba(148, 163, 184, 0.05);
    transition: background 0.2s ease;
    font-size: 0.65rem;
    line-height: 1.2;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.8);
}

.feature-tag {
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue));
    color: white;
    padding: 0.15rem 0.3rem;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(14, 58, 116, 0.15);
}

/* Impact Metrics Grid - Improved readability */
.impact-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;  /* Much larger gap for better separation */
}

.impact-item {
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue));
    padding: 1.2rem 1.5rem;  /* Even larger padding for better readability */
    border-radius: 8px;  /* Slightly larger radius */
    text-align: center;
    color: white;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(14, 58, 116, 0.2);  /* More prominent shadow */
    min-height: 80px;  /* Increased minimum height */
}

.impact-item:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 6px rgba(14, 58, 116, 0.2);
}

/* Alternating Impact Metric Colors */
.impact-item:nth-child(2) {
    background: linear-gradient(135deg, var(--verdant-rise-green), #16A34A);
    box-shadow: 0 8px 20px rgba(45, 166, 110, 0.25);
}

.impact-item:nth-child(2):hover {
    box-shadow: 0 12px 28px rgba(45, 166, 110, 0.35);
}

.impact-item:nth-child(3) {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.impact-item:nth-child(3):hover {
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.impact-value {
    font-size: 1.8rem;  /* Even larger for better readability */
    font-weight: 700;
    margin-bottom: 0.3rem;  /* More spacing */
    line-height: 1.1;  /* Tighter line height for numbers */
    color: white;  /* White text for better contrast on colored backgrounds */
}

.impact-label {
    font-size: 0.8rem;  /* Larger label text */
    opacity: 0.95;  /* More visible */
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;  /* Bolder for better readability */
    line-height: 1.2;  /* Better spacing */
    color: white;  /* White text for consistency */
}

/* Benefits and Use Cases */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--deep-atlantic-blue);
    border-left: 4px solid var(--verdant-rise-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.benefit:hover {
    transform: translateX(4px);
}

.use-cases {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.use-case {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--deep-atlantic-blue);
    border-left: 4px solid var(--gold-signal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.use-case:hover {
    transform: translateX(4px);
}

/* Document and Source Types */
.document-types,
.source-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.doc-type,
.source-type {
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue));
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(14, 58, 116, 0.4);
}

.doc-type:hover,
.source-type:hover {
    transform: scale(1.05);
}

/* CTA Section */
.roadmap-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 3rem auto;
    padding: 2rem;
    max-width: 800px;
}

.roadmap-cta p {
    font-size: 1.25rem;
    color: var(--slate-grey);
    margin: 0 0 2rem 0;
    font-weight: 400;
}

.roadmap-cta .btn-primary {
    background: var(--royal-wave-blue);
    color: var(--white);
    border: 2px solid var(--royal-wave-blue);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 200px;
}

.roadmap-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.roadmap-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    text-decoration: none;
    background: var(--deep-atlantic-blue);
    border-color: var(--deep-atlantic-blue);
}

.roadmap-cta .btn-primary:hover::before {
    left: 100%;
}

/* Responsive adjustments for roadmap CTA */
@media (max-width: 768px) {
    .roadmap-cta {
        margin: 2rem auto;
        padding: 1.5rem 1rem;
    }

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

    .roadmap-cta .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .interactive-roadmap .container {
        padding: 0 1.5rem;
    }

}

@media (max-width: 768px) {
    .interactive-roadmap {
        padding: 3rem 0;
    }

    .interactive-roadmap .section-title {
        font-size: 2.5rem;
    }

    /* Mobile Timeline - Stack vertically */
    .roadmap-visualization::before {
        left: 2rem;
    }

    .interactive-roadmap .roadmap-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 4rem;
        margin-bottom: 3rem;
    }

    .roadmap-item::before {
        left: 2rem !important;
        transform: translateX(-50%) translateY(-50%) !important;
    }

    .interactive-roadmap .feature-card {
        width: 100% !important;
        margin: 0 !important;
    }

    .feature-card::before {
        display: none;
    }


    .impact-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .interactive-roadmap .container {
        padding: 0 1rem;
    }

    .interactive-roadmap .section-title {
        font-size: 2rem;
    }

    .interactive-roadmap .roadmap-item {
        margin-left: 3rem;
    }

    .roadmap-visualization::before {
        left: 1.5rem;
    }

    .roadmap-item::before {
        left: 1.5rem !important;
    }

    .interactive-roadmap .feature-card {
        padding: 1.5rem;
    }

    .interactive-roadmap .feature-icon {
        width: 50px;
        height: 50px;
    }

    .interactive-roadmap .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-name {
        font-size: 1.25rem;
    }

}

/* Specific Status Badge Types - Enhanced */
.status-badge.priority-high {
    background: linear-gradient(135deg, #DC2626, #B91C1C, #991B1B);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.status-badge.core-feature {
    background: linear-gradient(135deg, var(--deep-atlantic-blue), var(--royal-wave-blue), #3B82F6);
    box-shadow: 0 6px 16px rgba(14, 58, 116, 0.4);
}

.status-badge.innovation {
    background: linear-gradient(135deg, #7C3AED, #5B21B6, #4C1D95);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

.status-badge.automation {
    background: linear-gradient(135deg, var(--verdant-rise-green), #16A34A, #15803D);
    box-shadow: 0 6px 16px rgba(45, 166, 110, 0.4);
}

.status-badge.advanced {
    background: linear-gradient(135deg, var(--gold-signal), #EA580C, #C2410C);
    box-shadow: 0 6px 16px rgba(255, 159, 28, 0.4);
}

/* Value Proposition Section */
.value-prop {
    background: var(--white);
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-content h2 {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
    color: var(--deep-atlantic-blue);
}

.value-list {
    list-style: none;
    margin: 1.5rem 0;
}

.value-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-light);
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verdant-rise-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.value-cta {
    margin-top: 2rem;
} 



 