/* ===============================================
   SOLUTION DETAIL PAGES - ENHANCED STYLING
   =============================================== */

:root {
    --navy-950: #0a1128;
    --navy-900: #0f172a;
    --navy-800: #1a237e;
    --navy-700: #1e3a8a;
    --navy-600: #2563eb;
    --gold: #fbbf24;
    --gold-600: #f59e0b;
    --purple: #8b5cf6;
    --purple-600: #7c3aed;
    --blue: #3b82f6;
    --blue-600: #2563eb;
    --green: #10b981;
    --green-600: #059669;
    --red: #ef4444;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0F172A;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
}

/* ===============================================
   HERO SECTION - STANDARDIZED
   =============================================== */
.solution-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a237e 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    overflow: hidden;
}

.solution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.solution-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

/* Solution-specific hero backgrounds - REMOVED
.secureshield-hero {
    background: linear-gradient(135deg, #0a1128 0%, #1a237e 40%, #10b981 100%);
}

.insightai-hero {
    background: linear-gradient(135deg, #0a1128 0%, #7c3aed 40%, #8b5cf6 100%);
}

.securecore-hero {
    background: linear-gradient(135deg, #0a1128 0%, #1e3a8a 40%, #3b82f6 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3); }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    word-spacing: 100vw;
}

.hero-subtitle {
    font-size: 1.45rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 3rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.75rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.35s ease;
    z-index: 0;
}

.btn span, .btn i {
    position: relative;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-950);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.1rem;
}

/* ===============================================
   OVERVIEW SECTION
   =============================================== */
.solution-overview {
    padding: 9rem 0;
    background: var(--white);
    position: relative;
}

.solution-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 126, 0.2), transparent);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-align: center;
}

.overview-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(8px);
    color: var(--gray-900);
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--green);
    flex-shrink: 0;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 12px 32px rgba(26, 35, 126, 0.15);
}

.stat h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-align: center;
}

.stat p {
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 600;
    text-align: justify;
}

/* ===============================================
   FEATURES SECTION
   =============================================== */
.solution-features {
    padding: 9rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
    position: relative;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Visual Section */
.solution-visual {
    padding: 6rem 0;
    background: var(--white);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.visual-item {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 17, 40, 0.08);
}

.visual-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.visual-item:hover img {
    transform: scale(1.05);
}

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

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
    transition: all 0.3s ease;
}

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

.feature-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    text-align: justify;
}

/* ===============================================
   USE CASES SECTION
   =============================================== */
.solution-usecases {
    padding: 9rem 0;
    background: var(--white);
}

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

.usecase {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--blue);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.usecase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.usecase:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.18);
    border-left-color: var(--purple);
}

.usecase h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
    text-align: center;
    justify-content: center;
}

.usecase i {
    font-size: 1.75rem;
    color: var(--blue);
    transition: all 0.3s ease;
}

.usecase:hover i {
    color: var(--purple);
    transform: scale(1.2);
}

.usecase p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--gray-700);
    position: relative;
    z-index: 1;
    text-align: justify;
}

/* ===============================================
   CTA SECTION
   =============================================== */
.solution-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-950) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.solution-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    text-align: center;
}

.solution-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-align: justify;
}

/* ===============================================
   DETAIL SECTIONS
   =============================================== */
.detail-section {
    padding: 7rem 0;
    background: var(--white);
}

.detail-section h2.section-title {
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem;
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.detail-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.detail-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    text-align: center;
}

.detail-card p {
    color: var(--gray-700);
    line-height: 1.65;
    font-size: 1rem;
    text-align: justify;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.detail-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.45rem 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.detail-list i {
    color: var(--blue);
    font-size: 1rem;
    margin-top: 0.2rem;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 1200px) {
    .overview-grid {
        gap: 4rem;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 6rem 0 4rem;
        min-height: 75vh;
    }

    .hero-title {
        font-size: 2.75rem;
        word-spacing: normal;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

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

    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .solution-cta h2 {
        font-size: 2rem;
    }

    .solution-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-title::after {
        width: 60px;
    }

    .overview-content h2 {
        font-size: 1.5rem;
    }

    .overview-stats {
        gap: 1.5rem;
    }

    .stat {
        padding: 1.75rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .usecase h3 {
        font-size: 1.1rem;
    }

    .usecase i {
        font-size: 1.4rem;
    }
}
