/* ===== CSS Variables ===== */
:root {
    --primary: #4f1662;
    --primary-light: #6d1f88;
    --primary-dark: #3a1049;
    --primary-rgb: 79, 22, 98;
    
    --secondary: #ff6b35;
    --secondary-light: #ff8c5a;
    --secondary-rgb: 255, 107, 53;
    
    --accent: #00c9b7;
    --accent-light: #33d4c5;
    --accent-rgb: 0, 201, 183;
    
    --dark: #0a0a14;
    --dark-light: #1a1a2e;
    --dark-rgb: 10, 10, 20;
    
    --gray-dark: #3a3a4e;
    --gray: #6b6b84;
    --gray-light: #a0a0b5;
    --gray-lighter: #e2e2ea;
    --gray-lightest: #f5f5fa;
    
    --light: #fafafc;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    
    --success: #00b894;
    --warning: #ff9f43;
    --error: #ff6b6b;
    
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    --gradient-light: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    --gradient-hero: linear-gradient(135deg, rgba(79, 22, 98, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.showcase-hero-image{
    display:none;
}
@media (max-width: 768px) {
    * {
        text-align: left!important;
    }
    .hero-cta {
        align-items: start !important;
    }
    .system-number, .content-icon, .marketing-icon{
        margin: 0 !important;
        margin-bottom: 1.5rem !important;
    }
    h2::after{
        left: 9%!important  ;
    }
    .footer-legal-links{
        flex-direction: column!important;
        align-items: start!important;
        gap: 1rem!important;
    }
    .footer-content{
        flex-direction: column!important;
        align-items: start!important;
        gap: 1rem!important;
    }
    .showcase-placeholder{
        text-align: left!important;
        align-items: start!important;
    }
    .showcase-hero-image{
        display:flex!important;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    position: relative;
    padding-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
/* ===== Logo Styles ===== */
.logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

/* Für bessere Skalierung auf verschiedenen Geräten */
.logo-image {
    max-height: 80px;
    max-width: 200px; /* Stellt sicher, dass das Logo nicht zu breit wird */
    object-fit: contain;
}

/* Mobile Logo Anpassung */
@media (max-width: 768px) {
    .logo-image {
        height: 70px;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 70px;
        max-width: 110px;
    }
}

/* Footer Logo (wenn du es auch im Footer verwendest) */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-image {
    height: 35px;
}
.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
}

/* ===== Layout & Containers ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--dark-rgb), 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-accent {
    color: var(--primary);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:not(.btn-primary):hover {
    color: var(--primary);
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-link.btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.desktop-nav a:not(.nav-cta):hover {
    color: var(--primary);
}

.desktop-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.desktop-nav a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-lighter);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-logo {
    flex: 1;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-lightest);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.95);
}

.mobile-menu-nav {
    flex: 1;
    padding: 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-lighter);
    background: var(--gray-lightest);
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.mobile-contact-item:hover {
    color: var(--primary);
    background: rgba(79, 22, 98, 0.05);
}

.mobile-contact-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-link:hover::before,
.mobile-menu-link:active::before {
    transform: scaleY(1);
}

.mobile-menu-link:hover {
    background: rgba(79, 22, 98, 0.05);
    color: var(--primary);
    padding-left: 1.5rem;
}

.mobile-menu-link:active {
    transform: scale(0.98);
}

.mobile-menu-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
    transition: var(--transition);
}

.mobile-menu-link:hover i {
    transform: scale(1.15);
}

.mobile-menu-link span {
    flex: 1;
}

.mobile-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 1rem 1.25rem !important;
    border-radius: var(--radius-full);
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(79, 22, 98, 0.25);
    border: none;
    justify-content: center;
}

.mobile-cta::before {
    display: none;
}

.mobile-cta i {
    color: var(--white) !important;
}

.mobile-cta:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 22, 98, 0.35);
    padding-left: 1.25rem !important;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-lighter);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ===== Hero Section ===== */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #fafafc 0%, #f0f0f8 50%, #e8e6f2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 22, 98, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(79, 22, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 22, 98, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(79, 22, 98, 0.1);
    border: 1px solid rgba(79, 22, 98, 0.08);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4);
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 184, 148, 0); }
}

.badge-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
    color: var(--dark);
}

.hero-title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .hero-subtitle {
        align-items: start !important;
    }
}

.btn-hero {
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

.btn-hero.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.btn-hero.btn-primary .btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-hero.btn-primary .btn-arrow {
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-hero.btn-primary:hover .btn-content {
    transform: translateX(-10px);
}

.btn-hero.btn-primary:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

.btn-hero.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 2px solid var(--gray-lighter);
}

.btn-hero.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(79, 22, 98, 0.02);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 0.875rem;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-lighter);
}

