/* Custom Web Apps - Main Page Styles */

.solutions-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.2) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: float 6s ease-in-out infinite;
}

.solutions-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.solutions-hero .container {
    position: relative;
    z-index: 1;
}

.solutions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffdd00, #ff7a00, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.solutions-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.categories-intro {
    text-align: center;
    padding: 60px 0 40px;
    background: #0a0e27;
}

.categories-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.categories-intro p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
    background: #0a0e27;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    display: block;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 0, 128, 0.3);
    border-color: var(--category-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--category-color);
    filter: drop-shadow(0 0 10px var(--category-color));
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.app-count {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3), rgba(0, 212, 255, 0.3));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.category-arrow {
    margin-top: 20px;
    color: var(--category-color);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.category-card:hover .category-arrow {
    gap: 15px;
}

.stats-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 60px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0080, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-section {
    text-align: center;
    padding: 80px 0;
    background: #0a0e27;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #ff0080, #ff8c00, #00d4ff);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-primary:hover::before {
    transform: scale(1);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.9), 0 0 80px rgba(0, 212, 255, 0.6), 0 10px 40px rgba(255, 140, 0, 0.5);
    color: #ffffff;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* What Are Custom Web Applications Section */
.what-are-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.what-are-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: float 10s ease-in-out infinite;
}

.what-are-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, #ffdd00, #ff7a00, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.what-are-content {
    position: relative;
    z-index: 1;
}

.what-are-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.what-are-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.what-are-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.what-are-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.what-are-feature:hover::before {
    left: 100%;
}

.what-are-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #00d4ff;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

.what-are-feature h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.what-are-feature p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Why Choose Softbiz Section */
.why-choose-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 50%, #1a1f3a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    bottom: -350px;
    left: -350px;
    animation: float 12s ease-in-out infinite reverse;
}

.why-choose-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, #ff0080, #ffdd00, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.why-choose-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transition: left 0.6s ease;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 128, 0.4);
    box-shadow: 0 20px 50px rgba(255, 0, 128, 0.25), 0 0 30px rgba(0, 212, 255, 0.15);
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff0080, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5));
}

.why-choose-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

.why-choose-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: #0a0e27;
    padding: 80px 0;
    position: relative;
}

.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff, #ff0080, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question > i:first-child {
    font-size: 1.5rem;
    color: #ff0080;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.25rem;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.125rem;
    color: #00d4ff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


