:root {
    --primary: #111;
    --accent: #ccff00;
    --accent-glow: rgba(204, 255, 0, 0.4);
    --bg-light: #ffffff;
    --bg-dark: #0a0a0a;
    --text-main: #111;
    --text-muted: #666;
    --border-light: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    background-color: #fafafa;
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Modern Gradient Backgrounds */
.solution-hero {
    position: relative;
    padding: 8rem 10% 6rem;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    background: #fff;
    overflow: hidden;
}

.solution-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(255,255,255,0) 70%);
    top: -200px;
    right: -100px;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.solution-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    left: -100px;
    filter: blur(60px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 17, 17, 0.05);
    border: 1px solid rgba(17, 17, 17, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #000 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 16px;
    background: var(--accent);
    opacity: 0.4;
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.action-area {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0,0,0,0.4);
    background: #000;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card for Visual */
.interface-container {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.05),
        0 1px 3px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.5);
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.interface-container:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.1);
}

/* Modern Stats Section */
.stats-section {
    background: #fff;
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: background 0.3s ease;
}

.stat-item:hover {
    background: #f8f9fa;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Features Grid - Modern Bento Style */
.support-features {
    padding: 8rem 10%;
    background: #fafafa;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-box {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #f4f4f4;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: var(--accent);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Service Details - Clean & Spacious */
.service-details {
    padding: 6rem 10%;
    background: #fff;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row.reverse {
    direction: rtl;
}

.detail-row.reverse .detail-content {
    direction: ltr;
}

.detail-content h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--primary);
}

.detail-image {
    background: #f1f1f1;
    border-radius: var(--radius-xl);
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.detail-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    color: #444;
    padding: 16px;
    background: #fafafa;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.detail-list li:hover {
    background: #f0f0f0;
}

.detail-list li i {
    color: var(--primary);
    background: var(--accent);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Modern CTA */
.cta-section {
    padding: 8rem 10%;
    text-align: center;
    background: #111;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.1) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-box p {
    color: #888;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-box .btn-primary {
    background: var(--accent);
    color: #000;
    padding: 20px 48px;
    font-size: 1.2rem;
}

.cta-box .btn-primary:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

/* Chat & Ticket Styles within Glass Card */
.chat-interface {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bot .avatar { background: var(--primary); color: var(--accent); }
.user .avatar { background: #fff; color: var(--primary); }

.message-bubble {
    padding: 16px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 4px;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 85%;
}

.bot .message-bubble {
    background: #fff;
    color: #333;
    border: 1px solid rgba(0,0,0,0.05);
}

.user .message-bubble {
    background: var(--primary);
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 4px;
}

.ticket-card {
    position: absolute;
    top: -30px;
    right: -30px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 1024px) {
    .solution-hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        gap: 4rem;
        text-align: center;
    }

    .hero-title { font-size: 3rem; }
    
    .stats-section { grid-template-columns: 1fr 1fr; }
    
    .grid-3 { grid-template-columns: 1fr; }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .detail-row.reverse { direction: ltr; }
    
    .interface-container {
        max-width: 600px;
        margin: 0 auto;
    }
}