/* Hero Visual / Stats Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stats-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(79, 22, 98, 0.15);
    border: 1px solid rgba(79, 22, 98, 0.08);
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}

.stats-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stats-card-badge {
    background: rgba(0, 184, 148, 0.1);
    color: var(--success);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.stats-card-pulse {
    width: 12px;
    height: 12px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}

.stats-card-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--success);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.stats-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.stat-mini {
    background: var(--gray-lightest);
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-mini:hover {
    background: rgba(79, 22, 98, 0.05);
    transform: translateY(-2px);
}

.stat-mini-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-mini-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-mini-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.stat-mini-trend.positive {
    background: rgba(0, 184, 148, 0.1);
    color: var(--success);
}

.stat-mini-trend i {
    font-size: 0.6rem;
}

.stats-card-chart {
    background: var(--gray-lightest);
    border-radius: var(--radius-md);
    padding: 1rem 1rem 0.75rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    gap: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: rgba(79, 22, 98, 0.2);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    transition: all 0.3s ease;
}

.chart-bar.active {
    background: var(--gradient-primary);
}

.chart-bar:hover {
    background: var(--gradient-primary);
    transform: scaleY(1.05);
    transform-origin: bottom;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(79, 22, 98, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    z-index: 3;
    border: 1px solid rgba(79, 22, 98, 0.08);
}

.hero-floating-card i {
    font-size: 1.25rem;
    color: var(--primary);
}

.hero-floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation: float-card 4s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    left: -30px;
    animation: float-card 4s ease-in-out infinite 1s;
}

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

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 4rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-divider {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .badge-tag {
        order: 3;
        margin-top: 0.25rem;
    }
}

/* ===== Trusted Section ===== */
.trusted {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-lighter);
    border-bottom: 1px solid var(--gray-lighter);
}

.trusted-label {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

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

.logo-item {
    background: var(--gray-lightest);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===== Problem Section ===== */
.problem {
    background: var(--white);
    padding: 5rem 0;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 2rem;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.problem-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.problem-icon-ring {
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
}

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

.problem h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.35;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.problem-title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-text {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--gray);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .problem-icon {
        width: 60px;
        height: 60px;
    }
    
    .problem-icon i {
        font-size: 1.5rem;
    }
}

/* ===== Section Illustrations ===== */
.section-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.systems-image-container,
.marketing-image-container,
.services-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
}

.systems-image-container .section-illustration,
.marketing-image-container .section-illustration,
.services-image-container .section-illustration {
    filter: drop-shadow(0 20px 60px rgba(79, 22, 98, 0.15));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.systems-image-container:hover .section-illustration,
.marketing-image-container:hover .section-illustration,
.services-image-container:hover .section-illustration {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 30px 80px rgba(79, 22, 98, 0.25));
}

/* ===== Systems Section ===== */
.systems {
    background: var(--gray-lightest);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.system-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-lighter);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 22, 98, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.system-card:hover::before {
    left: 100%;
}

.system-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 22, 98, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.system-card:hover::after {
    opacity: 1;
}

.system-card.aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.system-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(79, 22, 98, 0.2);
    border-color: var(--primary);
}

