/* SAP Access Page Styles */

.hero-sap-access {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-sap-access {
        background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%) !important;
    }
    
    .hero-video {
        display: block;
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-sap-access {
        padding: 120px 15px 60px !important;
        min-height: auto !important;
        display: flex !important;
    }
    
    .hero-video {
        object-position: center center;
    }
    
    .slide-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
        width: 100%;
    }
    
    .slide-text {
        order: 2;
        width: 100%;
    }
    
    .slide-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }
    
    .slide-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .slide-features {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .slide-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .slide-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .slide-badge {
        font-size: 0.75rem !important;
    }
}

.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

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

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 1rem 0;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.systems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.system-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.system-card:hover {
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 184, 108, 0.1));
}

.system-card.featured {
    border-color: rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.system-card.featured:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 184, 108, 0.15));
}

.system-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.system-badge {
    padding: 0.375rem 0.75rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.system-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.system-icon.s4 { background: linear-gradient(135deg, #667eea, #764ba2); }
.system-icon.ecc { background: linear-gradient(135deg, #f093fb, #f5576c); }
.system-icon.bw { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.system-icon.btp { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.system-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.system-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.system-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.system-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.system-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

/* Version Selector */
.version-selector-section {
    padding: 2rem 0;
    margin-top: -2rem;
}

.version-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.version-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.version-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.version-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.version-year {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.version-tab.active .version-year {
    color: white;
}

.version-badge {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.version-tab.active .version-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #ef4444;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0 8rem;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.03) 100%);
    margin-bottom: 6rem;
}

.pricing-grid-lg {
    display: grid;
    grid-template-columns: repeat(4, 350px);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2rem;
}

.pricing-grid-lg {
    display: grid;
    grid-template-columns: repeat(4, 350px);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    border: 2px solid transparent;
    min-width: 320px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.5rem;
    background: linear-gradient(45deg, #6366f1, #ec4899, #06b6d4, #a855f7, #6366f1);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.pricing-card:nth-child(1)::before {
    background: linear-gradient(45deg, #3b82f6, #2563eb, #1d4ed8, #3b82f6);
}

.pricing-card:nth-child(2)::before {
    background: linear-gradient(45deg, #10b981, #059669, #047857, #10b981);
}

.pricing-card:nth-child(3)::before {
    background: linear-gradient(45deg, #f59e0b, #d97706, #b45309, #f59e0b);
}

.pricing-card:nth-child(4)::before {
    background: linear-gradient(45deg, #6b7280, #4b5563, #374151, #6b7280);
}

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

/* Card Header */
.card-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.card-type {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Value Badge */
.value-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Pricing Amount */
.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* For Contact Us text */
.pricing-amount:not(:has(span)) {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pricing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
}

.btn-full {
    width: 100%;
}

/* Pricing Savings */
.pricing-savings {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Featured Card */
.pricing-card.featured {
    transform: scale(1.05);
}

.pricing-card.featured::before {
    opacity: 0.8;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .pricing-grid-lg {
        grid-template-columns: repeat(2, 350px);
        gap: 1.25rem;
    }
    
    .pricing-card {
        padding: 2rem 1.75rem;
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0 !important;
    }
    
    .pricing-grid-lg {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin: 1.5rem auto !important;
    }
    
    .pricing-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.25rem !important;
        min-width: 100% !important;
        margin: 0 !important;
        flex: none !important;
    }
    
    .pricing-card.featured {
        transform: none !important;
        order: -1 !important;
    }
}

.pricing-grid-lg {
    display: grid;
    grid-template-columns: repeat(4, 350px);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    border: 2px solid transparent;
    min-width: 320px;
}

.pricing-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(99, 102, 241, 0.3);
}

.pricing-card.popular {
    border-color: rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .systems-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Label Override for SAP Access Page */
.section-label {
    background: linear-gradient(to right, #FF512F 0%, #DD2476 1%, #FF512F 100%);
    color: white;
    border: none;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.03) 0%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: conic-gradient(from 0deg, #4285F4, #EA4335, #FBBC05, #34A853, #4285F4);
    background-size: 200% 200%;
    animation: featureBorderFlow 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

@keyframes featureBorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 1.75rem;
    background: conic-gradient(from 0deg, 
        rgba(66, 133, 244, 0.2), 
        rgba(234, 67, 53, 0.2), 
        rgba(251, 188, 5, 0.2), 
        rgba(52, 168, 83, 0.2),
        rgba(66, 133, 244, 0.2)
    );
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
    animation: featureGlowRotate 4s linear infinite;
}

@keyframes featureGlowRotate {
    from { filter: blur(12px) hue-rotate(0deg); }
    to { filter: blur(12px) hue-rotate(360deg); }
}

.feature-card:hover::after {
    opacity: 0.6;
}

.feature-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.15);
}

.feature-icon-wrap {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.icon-blue {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.icon-green {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.icon-purple {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.icon-pink {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(99, 102, 241, 0.4);
    color: #818cf8;
}

.feature-icon-wrap {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.icon-blue {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.icon-green {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.icon-purple {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.icon-pink {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(99, 102, 241, 0.4);
    color: #818cf8;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary-light);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 3rem;
}

.step-connector svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-muted);
}

/* ============================================
   USE CASES SECTION
   ============================================ */
.use-cases-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.03) 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.use-case-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.use-case-icon.students { background: linear-gradient(135deg, #667eea, #764ba2); }
.use-case-icon.students svg { stroke: white; }

.use-case-icon.consultants { background: linear-gradient(135deg, #f093fb, #f5576c); }
.use-case-icon.consultants svg { stroke: white; }

.use-case-icon.developers { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.use-case-icon.developers svg { stroke: white; }

.use-case-icon.companies { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.use-case-icon.companies svg { stroke: white; }

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.use-case-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.use-case-link {
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.use-case-link:hover {
    color: white;
}

/* ============================================
   SPECS SECTION
   ============================================ */
.specs-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.03) 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.spec-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--spec-color-1, #6366f1), var(--spec-color-2, #a855f7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-8px);
}

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

.spec-card:nth-child(1) {
    --spec-color-1: #06b6d4;
    --spec-color-2: #3b82f6;
}

.spec-card:nth-child(1)::before {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
}

.spec-card:nth-child(2) {
    --spec-color-1: #10b981;
    --spec-color-2: #14b8a6;
}

.spec-card:nth-child(2)::before {
    background: linear-gradient(90deg, #10b981, #14b8a6);
}

.spec-card:nth-child(3) {
    --spec-color-1: #f59e0b;
    --spec-color-2: #f97316;
}

.spec-card:nth-child(3)::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.spec-card:nth-child(4) {
    --spec-color-1: #ec4899;
    --spec-color-2: #a855f7;
}

.spec-card:nth-child(4)::before {
    background: linear-gradient(90deg, #ec4899, #a855f7);
}

.spec-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spec-card:nth-child(1) .spec-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
}

.spec-card:nth-child(2) .spec-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(20, 184, 166, 0.2));
}

.spec-card:nth-child(3) .spec-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
}

.spec-card:nth-child(4) .spec-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
}

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

.spec-card:nth-child(1) .spec-icon svg {
    stroke: #22d3ee;
}

.spec-card:nth-child(2) .spec-icon svg {
    stroke: #34d399;
}

.spec-card:nth-child(3) .spec-icon svg {
    stroke: #fbbf24;
}

.spec-card:nth-child(4) .spec-icon svg {
    stroke: #f472b6;
}

.spec-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

.spec-card:nth-child(1) .spec-list li::before {
    color: #22d3ee;
}

.spec-card:nth-child(2) .spec-list li::before {
    color: #34d399;
}

.spec-card:nth-child(3) .spec-list li::before {
    color: #fbbf24;
}

.spec-card:nth-child(4) .spec-list li::before {
    color: #f472b6;
}

.spec-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 0.8rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.03) 0%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background-size: 300% 300%;
    animation: gradient-rotate 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.testimonial-card.gradient-blue::before {
    background: linear-gradient(45deg, #6366f1, #ec4899, #06b6d4, #6366f1);
}

.testimonial-card.gradient-green::before {
    background: linear-gradient(45deg, #10b981, #22d3ee, #3b82f6, #10b981);
}

.testimonial-card.gradient-orange::before {
    background: linear-gradient(45deg, #f59e0b, #ef4444, #ec4899, #f59e0b);
}

.testimonial-card:hover {
    background: rgba(15, 23, 42, 0.9);
}

.testimonial-card:hover::before {
    animation: gradient-rotate 1.5s ease infinite;
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    font-style: normal;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
    font-size: 0.95rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid transparent;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.3) 50%, rgba(6, 182, 212, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.faq-item:hover {
    transform: translateX(4px);
}

.faq-item:hover::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6) 0%, rgba(236, 72, 153, 0.6) 50%, rgba(6, 182, 212, 0.6) 100%);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.faq-item.active::before {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #06b6d4 100%);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    stroke: #818cf8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    stroke: #ec4899;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3), transparent) 1;
    padding-top: 1rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cta-guarantee svg {
    stroke: #10b981;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .features-grid,
    .use-cases-grid,
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .use-cases-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