/* Custom Web App Details Page Styles */
/* Overview Cards */
.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.overview-card {
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card-1 {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.overview-card-1:hover {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.overview-card-2 {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.overview-card-2:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.overview-card-3 {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.overview-card-3:hover {
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.overview-card-1 .overview-icon {
    color: #6366f1;
}

.overview-card-2 .overview-icon {
    color: #8b5cf6;
}

.overview-card-3 .overview-icon {
    color: #ec4899;
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.overview-card-1 h3 {
    color: #6366f1;
}

.overview-card-2 h3 {
    color: #8b5cf6;
}

.overview-card-3 h3 {
    color: #ec4899;
}

.overview-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Styles */
.what-it-does-section {
    background: #0a0e27;
    padding: 80px 0;
    color: white;
}

.what-it-does-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-it-does-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block p {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Core Features Section */
.core-features-section {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 80px 0;
    color: white;
}

.core-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.core-features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-gradient {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
}

.feature-item:nth-child(1) .feature-gradient {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(2) .feature-gradient {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(3) .feature-gradient {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(4) .feature-gradient {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(5) .feature-gradient {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(6) .feature-gradient {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(7) .feature-gradient {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(8) .feature-gradient {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(9) .feature-gradient {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(10) .feature-gradient {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(11) .feature-gradient {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(12) .feature-gradient {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(13) .feature-gradient {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(14) .feature-gradient {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.13) 0%, transparent 70%);
}

.feature-item:nth-child(15) .feature-gradient {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.13) 0%, transparent 70%);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-item:nth-child(1) {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-item:nth-child(2) {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-item:nth-child(3) {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-item:nth-child(4) {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-item:nth-child(5) {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-item:nth-child(6) {
    background: rgba(236, 72, 153, 0.05);
    border-color: rgba(236, 72, 153, 0.2);
}

.feature-item:nth-child(7) {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-item:nth-child(8) {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-item:nth-child(9) {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-item:nth-child(10) {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-item:nth-child(11) {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-item:nth-child(12) {
    background: rgba(236, 72, 153, 0.05);
    border-color: rgba(236, 72, 153, 0.2);
}

.feature-item:nth-child(13) {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-item:nth-child(14) {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-item:nth-child(15) {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.feature-content i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item:nth-child(1) .feature-content i {
    color: #6366f1;
}

.feature-item:nth-child(2) .feature-content i {
    color: #8b5cf6;
}

.feature-item:nth-child(3) .feature-content i {
    color: #3b82f6;
}

.feature-item:nth-child(4) .feature-content i {
    color: #10b981;
}

.feature-item:nth-child(5) .feature-content i {
    color: #f59e0b;
}

.feature-item:nth-child(6) .feature-content i {
    color: #ec4899;
}

.feature-item:nth-child(7) .feature-content i {
    color: #8b5cf6;
}

.feature-item:nth-child(8) .feature-content i {
    color: #3b82f6;
}

.feature-item:nth-child(9) .feature-content i {
    color: #6366f1;
}

.feature-item:nth-child(10) .feature-content i {
    color: #10b981;
}

.feature-item:nth-child(11) .feature-content i {
    color: #f59e0b;
}

.feature-item:nth-child(12) .feature-content i {
    color: #ec4899;
}

.feature-item:nth-child(13) .feature-content i {
    color: #8b5cf6;
}

.feature-item:nth-child(14) .feature-content i {
    color: #3b82f6;
}

.feature-item:nth-child(15) .feature-content i {
    color: #6366f1;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Use Cases Section */
.use-cases-section {
    background: #0a0e27;
    padding: 80px 0;
    color: white;
}

.use-cases-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.use-cases-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.use-case-item {
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid;
}

.use-case-1 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.use-case-2 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.use-case-3 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.use-case-4 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.use-case-5 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.use-case-6 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-color: rgba(236, 72, 153, 0.3);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.use-case-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.use-case-1 h3 {
    color: #6366f1;
}

.use-case-2 h3 {
    color: #8b5cf6;
}

.use-case-3 h3 {
    color: #3b82f6;
}

.use-case-4 h3 {
    color: #10b981;
}

.use-case-5 h3 {
    color: #f59e0b;
}

.use-case-6 h3 {
    color: #ec4899;
}

.use-case-item p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* User Roles Section */
.user-roles-section {
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 80px 0;
    color: white;
}

.user-roles-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.user-roles-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.role-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 35px;
}

.role-1 {
    border-left: 4px solid #00d4ff;
}

.role-2 {
    border-left: 4px solid #ff0080;
}

.role-3 {
    border-left: 4px solid #ff8c00;
}

.role-4 {
    border-left: 4px solid #00ff88;
}

.role-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.role-1 h3 {
    color: #00d4ff;
}

.role-2 h3 {
    color: #ff0080;
}

.role-3 h3 {
    color: #ff8c00;
}

.role-4 h3 {
    color: #00ff88;
}

.role-item h3 i {
    margin-right: 12px;
}

.role-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-item ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.role-item ul li:last-child {
    border-bottom: none;
}

.role-item ul li i {
    margin-right: 10px;
}

.role-1 ul li i {
    color: #00d4ff;
}

.role-2 ul li i {
    color: #ff0080;
}

.role-3 ul li i {
    color: #ff8c00;
}

.role-4 ul li i {
    color: #00ff88;
}

/* Technology Section */
.technology-section {
    background: #0a0e27;
    padding: 80px 0;
    color: white;
}

.technology-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.technology-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.tech-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.tech-block {
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid;
}

.tech-1 {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}

.tech-2 {
    background: rgba(255, 0, 128, 0.05);
    border-color: rgba(255, 0, 128, 0.2);
}

.tech-3 {
    background: rgba(255, 140, 0, 0.05);
    border-color: rgba(255, 140, 0, 0.2);
}

.tech-4 {
    background: rgba(121, 40, 202, 0.05);
    border-color: rgba(121, 40, 202, 0.2);
}

.tech-block i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tech-1 i {
    color: #00d4ff;
}

.tech-2 i {
    color: #ff0080;
}

.tech-3 i {
    color: #ff8c00;
}

.tech-4 i {
    color: #7928ca;
}

.tech-block h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: white;
    margin-top: 15px;
}

.tech-block p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 80px 0;
    color: white;
}

.why-choose-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.why-choose-grid {
    display: grid;
    gap: 30px;
}

.why-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
}

.why-1 {
    border-left: 3px solid #00d4ff;
}

.why-2 {
    border-left: 3px solid #ff0080;
}

.why-3 {
    border-left: 3px solid #ff8c00;
}

.why-4 {
    border-left: 3px solid #7928ca;
}

.why-icon {
    font-size: 3rem;
    text-align: center;
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-1 h3 {
    color: #00d4ff;
}

.why-2 h3 {
    color: #ff0080;
}

.why-3 h3 {
    color: #ff8c00;
}

.why-4 h3 {
    color: #7928ca;
}

.why-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Success Metrics Section */
.success-metrics-section {
    background: #0a0e27;
    padding: 80px 0;
    color: white;
}

.success-metrics-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-metrics-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.success-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.metric-1 { border-color: rgba(0, 212, 255, 0.3); }
.metric-2 { border-color: rgba(255, 0, 128, 0.3); }
.metric-3 { border-color: rgba(255, 140, 0, 0.3); }
.metric-4 { border-color: rgba(121, 40, 202, 0.3); }
.metric-5 { border-color: rgba(0, 255, 136, 0.3); }
.metric-6 { border-color: rgba(255, 221, 0, 0.3); }

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.metric-1:hover { box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3); }
.metric-2:hover { box-shadow: 0 15px 40px rgba(255, 0, 128, 0.3); }
.metric-3:hover { box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3); }
.metric-4:hover { box-shadow: 0 15px 40px rgba(121, 40, 202, 0.3); }
.metric-5:hover { box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3); }
.metric-6:hover { box-shadow: 0 15px 40px rgba(255, 221, 0, 0.3); }

.metric-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.metric-1 .metric-value { color: #00d4ff; }
.metric-2 .metric-value { color: #ff0080; }
.metric-3 .metric-value { color: #ff8c00; }
.metric-4 .metric-value { color: #7928ca; }
.metric-5 .metric-value { color: #00ff88; }
.metric-6 .metric-value { color: #ffdd00; }

.metric-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.metric-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.success-testimonial {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-left: 4px solid #6366f1;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: #6366f1;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.metrics-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    border-radius: 8px;
    padding: 20px 25px;
    margin-top: 40px;
}

.metrics-disclaimer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.metrics-disclaimer strong {
    color: #ffc107;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: #0a0e27;
    padding: 80px 0;
    color: white;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-1 {
    border-left: 4px solid #00d4ff;
}

.faq-2 {
    border-left: 4px solid #ff0080;
}

.faq-3 {
    border-left: 4px solid #ff8c00;
}

.faq-4 {
    border-left: 4px solid #7928ca;
}

.faq-5 {
    border-left: 4px solid #00ff88;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-1 h3 { color: #00d4ff; }
.faq-2 h3 { color: #ff0080; }
.faq-3 h3 { color: #ff8c00; }
.faq-4 h3 { color: #7928ca; }
.faq-5 h3 { color: #00ff88; }

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    border-radius: 0 !important;
    border: none !important;
}

.cta-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-heading {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffdd00, #ff7a00, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text-primary {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text-secondary {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff0080, #ff8c00, #00d4ff);
    background-size: 200% 200%;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 1.15rem;
    animation: gradientShift 3s ease infinite;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.8), 0 0 80px rgba(0, 212, 255, 0.6);
}

.cta-button-primary i,
.cta-button-secondary i {
    margin-right: 10px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-stat-1 {
    background: linear-gradient(135deg, #00d4ff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-2 {
    background: linear-gradient(135deg, #ff0080, #ff3366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-3 {
    background: linear-gradient(135deg, #ff8c00, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .what-it-does-section h2,
    .core-features-section h2,
    .use-cases-section h2,
    .user-roles-section h2,
    .technology-section h2,
    .why-choose-section h2,
    .faq-section h2,
    .cta-heading {
        font-size: 2rem;
    }
    
    .feature-grid,
    .use-case-grid,
    .roles-grid,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .role-item h3 {
        font-size: 1.5rem;
    }
    
    .use-case-item {
        padding: 25px;
    }
}

/* Related Apps Section */
.related-apps-section {
    background: #0a0e27;
    padding: 80px 0;
    color: white;
}

.related-apps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-apps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-apps-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.related-apps-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
}

.related-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.related-app-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    text-decoration: none;
    color: white;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.related-app-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: white;
}

.related-app-icon {
    margin-bottom: 20px;
}

.related-app-icon i {
    font-size: 3rem;
}

.related-app-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 700;
    line-height: 1.3;
}

.related-app-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.related-app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.related-app-feature-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.related-app-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.related-apps-footer {
    text-align: center;
    margin-top: 3rem;
}

.related-apps-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-category-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-category-all:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: white;
}

.btn-all-apps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-all-apps:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    text-decoration: none;
    color: #00d4ff;
}

/* Hero Section */
.app-hero-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.app-hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.app-hero-icon {
    margin-bottom: 30px;
}

.app-hero-icon i {
    font-size: 5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.app-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #0080ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.app-hero-content > p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.app-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff0080, #ff8c00, #00d4ff);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.8);
    text-decoration: none;
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.7);
    text-decoration: none;
    color: #ffffff;
}

/* CTA Section */
.cta-section-custom {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section-custom .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section-custom h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffdd00, #ff7a00, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section-custom p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section-custom p:last-of-type {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.cta-buttons-custom {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff0080, #ff8c00, #00d4ff);
    background-size: 200% 200%;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 1.15rem;
    animation: gradientShift 3s ease infinite;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.8), 0 0 80px rgba(0, 212, 255, 0.6);
    text-decoration: none;
    color: #ffffff;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    text-decoration: none;
    color: #ffffff;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-stats-custom {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat-custom {
    text-align: center;
}

.cta-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-stat-value-1 {
    background: linear-gradient(135deg, #00d4ff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-value-2 {
    background: linear-gradient(135deg, #ff0080, #ff3366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-value-3 {
    background: linear-gradient(135deg, #ff8c00, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* --- Solution Price & Timeline Styles --- */
/* --- Solution Price & Timeline Styles (Professional Card) --- */
.solution-meta-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin: 2.5rem 0 2rem 0;
    flex-wrap: wrap;
}
/* --- Solution Price & Timeline Styles (Modern Card) --- */
.solution-meta-block {
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
    border: 1.5px solid #e0e6ed;
    padding: 26px 32px 20px 32px;
    min-width: 220px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.solution-meta-block.price {
    border-left: 5px solid #2e7dff;
    box-shadow: 0 2px 12px rgba(46, 125, 255, 0.10);
}
.solution-meta-block.timeline {
    border-left: 5px solid #00b894;
    box-shadow: 0 2px 12px rgba(0, 184, 148, 0.10);
}
.solution-meta-block.alt-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e5e7ef;
    box-shadow: 0 6px 24px rgba(10, 14, 39, 0.10);
    padding: 30px 40px 24px 40px;
    min-width: 240px;
    text-align: left;
    align-items: flex-start;
}
.solution-meta-label {
    font-size: 1.09rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #2e3a59;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    opacity: 0.92;
}
.solution-meta-value {
    font-size: 2.05rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
    color: #1a1f3a;
    background: none;
    display: flex;
    align-items: center;
    gap: 0.6em;
}
.meta-icon {
    font-size: 1.3em;
    color: #2e7dff;
    margin-right: 0.2em;
    display: inline-flex;
    align-items: center;
}
.solution-meta-block.timeline .meta-icon {
    color: #00b894;
}
@media (max-width: 600px) {
    .solution-meta-row {
        flex-direction: column;
        gap: 18px;
    }
    .solution-meta-block, .solution-meta-block.alt-card {
        min-width: 0;
        width: 100%;
        padding: 22px 10px 18px 10px;
    }
}
@media (max-width: 600px) {
    .solution-meta-row {
        flex-direction: column;
        gap: 18px;
    }
    .solution-meta-block {
        min-width: 0;
        width: 100%;
        padding: 24px 10px 20px 10px;
    }
}
@media (max-width: 600px) {
    .solution-meta-row {
        flex-direction: column;
        gap: 18px;
    }
    .solution-meta-block {
        min-width: 0;
        width: 100%;
        padding: 24px 10px 20px 10px;
    }
}

/* Stats Section Styles */
.solution-stats-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #101436;
    padding: 48px 0 24px 0;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.solution-stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.solution-stat {
    flex: 1 1 200px;
    min-width: 180px;
    max-width: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 24px 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}

.solution-stat:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,212,255,0.10);
}

.solution-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff8c00, #ff0080, #00d4ff);
    color: #fff;
    border-radius: 12px;
    padding: 8px 18px;
    display: inline-block;
    box-shadow: 0 0 18px rgba(255,140,0,0.3), 0 0 30px rgba(0,212,255,0.2);
    line-height: 1.2;
}

.solution-stat-label {
    font-size: 1.1rem;
    color: #e0e6f7;
    letter-spacing: 0.5px;
    text-align: center;
}

.solution-trust-line {
    text-align: center;
    margin-top: 32px;
    font-size: 1.15rem;
    color: #b0b8c8;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-price-comment {
    text-align: center;
    margin-top: 16px;
    font-size: 1rem;
    color: #b0b8c8;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .solution-stats-row {
        gap: 16px;
    }
    .solution-stat {
        min-width: 140px;
        padding: 24px 8px 18px 8px;
    }
}

@media (max-width: 600px) {
    .solution-stats-row {
        flex-direction: column;
        gap: 12px;
    }
    .solution-stat {
        flex: none;
        max-width: 100%;
        min-width: 0;
        padding: 20px 18px 16px 18px;
    }
}
