/* Service Page Specific Styles - NO TYPOGRAPHY OVERRIDES */
/* Typography mengikuti custom.css global untuk konsistensi */

/* Color Palette Variables */
:root {
    --primary: #0D9489;
    --primary-light: #14B8A6;
    --primary-dark: #0F766E;
    --primary-soft: #CCF1EE;
    --secondary: #0E7490;
    --accent: #F59E0B;
    --success: #16A34A;
    --warning: #F59E0B;
    --danger: #DC2626;
    --info: #0284C7;
    --bg-light: #F8FAFC;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --text-dark: #0F172A;
    --text-muted: #64748B;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #F0FDFA 0%, #E0F2F1 50%, #B2DFDB 100%);
    padding: 70px 0 80px !important;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    overflow: hidden;
}

/* Floating Tech Icons */
.tech-icons-float {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.tech-icon {
    position: absolute;
    opacity: 0.15;
    transition: all 0.3s ease;
    filter: grayscale(0.3);
}

.tech-icon:hover {
    opacity: 0.8;
    filter: grayscale(0);
    transform: scale(1.2);
}

.tech-1 { top: 10%; left: 5%; animation: float-tech 8s ease-in-out infinite; }
.tech-2 { top: 20%; right: 8%; animation: float-tech 10s ease-in-out infinite reverse; animation-delay: 1s; }
.tech-3 { top: 45%; left: 3%; animation: float-tech 12s ease-in-out infinite; animation-delay: 2s; }
.tech-4 { top: 60%; right: 5%; animation: float-tech 9s ease-in-out infinite reverse; animation-delay: 0.5s; }
.tech-5 { top: 75%; left: 8%; animation: float-tech 11s ease-in-out infinite; animation-delay: 1.5s; }
.tech-6 { top: 15%; left: 50%; animation: float-tech 13s ease-in-out infinite reverse; animation-delay: 2.5s; }
.tech-7 { top: 50%; right: 15%; animation: float-tech 10s ease-in-out infinite; animation-delay: 3s; }
.tech-8 { top: 80%; right: 20%; animation: float-tech 14s ease-in-out infinite reverse; animation-delay: 1s; }
.tech-9 { top: 35%; left: 15%; animation: float-tech 9s ease-in-out infinite; animation-delay: 2s; }
.tech-10 { top: 65%; left: 45%; animation: float-tech 11s ease-in-out infinite reverse; animation-delay: 0.5s; }

@keyframes float-tech {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 148, 137, 0.2);
}