.system-card h3 {
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.system-card:hover h3 {
    color: var(--primary);
}

.system-card p {
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.system-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(79, 22, 98, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

.system-card.aos-animate .system-number {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.system-card:hover .system-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(79, 22, 98, 0.3);
}

@keyframes numberPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Staggered animation delays for system cards */
.system-card:nth-child(1) {
    animation-delay: 0s;
}

.system-card:nth-child(2) {
    animation-delay: 0.1s;
}

.system-card:nth-child(3) {
    animation-delay: 0.2s;
}

.system-card:nth-child(4) {
    animation-delay: 0.3s;
}

.system-card:nth-child(5) {
    animation-delay: 0.4s;
}

.system-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

/* ===== Services Section ===== */
.services {
    background: var(--white);
}

.content-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.content-card {
    background: var(--gray-lightest);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    border: 1px solid transparent;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 22, 98, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.content-card:hover::before {
    left: 100%;
}

.content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 22, 98, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.content-card:hover::after {
    opacity: 1;
}

.content-card.aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.content-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(79, 22, 98, 0.15);
    border-color: var(--primary);
    background: var(--white);
}

.content-card h3 {
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.content-card:hover h3 {
    color: var(--primary);
}

.content-card p {
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.content-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    box-shadow: 0 10px 20px rgba(79, 22, 98, 0.15);
}

.content-card.aos-animate .content-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.content-card:hover .content-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(79, 22, 98, 0.3);
    background: var(--gradient-secondary);
}

.content-card:hover .content-icon i {
    transform: scale(1.1);
}

.content-icon i {
    transition: transform 0.3s ease;
}

@keyframes iconPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Staggered animation delays for content cards */
.content-card:nth-child(1) {
    animation-delay: 0s;
}

.content-card:nth-child(2) {
    animation-delay: 0.15s;
}

.content-card:nth-child(3) {
    animation-delay: 0.3s;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.service-header {
    padding: 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
}

.service-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-tag {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-volume {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
    margin-top: 1rem;
}

.service-body {
    padding: 2.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--success);
    font-size: 0.875rem;
}

.service-features li.excluded {
    color: var(--gray-light);
    text-decoration: line-through;
}

.service-features li.excluded i {
    color: var(--gray-light);
}

.services-note {
    text-align: center;
    padding: 2rem;
    background: rgba(var(--accent-rgb), 0.05);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Comparison Section ===== */
.comparison {
    background: var(--gray-lightest);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comparison-card.lotux {
    border-top: 4px solid var(--primary);
}

.comparison-card.others {
    border-top: 4px solid var(--gray-lighter);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lotux .comparison-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.others .comparison-icon {
    background: var(--gray-lighter);
    color: var(--gray);
}

.comparison-features {
    list-style: none;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.comparison-features li:last-child {
    border-bottom: none;
}

.lotux .comparison-features li i {
    color: var(--success);
}

.others .comparison-features li i {
    color: var(--error);
}

/* ===== Professional Marketing Section ===== */
.marketing-professional {
    background: var(--gray-lightest);
    padding: 6rem 0;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.marketing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-lighter);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.marketing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 22, 98, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.marketing-card:hover::before {
    left: 100%;
}

.marketing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 22, 98, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.marketing-card:hover::after {
    opacity: 1;
}

.marketing-card.aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.marketing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(79, 22, 98, 0.2);
    border-color: var(--primary);
}

.marketing-card h3 {
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.marketing-card:hover h3 {
    color: var(--primary);
}

.marketing-card p {
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.marketing-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    box-shadow: 0 10px 20px rgba(79, 22, 98, 0.15);
}

.marketing-card.aos-animate .marketing-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.marketing-card:hover .marketing-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(79, 22, 98, 0.3);
    background: var(--gradient-secondary);
}

.marketing-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.marketing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.marketing-card:hover .marketing-features li {
    color: var(--dark);
}

.marketing-features li i {
    color: var(--success);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.marketing-card:hover .marketing-features li i {
    transform: scale(1.2);
}

.marketing-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid var(--gray-lighter);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 22, 98, 0.15);
    border-color: var(--primary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(79, 22, 98, 0.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: var(--secondary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--dark);
}

/* ===== Showcase Section ===== */
.showcase {
    background: var(--white);
}

.showcase-hero-image {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.showcase-image-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(79, 22, 98, 0.12);
    border: 1px solid var(--gray-lighter);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.showcase-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image-card:hover::before {
    transform: scaleX(1);
}

.showcase-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(79, 22, 98, 0.2);
}

.image-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(79, 22, 98, 0.25);
}

.image-card-badge i {
    font-size: 1rem;
}

.showcase-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image-card:hover .showcase-main-image {
    transform: scale(1.02);
}

.image-card-overlay {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-lighter);
}

.overlay-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.overlay-stat i {
    color: var(--primary);
    font-size: 1.1rem;
}

.overlay-stat:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.overlay-stat:hover i {
    transform: scale(1.2);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.showcase-item {
    background: var(--gray-lightest);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    border: 2px solid transparent;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 22, 98, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.showcase-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 22, 98, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.showcase-item.aos-animate {
    opacity: 1;
    transform: scale(1);
}

.showcase-item:hover {
    transform: translateY(-15px) scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 70px rgba(79, 22, 98, 0.25);
    border-color: var(--primary);
    background: var(--white);
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover::after {
    opacity: 1;
}

.showcase-placeholder {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.showcase-placeholder i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    display: inline-block;
}

.showcase-item.aos-animate .showcase-placeholder i {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: iconZoom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.showcase-item:hover .showcase-placeholder i {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary);
    filter: drop-shadow(0 10px 20px rgba(255, 107, 53, 0.3));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.2) rotate(10deg);
    }
    50% {
        transform: scale(1.25) rotate(12deg);
    }
}

.showcase-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
}

.showcase-item.aos-animate .showcase-placeholder h4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.showcase-item:hover .showcase-placeholder h4 {
    color: var(--primary);
    transform: translateY(-5px);
}

.showcase-placeholder p {
    font-size: 1rem;
    color: var(--gray);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
}

.showcase-item.aos-animate .showcase-placeholder p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.showcase-item:hover .showcase-placeholder p {
    color: var(--dark);
}

@keyframes iconZoom {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.3) rotate(15deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Custom AOS Animations for Showcase */
[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos="flip-left"] {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="flip-left"].aos-animate {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}

.screenshots-note {
    text-align: center;
    padding: 2rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Booking Section ===== */
.booking {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.booking-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.booking-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.booking-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: orbFloat 18s ease-in-out infinite;
}

.booking-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 201, 183, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-content {
    color: var(--white);
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-badge i {
    color: var(--accent);
}

.booking h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.booking h2::after {
    display: none;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.booking-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.feature-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.booking-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.booking-guarantee i {
    color: var(--success);
    font-size: 1rem;
}

/* Calendar Card */
.booking-calendar {
    position: relative;
}

.calendar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--gray-lightest);
    border-bottom: 1px solid var(--gray-lighter);
}

.calendar-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.calendly-container {
    height: 700px;
}

.calendly-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Booking Responsive */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-content {
        text-align: center;
    }
    
    .booking-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .booking-guarantee {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .booking {
        padding: 5rem 0;
    }
    
    .booking h2 {
        font-size: 1.75rem;
    }
    
    .booking-description {
        font-size: 1rem;
    }
    
    .calendly-container {
        height: 600px;
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .calendly-container {
        height: 550px;
    }
    
    .booking-feature {
        padding: 0.875rem 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 22, 98, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(79, 22, 98, 0.15);
    transform: translateY(0);
}

.faq-question {
    padding: 1.5rem;
    background: var(--gray-lightest);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: rgba(79, 22, 98, 0.05);
    padding-left: 1.75rem;
}

.faq-item.active .faq-question {
    background: rgba(79, 22, 98, 0.08);
    color: var(--primary);
}

.faq-question span:first-child {
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span:first-child {
    color: var(--primary);
}

.faq-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(79, 22, 98, 0.1);
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon::before {
    content: '+';
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::before {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover .faq-icon {
    background: rgba(79, 22, 98, 0.2);
    transform: scale(1.1);
}

.faq-item.active .faq-question:hover .faq-icon {
    transform: rotate(180deg) scale(1.1);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--gray);
    transition: color 0.3s ease;
}

.faq-item.active .faq-answer p {
    color: var(--dark);
    animation: fadeInText 0.5s ease-out 0.2s both;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior for FAQ opening */
.faq-item.active {
    scroll-margin-top: 20px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-image {
    height: 50px;
    max-width: 180px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.footer-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 0.875rem;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-legal-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketing-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        order: -1;
        grid-column: span 2;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-legal-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-illustration {
        max-width: 350px;
    }
    
    .systems-image-container,
    .marketing-image-container,
    .services-image-container {
        margin-bottom: 3rem;
        padding: 1rem;
    }
    
    /* Hero responsive handled in hero section */
    
    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .system-card {
        padding: 2rem;
    }
    
    .system-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .content-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .marketing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .marketing-card {
        padding: 2rem;
    }
    
    .marketing-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .marketing-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        grid-column: span 1;
        transform: none;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-item {
        height: 280px;
    }
    
    .showcase-item:hover {
        transform: translateY(-10px) scale(1.02) rotateY(0deg);
    }
    
    .showcase-placeholder i {
        font-size: 3rem;
    }
    
    .showcase-hero-image {
        margin-bottom: 3rem;
    }
    
    .showcase-image-card {
        padding: 1.5rem;
    }
    
    .image-card-overlay {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketing-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .section-illustration {
        max-width: 280px;
    }
    
    .systems-image-container,
    .marketing-image-container,
    .services-image-container {
        margin-bottom: 2rem;
        padding: 0.5rem;
    }
    
    .showcase-hero-image {
        margin-bottom: 2rem;
    }
    
    .showcase-image-card {
        padding: 1rem;
    }
    
    .image-card-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .overlay-stat {
        font-size: 0.85rem;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-lightest);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ===== Animation Classes ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Custom AOS Animations */
[data-aos="fade-up-right"] {
    opacity: 0;
    transform: translateY(50px) translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up-right"].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

[data-aos="fade-up-left"] {
    opacity: 0;
    transform: translateY(50px) translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up-left"].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
