/* --- ACL THEME ENGINE --- */
:root {
    --acl-bg-1: #e0f7fa; 
    --acl-bg-2: #e8f5e9; 
    --acl-bg-3: #f3e5f5; 
    --acl-text-main: #2c3e50;
    --acl-text-muted: #546e7a;
    --acl-brand-primary: #42b983; /* Identity Green */
    --acl-brand-dark: #2c3e50;
    --acl-accent: #ff7e67; 
    --acl-glass-bg: rgba(255, 255, 255, 0.9);
    --acl-glass-border: rgba(255, 255, 255, 1);
    --acl-sidebar-bg: rgba(255, 255, 255, 0.85);
    --acl-shadow: 0 10px 40px -10px rgba(44, 62, 80, 0.1);
}

[data-theme="dark"] {
    --acl-bg-1: #0f172a; 
    --acl-bg-2: #1e293b; 
    --acl-bg-3: #112e27; 
    --acl-text-main: #ecf0f1;
    --acl-text-muted: #94a3b8;
    --acl-brand-primary: #4ade80; 
    --acl-brand-dark: #ffffff;
    --acl-accent: #ffab91;
    --acl-glass-bg: rgba(30, 41, 59, 0.7);
    --acl-glass-border: rgba(255, 255, 255, 0.05);
    --acl-sidebar-bg: rgba(15, 23, 42, 0.9);
    --acl-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

/* --- CORE RESET & SELECTION --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

::selection { 
    background: var(--acl-brand-primary); 
    color: white; 
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--acl-text-main);
    background: linear-gradient(-45deg, var(--acl-bg-1), var(--acl-bg-2), var(--acl-bg-3));
    background-size: 400% 400%;
    animation: aclGradientFlow 15s ease infinite; 
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

@keyframes aclGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- BACKGROUND CANVAS --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.acl-layout-shell { 
    position: relative; 
    z-index: 1; 
    display: flex; 
}

h1, h2, h3, h4 { 
    font-family: 'Nunito', sans-serif; 
    font-weight: 800; 
}

/* --- COOL EFFECT: HOLOGRAPHIC TEXT --- */
.holographic-text {
    background: linear-gradient(to right, var(--acl-brand-primary), #3b82f6, var(--acl-brand-primary));
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoShine 3s linear infinite;
}

@keyframes holoShine { 
    to { background-position: 200% center; } 
}

/* --- SCROLL PROGRESS BAR --- */
#progress-bar {
    position: fixed; 
    top: 0; 
    left: 0; 
    height: 4px; 
    background: var(--acl-brand-primary);
    width: 0%; 
    z-index: 9999; 
    transition: width 0.1s;
}

/* --- LAYOUT SYSTEM --- */
.acl-main-stage {
    margin-left: 260px; 
    padding: 60px 80px; 
    width: calc(100% - 260px);
}

/* --- SIDEBAR --- */
.acl-sidebar {
    width: 260px; 
    height: 100vh;
    position: fixed; 
    top: 0; 
    left: 0;
    background: var(--acl-sidebar-bg);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(128,128,128,0.1);
    padding: 40px 30px;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s;
}

.acl-brand-logo {
    font-family: 'Nunito', sans-serif; 
    font-weight: 900;
    font-size: 1.6rem; 
    color: var(--acl-text-main); 
    text-decoration: none;
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.acl-brand-logo i { 
    color: var(--acl-brand-primary); 
}

.acl-nav-group { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.acl-nav-link {
    display: flex; 
    align-items: center; 
    gap: 15px;
    padding: 12px 15px;
    color: var(--acl-text-muted); 
    text-decoration: none;
    border-radius: 16px; 
    font-weight: 700; 
    font-size: 0.95rem;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.acl-nav-link:hover, 
.acl-nav-link.active {
    background: white; 
    color: var(--acl-brand-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

[data-theme="dark"] .acl-nav-link:hover, 
[data-theme="dark"] .acl-nav-link.active {
    background: rgba(255,255,255,0.1);
}

.acl-theme-trigger {
    background: none; 
    border: 2px solid var(--acl-text-muted);
    color: var(--acl-text-muted); 
    width: 40px; 
    height: 40px;
    border-radius: 50%; 
    cursor: pointer; 
    transition: 0.3s;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.acl-theme-trigger:hover { 
    border-color: var(--acl-brand-primary); 
    color: var(--acl-brand-primary); 
    transform: rotate(15deg); 
}

/* --- SECTIONS --- */
.acl-section { 
    margin-bottom: 120px; 
    opacity: 0; 
    transform: translateY(30px); 
    transition: 0.8s ease-out; 
}

.acl-section.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.acl-heading-wrapper { 
    margin-bottom: 50px; 
}

.acl-heading-wrapper h2 { 
    font-size: 2.2rem; 
    margin-bottom: 10px; 
    position: relative; 
    display: inline-block; 
}

.acl-heading-wrapper h2::after {
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0;
    width: 40px; 
    height: 6px; 
    background: var(--acl-brand-primary); 
    border-radius: 10px;
}

/* --- HERO --- */
.acl-hero { 
    min-height: 85vh; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 40px;
    margin-bottom: 60px;
}

.acl-status-pill {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: rgba(66, 185, 131, 0.15); 
    color: var(--acl-brand-primary); 
    padding: 8px 16px; 
    border-radius: 30px;
    font-weight: 800; 
    font-size: 0.85rem; 
    margin-bottom: 25px; 
    letter-spacing: 0.5px; 
    text-transform: uppercase;
}

.acl-hero h1 { 
    font-size: 3.5rem; 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

.acl-hero p { 
    font-size: 1.1rem; 
    color: var(--acl-text-muted); 
    max-width: 550px; 
    line-height: 1.7; 
    margin-bottom: 30px; 
}

/* Stats */
.acl-quick-stats { 
    display: flex; 
    gap: 60px; 
    margin-top: 40px; 
}

.acl-stat-item h3 { 
    font-size: 3.5rem; 
    color: var(--acl-brand-primary); 
    margin-bottom: 0; 
    line-height: 1; 
    display: flex; 
    align-items: baseline; 
}

.acl-stat-item h3 span.symbol { 
    font-size: 2rem; 
    margin-left: 2px; 
    opacity: 0.8; 
}

.acl-stat-item p { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--acl-text-muted); 
    text-transform: uppercase; 
    margin-top: 5px; 
    letter-spacing: 1px; 
}

/* Hero Image & Badge */
.acl-hero-visual {
    flex: 1; 
    max-width: 400px; 
    position: relative; 
    display: flex; 
    justify-content: center;
}

.acl-blob-shape {
    width: 100%; 
    padding-bottom: 100%; 
    background: url('images/acl.png') no-repeat center center / cover;
    border-radius: 50%; 
    border: 5px solid white;
    box-shadow: var(--acl-shadow);
    animation: blobBounce 6s ease-in-out infinite alternate;
}

.acl-greeting-badge {
    position: absolute; 
    top: 20px; 
    left: -30px;
    background: white; 
    padding: 12px 25px; 
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-weight: 800; 
    color: var(--acl-brand-dark);
    font-family: 'Nunito', sans-serif;
    animation: floatGreeting 3s ease-in-out infinite alternate;
    z-index: 10;
}

[data-theme="dark"] .acl-greeting-badge { 
    background: var(--acl-brand-primary); 
    color: white; 
    border: 1px solid rgba(255,255,255,0.1); 
    box-shadow: 0 10px 30px rgba(66, 185, 131, 0.3);
}

@keyframes blobBounce {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes floatGreeting {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* --- TECH STACK --- */
.acl-tech-static {
    margin-bottom: 100px; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 25px 40px; 
    align-items: center;
}

.acl-tech-pill {
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    padding: 8px 12px; 
    background: transparent; 
    border: none;
    font-size: 1rem; 
    font-weight: 700; 
    color: var(--acl-text-muted);
    transition: 0.3s; 
    cursor: default;
}

.acl-tech-pill i { 
    font-size: 1.4rem; 
    color: var(--acl-text-muted); 
    transition: 0.3s; 
}

.acl-tech-pill:hover { 
    color: var(--acl-brand-primary); 
    transform: translateY(-3px); 
}

.acl-tech-pill:hover i { 
    color: var(--acl-brand-primary); 
}

/* --- PROCESS --- */
.acl-process-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 40px;
}

.acl-process-step { 
    position: relative; 
    text-align: center; 
    padding: 20px; 
}

.acl-step-icon {
    width: 70px; 
    height: 70px; 
    background: white; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 20px; 
    font-size: 1.5rem; 
    color: var(--acl-brand-primary);
    box-shadow: var(--acl-shadow); 
    border: 2px solid rgba(66, 185, 131, 0.1);
}

[data-theme="dark"] .acl-step-icon { 
    background: rgba(255,255,255,0.05); 
}

.acl-process-step:not(:last-child)::after {
    content: ''; 
    position: absolute; 
    top: 55px; 
    right: -50px;
    width: 100px; 
    height: 2px; 
    background: rgba(128,128,128,0.2); 
    z-index: -1;
}

/* --- CARDS & SHINE EFFECT --- */
.acl-grid-3 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.acl-glass-card {
    background: var(--acl-glass-bg); 
    border: 2px solid transparent;
    padding: 35px; 
    border-radius: 24px; 
    transition: transform 0.1s; 
    box-shadow: var(--acl-shadow); 
    display: flex; 
    flex-direction: column;
    transform-style: preserve-3d; 
    perspective: 1000px;
    position: relative; 
    overflow: hidden;
}

.acl-glass-card::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%;
    width: 50%; 
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg); 
    transition: 0.5s;
}

.acl-glass-card:hover::before { 
    left: 150%; 
}

.acl-card-icon {
    width: 60px; 
    height: 60px; 
    background: rgba(66, 185, 131, 0.1); 
    color: var(--acl-brand-primary);
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.5rem; 
    margin-bottom: 20px;
}

.acl-link-btn {
    margin-top: auto; 
    padding-top: 20px;
    background: none; 
    border: none; 
    color: var(--acl-brand-primary);
    font-weight: 700; 
    cursor: pointer; 
    text-align: left;
    display: flex; 
    align-items: center; 
    gap: 5px; 
    font-size: 0.9rem;
}

.acl-link-btn:hover { 
    text-decoration: underline; 
    gap: 8px; 
}

/* VIEW WORK BUTTON */
.acl-view-work-btn {
    margin-top: 20px; 
    padding: 10px 20px; 
    background: transparent;
    border: 2px solid var(--acl-brand-primary); 
    color: var(--acl-brand-primary);
    border-radius: 30px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s;
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    width: 100%;
}

.acl-view-work-btn:hover {
    background: var(--acl-brand-primary); 
    color: white;
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(66, 185, 131, 0.3);
}

/* --- TIMELINE --- */
.acl-timeline-track { 
    border-left: 3px solid rgba(66, 185, 131, 0.2); 
    padding-left: 40px; 
    margin-left: 10px; 
}

.acl-timeline-entry { 
    position: relative; 
    margin-bottom: 50px; 
}

.acl-timeline-marker {
    position: absolute; 
    left: -50px; 
    top: 5px;
    width: 18px; 
    height: 18px; 
    background: var(--acl-bg-1);
    border-radius: 50%; 
    border: 4px solid var(--acl-brand-primary);
}

.acl-date-tag { 
    font-size: 0.8rem; 
    font-weight: 800; 
    color: var(--acl-brand-primary); 
    letter-spacing: 0.5px; 
}

/* --- IMAGES --- */
.acl-img-container {
    height: 200px; 
    width: 100%; 
    overflow: hidden; 
    border-radius: 16px; 
    margin-bottom: 20px;
}

.acl-img-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}

.acl-glass-card:hover .acl-img-container img { 
    transform: scale(1.05); 
}

/* --- MASONRY LAYOUT FOR REVIEWS --- */
.acl-masonry-grid {
    column-count: 3; 
    column-gap: 30px;
}

.acl-masonry-item {
    display: inline-block; 
    width: 100%; 
    margin-bottom: 30px; 
    break-inside: avoid;
}

.acl-stars { 
    color: #fbbf24; 
    margin-bottom: 15px; 
    font-size: 0.9rem; 
}

.acl-tag {
    margin-top: 20px; 
    display: inline-block; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700; 
    color: var(--acl-brand-primary);
}

/* --- FOOTER --- */
.acl-footer {
    margin-top: 60px; 
    padding: 20px 0; 
    text-align: center; 
    color: var(--acl-text-muted); 
    font-size: 0.85rem;
}

.acl-footer p { 
    margin: 0; 
}

/* --- POPUPS --- */
.acl-modal-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(44, 62, 80, 0.4); 
    backdrop-filter: blur(8px);
    z-index: 2000; 
    display: none; 
    align-items: center; 
    justify-content: center;
}

.acl-modal-box {
    background: white; 
    padding: 50px; 
    border-radius: 30px; 
    text-align: center;
    max-width: 450px; 
    width: 90%; 
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: aclPopUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh; 
    overflow-y: auto;
}

[data-theme="dark"] .acl-modal-box { 
    background: #1e293b; 
    color: white; 
}

@keyframes aclPopUp { 
    from { transform: scale(0.8); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}

.acl-close-trigger {
    position: absolute; 
    top: 20px; 
    right: 25px; 
    cursor: pointer; 
    font-size: 1.2rem; 
    color: var(--acl-text-muted); 
    transition: 0.2s; 
    z-index: 10;
}

.acl-close-trigger:hover { 
    color: var(--acl-accent); 
    transform: rotate(90deg); 
}

/* --- CASE STUDY MODAL --- */
/* FIX 2: Changed 'overflow: hidden' to 'overflow-y: auto; overflow-x: hidden' to allow scrolling */
.acl-case-modal { 
    max-width: 800px !important; 
    padding: 0 !important; 
    overflow-y: auto; 
    overflow-x: hidden; 
    background: rgba(255, 255, 255, 0.95); 
    text-align: left; 
}

[data-theme="dark"] .acl-case-modal { 
    background: rgba(30, 41, 59, 0.95); 
}

.acl-case-header { 
    position: relative; 
    height: 250px; 
    overflow: hidden; 
}

.acl-case-header img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.acl-case-header::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, var(--acl-bg-1), transparent); 
}

[data-theme="dark"] .acl-case-header::after { 
    background: linear-gradient(to top, #1e293b, transparent); 
}

.acl-case-body { 
    padding: 40px; 
}

.acl-case-title { 
    font-size: 2rem; 
    color: var(--acl-text-main); 
    margin-bottom: 10px; 
}

.acl-case-meta { 
    display: inline-block; 
    background: rgba(66, 185, 131, 0.1); 
    color: var(--acl-brand-primary); 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 0.85rem; 
    font-weight: 700; 
    margin-bottom: 20px; 
}

.acl-case-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    margin-top: 20px; 
}

.acl-case-section h4 { 
    color: var(--acl-text-main); 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 1.2rem; 
}

.acl-case-section h4 i { 
    color: var(--acl-brand-primary); 
}

.acl-case-section ul { 
    padding-left: 20px; 
    color: var(--acl-text-muted); 
}

.acl-case-section ul li { 
    margin-bottom: 10px; 
    font-size: 0.95rem; 
    line-height: 1.6; 
}

/* --- FORM STYLES --- */
.acl-form-group { 
    text-align: left; 
    margin-bottom: 15px; 
}

.acl-form-label { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--acl-text-muted); 
    margin-bottom: 5px; 
    display: block; 
}

.acl-form-input, 
.acl-form-select, 
.acl-form-textarea {
    width: 100%; 
    padding: 12px 15px; 
    border-radius: 12px;
    border: 2px solid rgba(128,128,128,0.2);
    background: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; 
    color: var(--acl-text-main);
    transition: 0.3s;
}

[data-theme="dark"] .acl-form-input, 
[data-theme="dark"] .acl-form-select, 
[data-theme="dark"] .acl-form-textarea {
    background: rgba(0,0,0,0.2); 
    color: white; 
    border-color: rgba(255,255,255,0.1);
}

.acl-form-input:focus, 
.acl-form-select:focus, 
.acl-form-textarea:focus {
    outline: none; 
    border-color: var(--acl-brand-primary);
    box-shadow: 0 0 15px rgba(66, 185, 131, 0.2);
}

.acl-submit-btn {
    background: var(--acl-brand-primary); 
    color: white; 
    padding: 14px 35px; 
    border: none; 
    border-radius: 50px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s; 
    box-shadow: 0 10px 20px rgba(66, 185, 131, 0.3); 
    font-size: 0.9rem;
    width: 100%; 
    margin-top: 10px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
}

.acl-submit-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(66, 185, 131, 0.4); 
}

/* --- MOBILE MENU SPECIFICS --- */
.acl-burger-btn { 
    display: none; 
}

.acl-mobile-nav-overlay { 
    display: none; 
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .acl-hero { flex-direction: column-reverse; text-align: center; padding-top: 20px; }
    .acl-hero-visual { width: 280px; height: 280px; margin: 0 auto; }
    .acl-greeting-badge { top: 10px; left: -10px; font-size: 0.9rem; padding: 8px 15px; }
    .acl-quick-stats { justify-content: center; flex-wrap: wrap; gap: 30px; }
    .acl-tech-static { justify-content: center; gap: 20px; }
    .acl-process-grid { grid-template-columns: 1fr; gap: 50px; }
    .acl-process-step:not(:last-child)::after { 
        width: 2px; height: 50px; top: 100%; left: 50%; transform: translateX(-50%); 
    }
    .acl-masonry-grid { column-count: 1; }
}

@media (max-width: 768px) {
    .acl-sidebar { display: none; }
    .acl-main-stage { margin-left: 0; width: 100%; padding: 40px 20px 80px 20px; }

    .acl-burger-btn {
        display: flex; 
        align-items: center; 
        justify-content: center;
        position: fixed; 
        top: 20px; 
        right: 20px;
        width: 50px; 
        height: 50px;
        background: var(--acl-glass-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(128,128,128,0.2);
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 2001; 
        cursor: pointer; 
        color: var(--acl-brand-primary); 
        font-size: 1.4rem;
        transition: 0.3s;
    }
    
    .acl-burger-btn:hover { 
        transform: scale(1.1); 
    }

    /* FIX 3: Moved the close triggers to the top left so they avoid the burger menu */
    .acl-close-trigger, 
    .acl-case-modal .acl-close-trigger {
        right: auto !important;
        left: 20px !important;
    }

    .acl-mobile-nav-overlay {
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center;
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        background: var(--acl-bg-1);
        z-index: 2000;
        opacity: 0; 
        pointer-events: none; 
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        clip-path: circle(0% at 100% 0%); 
    }
    
    .acl-mobile-nav-overlay.active {
        opacity: 1; 
        pointer-events: all;
        clip-path: circle(150% at 100% 0%); 
    }

    .acl-mobile-links { 
        display: flex; 
        flex-direction: column; 
        gap: 25px; 
        text-align: center; 
    }
    
    .acl-mobile-link {
        font-family: 'Nunito', sans-serif;
        font-size: 1.8rem; 
        font-weight: 800;
        color: var(--acl-text-main); 
        text-decoration: none;
        transition: 0.3s;
    }
    
    .acl-mobile-link:hover { 
        color: var(--acl-brand-primary); 
        transform: scale(1.1); 
    }
    
    .acl-mobile-theme-wrapper { 
        margin-top: 40px; 
    }
    
    .acl-mobile-theme-btn {
        padding: 10px 20px; 
        border: 2px solid var(--acl-text-muted);
        border-radius: 30px; 
        background: transparent; 
        color: var(--acl-text-main);
        font-weight: 700; 
        cursor: pointer; 
        display: flex; 
        align-items: center; 
        gap: 10px;
    }

    .acl-hero { text-align: center; }
    .acl-heading-wrapper { text-align: center; }
    .acl-heading-wrapper h2::after { left: 50%; transform: translateX(-50%); }
    .acl-hero h1 { font-size: 2.2rem; }
    .acl-hero p { margin: 0 auto 30px auto; font-size: 1rem; }
    .acl-section { margin-bottom: 60px; }
    .acl-hero { min-height: auto; padding-top: 40px; margin-bottom: 40px; }
    .acl-hero-visual { width: 200px; height: 200px; }
    .acl-tech-static { margin-bottom: 50px; }
    .acl-heading-wrapper { margin-bottom: 30px; }
    .acl-glass-card { padding: 25px; transform: none !important; }
    .acl-case-grid { grid-template-columns: 1fr; gap: 20px; }
    .acl-case-header { height: 150px; }
    .acl-case-body { padding: 25px; }
}