.hero-title {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.visual-card {
    position: relative;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    color: var(--primary);
}

.element-1 {
    top: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    top: 50%;
    right: -5%;
    animation: float 8s ease-in-out infinite 2s;
}

.element-3 {
    bottom: 10%;
    left: 5%;
    animation: float 7s ease-in-out infinite 4s;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.browser-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 14px;
}

.browser-content {
    padding: 32px;
    min-height: 300px;
    background: #fafafa;
}

.content-placeholder {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.placeholder-line {
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 6px;
    animation: shimmer 2s infinite;
}

.placeholder-line.short {
    width: 60%;
}

.placeholder-box {
    height: 150px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 12px;
    margin-top: 16px;
    animation: shimmer 2s infinite;
}

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

/* Code Editor Animation */
.code-editor-animation {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.editor-window {
    background: #1E293B;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.editor-header {
    background: #0F172A;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #334155;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control-btn.close {
    background: #FF5F57;
}

.control-btn.minimize {
    background: #FFBD2E;
}

.control-btn.maximize {
    background: #28CA42;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
    font-size: 13px;
    font-family: 'Courier New', monospace;
}

.editor-body {
    display: flex;
    background: #0F172A;
    padding: 16px 0;
    min-height: 350px;
}

.line-numbers {
    padding: 0 16px;
    color: #475569;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    text-align: right;
    user-select: none;
    border-right: 1px solid #1E293B;
}

.code-content {
    flex: 1;
    padding: 0 16px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
}

.code-line {
    white-space: nowrap;
    opacity: 0;
    animation: fadeInLine 0.3s ease-out forwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }
.code-line:nth-child(8) { animation-delay: 0.8s; }
.code-line:nth-child(9) { animation-delay: 0.9s; }
.code-line:nth-child(10) { animation-delay: 1s; }
.code-line:nth-child(11) { animation-delay: 1.1s; }
.code-line:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.indent-1 { padding-left: 20px; }
.indent-2 { padding-left: 40px; }
.indent-3 { padding-left: 60px; }

/* Code Syntax Highlighting */
.keyword {
    color: #C792EA;
    font-weight: 600;
}

.function-name {
    color: #82AAFF;
}

.variable {
    color: #FFCB6B;
}

.param {
    color: #F78C6C;
}

.string {
    color: #C3E88D;
}

.number {
    color: #F78C6C;
}

.comment {
    color: #546E7A;
    font-style: italic;
}

.bracket {
    color: #89DDFF;
}

.operator {
    color: #89DDFF;
}

.punctuation {
    color: #89DDFF;
}

.property {
    color: #82AAFF;
}

/* Blinking Cursor */
.cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #14B8A6;
    margin-left: 2px;
    animation: blink 0.8s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.editor-footer {
    background: #0D9489;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Floating Symbols */
.floating-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.symbol {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 48px;
    font-weight: bold;
    opacity: 0.15;
    animation: floatSymbol 6s ease-in-out infinite;
}

.symbol-1 {
    top: 10%;
    left: -5%;
    color: #14B8A6;
    animation-delay: 0s;
}

.symbol-2 {
    top: 20%;
    right: -5%;
    color: #8B5CF6;
    animation-delay: 1s;
}

.symbol-3 {
    bottom: 20%;
    left: -3%;
    color: #F59E0B;
    animation-delay: 2s;
}

.symbol-4 {
    bottom: 10%;
    right: -3%;
    color: #14B8A6;
    animation-delay: 3s;
}

@keyframes floatSymbol {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Tech Stack Float */
.tech-stack-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: floatTech 8s ease-in-out infinite;
}

.tech-item-1 {
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.tech-item-2 {
    top: 50%;
    left: -10%;
    animation-delay: 2s;
}

.tech-item-3 {
    top: 30%;
    right: -8%;
    animation-delay: 1s;
}

.tech-item-4 {
    bottom: 20%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes floatTech {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 1;
    }
}

/* Responsive Code Editor */
@media (max-width: 768px) {
    .code-editor-animation {
        max-width: 100%;
    }
    
    .editor-body {
        min-height: 280px;
    }
    
    .code-content {
        font-size: 11px;
    }
    
    .line-numbers {
        font-size: 11px;
    }
    
    .symbol {
        font-size: 32px;
    }
    
    .tech-item {
        width: 45px;
        height: 45px;
    }
    
    .tech-item .iconify {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 576px) {
    .editor-body {
        min-height: 240px;
    }
    
    .code-content {
        font-size: 10px;
        padding: 0 12px;
    }
    
    .line-numbers {
        font-size: 10px;
        padding: 0 12px;
    }
    
    .indent-1 { padding-left: 15px; }
    .indent-2 { padding-left: 30px; }
    .indent-3 { padding-left: 45px; }
    
    .floating-symbols,
    .tech-stack-float {
        display: none;
    }
}



/* Pain Points Section */
.service-pain-points {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Particles */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.service-pain-points .container {
    position: relative;
    z-index: 1;
}

/* Floating Shapes */
.shape {
    position: absolute;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.shape-circle {
    border-radius: 50%;
    background: linear-gradient(135deg, #0D9489, #14B8A6);
}

.shape-square {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    transform: rotate(45deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #8B5CF6;
    background: transparent;
}

.shape-hexagon {
    width: 60px;
    height: 34.64px;
    background: linear-gradient(135deg, #EC4899, #F472B6);
    position: relative;
}

.shape-hexagon:before,
.shape-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.shape-hexagon:before {
    bottom: 100%;
    border-bottom: 17.32px solid #EC4899;
}

.shape-hexagon:after {
    top: 100%;
    border-top: 17.32px solid #F472B6;
}

/* Shape Positions & Sizes */
.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 8%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    top: 25%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 28s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 24s;
}

.shape-6 {
    top: 40%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 26s;
}

.shape-7 {
    bottom: 20%;
    right: 25%;
    animation-delay: 7s;
    animation-duration: 23s;
}

.shape-8 {
    top: 15%;
    right: 12%;
    animation-delay: 1s;
    animation-duration: 27s;
}

/* Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(13, 148, 137, 0.1));
    border: 2px solid rgba(13, 148, 137, 0.2);
    animation: bubble-float 15s infinite ease-in-out;
    opacity: 0.6;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.bubble-4 {
    width: 120px;
    height: 120px;
    top: 35%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 19s;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    bottom: 40%;
    left: 8%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.bubble-6 {
    width: 110px;
    height: 110px;
    top: 70%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 21s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(15px, 20px) rotate(270deg);
    }
}

@keyframes bubble-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(25px, 25px) scale(1.05);
        opacity: 0.5;
    }
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pain-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.pain-card:nth-child(1) { animation-delay: 0.1s; }
.pain-card:nth-child(2) { animation-delay: 0.2s; }
.pain-card:nth-child(3) { animation-delay: 0.3s; }

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.pain-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
    margin-bottom: 20px;
}

.pain-title {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.pain-description {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.pain-solution {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 148, 137, 0.25);
}

/* Decorative Elements */
.solution-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.solution-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.solution-circle-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -40px;
    animation-delay: 0s;
}

.solution-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -30px;
    animation-delay: 1.5s;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Styling - Match Landing Page */
.service-faq-item button span {
    font-size: 16px !important;
    font-weight: 600;
}

.service-faq-answer p {
    font-size: 14px !important;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .features-grid,
    .types-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 50px 0 60px !important;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .floating-element {
        width: 60px;
        height: 60px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* FAQ Mobile Styling - Match Landing Page */
    .service-faq-item button span {
        font-size: 14px !important;
    }

    .service-faq-answer p {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 50px 0 60px;
    }

    .hero-stats {
        gap: 0.25rem;
    }
}


/* Description Section */
.service-description {
    padding: 80px 0;
    background: white;
}

/* Description Header */
.description-header {
    margin-bottom: 30px;
}

.description-header .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
    margin-top: 12px;
}

.description-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Description Text Typography */
.description-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .description-header .section-title {
        font-size: 26px;
    }
    
    .description-subtitle {
        font-size: 15px;
    }
    
    .description-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .description-header .section-title {
        font-size: 24px;
    }
    
    .description-subtitle {
        font-size: 14px;
    }
    
    .description-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Description Visual */
.description-visual {
    position: relative;
}

/* Feature Mini Cards Overlay */
.feature-cards-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-mini-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: floatCard 4s ease-in-out infinite;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-mini-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.feature-mini-card.card-1 {
    top: 15%;
    right: 2%;
    animation-delay: 0s;
}

.feature-mini-card.card-2 {
    top: 50%;
    right: -2%;
    animation-delay: 1s;
}

.feature-mini-card.card-3 {
    bottom: 15%;
    right: 2%;
    animation-delay: 2s;
}

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

.mini-card-icon {
    width: 40px;
    height: 40px;
    background: #F8FAFC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mini-card-content {
    flex: 1;
}

.mini-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.mini-card-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Responsive Feature Cards */
@media (max-width: 992px) {
    .feature-mini-card {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .mini-card-icon {
        width: 36px;
        height: 36px;
    }
    
    .mini-card-icon .iconify {
        width: 20px !important;
        height: 20px !important;
    }
    
    .mini-card-title {
        font-size: 13px;
    }
    
    .mini-card-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .feature-cards-overlay {
        display: none;
    }
}

.stats-grid {
    background: linear-gradient(135deg, var(--primary-soft) 0%, #E0F2F1 100%);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

/* Tools Infinite Scroll Container */
.tools-scroll-container {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tools-scroll-row {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.tools-scroll-track {
    display: flex;
    gap: 24px;
    width: fit-content;
}

/* Scroll Left Animation */
.scroll-left .tools-scroll-track {
    animation: scrollLeft 30s linear infinite;
}

/* Scroll Right Animation */
.scroll-right .tools-scroll-track {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.tools-scroll-row:hover .tools-scroll-track {
    animation-play-state: paused;
}

/* Tool Card */
.tool-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    min-width: 150px;
    flex-shrink: 0;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 148, 137, 0.12);
    border-color: var(--primary);
}

.tool-card .iconify {
    margin-bottom: 12px;
}

.tool-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* IT Illustration SVG Styling */
.it-illustration {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(13, 148, 137, 0.15));
}

.it-illustration .float-icon {
    animation: float-smooth 3s ease-in-out infinite;
}

/* About Illustration SVG Styling */
.about-illustration {
    width: 100%;
    height: auto;
    max-width: 480px;
    margin: 0;
    margin-left: -40px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(13, 148, 137, 0.1));
}

.description-visual {
    position: relative;
    margin-right: 30px;
    margin-left: -15px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .stat-box .stat-label {
        font-size: 12px;
    }

    .tool-card {
        padding: 16px;
        min-width: 120px;
    }

    .tool-name {
        font-size: 12px;
    }
    
    .scroll-left .tools-scroll-track {
        animation: scrollLeft 20s linear infinite;
    }
    
    .scroll-right .tools-scroll-track {
        animation: scrollRight 20s linear infinite;
    }
    
    .it-illustration {
        max-width: 400px;
    }
    
    .about-illustration {
        max-width: 380px;
        margin-left: 0;
    }
    
    .description-visual {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .it-illustration {
        max-width: 320px;
    }
    
    .about-illustration {
        max-width: 100%;
        margin-left: 0;
    }
}
