/* Creative & Modern School Design - Unique & Premium */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --accent: #f59e0b;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --bg-gradient-1: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #fef3c7 100%);
    --bg-gradient-2: linear-gradient(135deg, #fef3c7 0%, #fee2e2 50%, #e0e7ff 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.20);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

/* Header Creative */
.header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1) !important;
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease !important;
}

.header .logo .sitename {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.02em;
}

.header .navmenu ul li a {
    position: relative;
    font-weight: 600;
    color: #374151 !important;
    transition: all 0.3s ease;
}

.header .navmenu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.header .navmenu ul li a:hover::after,
.header .navmenu ul li a.active::after {
    width: 100%;
}

.header .navmenu ul li a:hover,
.header .navmenu ul li a.active {
    color: var(--primary) !important;
}

.btn-getstarted {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue)) !important;
    color: white !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-getstarted:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4) !important;
}

/* Hero Creative */
.hero-creative {
    background: var(--bg-gradient-1) !important;
    padding: 6rem 0 8rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-creative::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.badge-creative {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(245, 158, 11, 0.15)) !important;
    border: 2px solid rgba(16, 185, 129, 0.3) !important;
    color: var(--primary-dark) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 1.5rem !important;
    margin-top: 2.5rem !important;
    animation: slideInDown 0.6s ease-out !important;
}

.badge-dot-creative {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    animation: pulse-glow 2s ease-in-out infinite !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
}

.hero-title-creative {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    background: linear-gradient(135deg, #111827 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out !important;
}

.hero-title-creative span {
    display: block !important;
    animation: fadeInUp 0.8s ease-out !important;
}

.hero-title-creative span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-lead-creative {
    font-size: 1.2rem !important;
    color: #4b5563 !important;
    margin-bottom: 2.5rem !important;
    max-width: 550px !important;
    line-height: 1.8 !important;

}

.metrics-grid-creative {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 1.2rem !important;
    margin: 2.5rem 0 !important;
}

.metric-card-creative {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--radius-md) !important;
    padding: 1.8rem 1.2rem !important;
    text-align: center !important;
    border: 2px solid transparent !important;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary-light), rgba(245, 158, 11, 0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

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

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

.metric-card-creative:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary) !important;
}

.metric-label-creative {
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    margin-bottom: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.metric-value-creative {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block !important;
}

.hero-image-creative {
    position: relative !important;
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-xl) !important;
    animation: fadeInRight 1s ease-out !important;
}

.hero-image-creative img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Styles pour les deux images dans le hero */
.hero-image-creative img.position-absolute {
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    max-width: 60% !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Styles pour les captures d'écran de l'application dans le Hero */
.hero-screenshots-wrapper {
    position: relative !important;
    min-height: 550px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2.5rem !important;
    padding: 3rem 1rem !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(245, 158, 11, 0.03)) !important;
    border-radius: 30px !important;
}

.screenshot-container {
    position: relative !important;
    flex: 0 0 auto !important;
}

.screenshot-frame {
    position: relative !important;
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
    border-radius: 30px !important;
    padding: 1.5rem 1rem !important;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(16, 185, 129, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.9) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: visible !important;
    backdrop-filter: blur(10px) !important;
}

.screenshot-frame::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 30px !important;
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    border-radius: 24px 24px 0 0 !important;
    opacity: 0.1 !important;
}

.screenshot-frame::after {
    content: '' !important;
    position: absolute !important;
    top: 1.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 140px !important;
    height: 5px !important;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), rgba(245, 158, 11, 0.4)) !important;
    border-radius: 3px !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
}

.screenshot-img {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    display: block !important;
    border-radius: 20px !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 3px solid rgba(255, 255, 255, 0.9) !important;
    background: #ffffff !important;
}

.screenshot-container:hover .screenshot-frame {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(16, 185, 129, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 1) !important;
}

.screenshot-container:hover .screenshot-img {
    transform: scale(1.08) !important;
    box-shadow: 
        0 18px 50px rgba(0, 0, 0, 0.3),
        0 6px 18px rgba(0, 0, 0, 0.2) !important;
}

.screenshot-left {
    transform: rotate(-8deg) translateY(20px) !important;
    z-index: 2 !important;
}

.screenshot-right {
    transform: rotate(8deg) translateY(-20px) !important;
    z-index: 1 !important;
}

.screenshot-container:hover.screenshot-left {
    transform: rotate(-5deg) translateY(10px) scale(1.05) !important;
    z-index: 3 !important;
}

.screenshot-container:hover.screenshot-right {
    transform: rotate(5deg) translateY(-10px) scale(1.05) !important;
    z-index: 3 !important;
}

/* Animation au chargement */
@keyframes slideInPhone {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.screenshot-container {
    animation: slideInPhone 0.8s ease-out backwards !important;
}

.screenshot-right {
    animation-delay: 0.2s !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-screenshots-wrapper {
        flex-direction: column !important;
        gap: 1.5rem !important;
        min-height: auto !important;
    }
    
    .screenshot-frame {
        padding: 0.75rem !important;
    }
    
    .screenshot-img {
        max-width: 240px !important;
    }
    
    .screenshot-left,
    .screenshot-right {
        transform: none !important;
    }
    
    .screenshot-container:hover.screenshot-left,
    .screenshot-container:hover.screenshot-right {
        transform: translateY(-5px) !important;
    }
}

.hero-image-creative::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    pointer-events: none;
}

/* Cards Creative */
.card-creative {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.5rem !important;
    border: 2px solid transparent !important;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary-light), rgba(245, 158, 11, 0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-md) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.card-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.card-creative:hover {
    transform: translateY(-12px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary) !important;
}

.icon-box-creative {
    width: 80px !important;
    height: 80px !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    font-size: 2.5rem !important;
    color: white !important;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.icon-box-creative::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.icon-box-creative:hover::after {
    width: 200px;
    height: 200px;
}

.card-creative:hover .icon-box-creative {
    transform: rotate(5deg) scale(1.1) !important;
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.4) !important;
}

/* Buttons Creative */
.btn-creative-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue)) !important;
    color: white !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

.btn-creative-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-creative-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-creative-primary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4) !important;
    color: white !important;
}

.btn-creative-secondary {
    background: white !important;
    color: var(--primary) !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border: 3px solid var(--primary) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

.btn-creative-secondary:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3) !important;
}

/* Section Titles Creative */
.section-title-creative {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.subtitle-creative {
    display: inline-block !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(245, 158, 11, 0.15)) !important;
    color: var(--primary-dark) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 1rem !important;
    border: 2px solid rgba(16, 185, 129, 0.3) !important;
}

.title-creative {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #111827 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Backgrounds Creative */
.bg-creative-1 {
    background: var(--bg-gradient-1) !important;
    position: relative !important;
}

.bg-creative-2 {
    background: var(--bg-gradient-2) !important;
    position: relative !important;
}

/* Footer Creative */
.footer {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%) !important;
    border-top: 3px solid transparent;
    background-image: linear-gradient(#f9fafb, #f9fafb), linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.footer .sitename {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
}

.footer-links ul li a {
    color: #6b7280 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-links ul li a:hover {
    color: var(--primary) !important;
    padding-left: 10px;
}

.social-links a {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-light), rgba(245, 158, 11, 0.1)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue)) !important;
    color: white !important;
    transform: translateY(-5px) rotate(10deg) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Process Steps Creative */
.process-item {
    position: relative !important;
    padding: 0 !important;
}

.process-step-creative {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.5rem !important;
    box-shadow: var(--shadow-md) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid transparent !important;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary-light), rgba(245, 158, 11, 0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 2rem !important;
}

.process-step-creative::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.process-step-creative:hover::before {
    transform: scaleY(1);
}

.process-step-creative:hover {
    transform: translateX(10px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary) !important;
}

.step-number-creative {
    position: absolute !important;
    top: -20px !important;
    left: 30px !important;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue)) !important;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 1.4rem !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4) !important;
    border: 4px solid white !important;
    transition: all 0.4s ease !important;
}

.process-step-creative:hover .step-number-creative {
    transform: rotate(360deg) scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5) !important;
}

.step-icon {
    font-size: 2.5rem !important;
    color: var(--primary) !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
}

.process-step-creative:hover .step-icon {
    transform: scale(1.2) rotate(5deg) !important;
    color: var(--accent) !important;
}

/* Pricing Cards Creative */
.pricing-card {
    position: relative !important;
    overflow: visible !important;
}

.pricing-card.popular {
    border: 3px solid var(--primary) !important;
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.3) !important;
    transform: scale(1.05) !important;
}

.pricing-card.popular::before {
    height: 8px !important;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-blue)) !important;
}

.price {
    margin: 1.5rem 0 !important;
}

.price .amount {
    font-size: 3rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .currency {
    font-size: 1.2rem !important;
    color: #6b7280 !important;
}

.price .period {
    font-size: 1rem !important;
    color: #6b7280 !important;
}

/* Testimonial Cards Creative */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.5rem !important;
    box-shadow: var(--shadow-md) !important;
    border-left: 5px solid var(--primary) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    font-family: serif;
    color: rgba(16, 185, 129, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) translateX(5px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-left-color: var(--accent) !important;
}

/* Portfolio Cards Creative */
.portfolio-card {
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-md) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: white !important;
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: var(--shadow-xl) !important;
}

.portfolio-image {
    position: relative !important;
    overflow: hidden !important;
    height: 300px !important;
}

.portfolio-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.15) rotate(2deg) !important;
}

.portfolio-overlay {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(59, 130, 246, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* FAQ Creative */
.faq-item {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

.faq-header {
    padding: 1.5rem !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.faq-header h3 {
    color: #111827 !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.faq-item.faq-active .faq-header {
    color: var(--primary) !important;
}

.faq-toggle {
    color: var(--primary) !important;
    font-size: 1.2rem !important;
    transition: transform 0.3s ease !important;
}

.faq-item.faq-active .faq-toggle {
    transform: rotate(180deg) !important;
}

.faq-content {
    padding: 0 1.5rem 1.5rem !important;
    color: #4b5563 !important;
    line-height: 1.8 !important;
}

/* Contact Form Creative */
.form-wrapper {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--radius-xl) !important;
    padding: 3rem !important;
    box-shadow: var(--shadow-lg) !important;
    border: 2px solid transparent !important;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--primary-light), rgba(245, 158, 11, 0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.form-control {
    border: 2px solid #e5e7eb !important;
    border-radius: var(--radius-md) !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease !important;
    background: #f9fafb !important;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
    background: white !important;
    outline: none !important;
}

.input-group-text {
    background: var(--primary-light) !important;
    border: 2px solid #e5e7eb !important;
    border-right: none !important;
    color: var(--primary) !important;
    border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
}

.form-control:focus + .input-group-text,
.input-group:focus-within .input-group-text {
    border-color: var(--primary) !important;
    background: var(--primary) !important;
    color: white !important;
}

button[type="submit"] {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue)) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4) !important;
}

/* Info Cards Creative */
.info-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2rem !important;
    box-shadow: var(--shadow-md) !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    border: 2px solid transparent !important;
    height: 100% !important;
}

.info-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary) !important;
}

.info-card .icon-box {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto 1.5rem !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-light), rgba(245, 158, 11, 0.1)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
}

.info-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary), var(--accent-blue)) !important;
    color: white !important;
    transform: rotate(10deg) scale(1.1) !important;
}

/* Responsive Hero Section */
@media (max-width: 1199px) {
    .hero-title-creative {
        font-size: clamp(2rem, 5vw, 3.5rem) !important;
    }
    
    .hero-lead-creative {
        font-size: 1.1rem !important;
        max-width: 100% !important;
    }
}

@media (max-width: 992px) {
    .hero-creative {
        padding: 2rem 0 3rem !important;
    }
    
    .hero-title-creative {
        font-size: clamp(1.8rem, 5vw, 3rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-title-creative span {
        display: block !important;
    }
    
    .hero-lead-creative {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
    }
    
    .hero-lead-creative strong {
        display: block !important;
        margin-top: 0.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .metrics-grid-creative {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .metric-card-creative {
        padding: 1.2rem 0.8rem !important;
    }
    
    .metric-label-creative {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .metric-value-creative {
        font-size: 1.2rem !important;
    }
    
    .cta-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .cta-wrapper .btn-creative-primary,
    .cta-wrapper .btn-creative-secondary {
        width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .feature-boxes {
        margin-top: 3rem !important;
        gap: 1rem !important;
    }
    
    .feature-boxes .col-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .card-creative {
        padding: 1.5rem !important;
    }
    
    .feature-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feature-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 768px) {
    .hero-creative {
        padding: 1.5rem 0 2.5rem !important;
    }
    
    .badge-creative {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.9rem !important;
        margin-bottom: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .hero-title-creative {
        font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-title-creative span:first-child {
        font-size: 1.8rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .hero-title-creative span:nth-child(2) {
        font-size: 1.4rem !important;
    }
    
    .hero-lead-creative {
        font-size: 0.95rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.7 !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-lead-creative strong {
        display: block !important;
        margin-top: 0.5rem !important;
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    .metrics-grid-creative {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem !important;
        margin: 1.25rem 0 !important;
        padding: 0 0.5rem !important;
    }
    
    .metric-card-creative {
        padding: 1rem 0.5rem !important;
        border-radius: 12px !important;
    }
    
    .metric-label-creative {
        font-size: 0.7rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
    }
    
    .metric-value-creative {
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
    
    .cta-wrapper {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .cta-wrapper .btn-creative-primary,
    .cta-wrapper .btn-creative-secondary {
        width: 100% !important;
        padding: 0.875rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-screenshots-wrapper {
        min-height: 350px !important;
        padding: 1.5rem 0.5rem !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    .screenshot-frame {
        padding: 0.75rem !important;
    }
    
    .screenshot-img {
        max-width: 200px !important;
    }
    
    .feature-boxes {
        margin-top: 2rem !important;
        padding: 0 0.5rem !important;
    }
    
    .feature-boxes .col-lg-4 {
        margin-bottom: 1.25rem !important;
    }
    
    .card-creative {
        padding: 1.25rem !important;
        border-radius: 16px !important;
    }
    
    .icon-box-creative {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 1rem !important;
    }
    
    .icon-box-creative i {
        font-size: 1.5rem !important;
    }
    
    .feature-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feature-text {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
    
    .process-step-creative {
        padding: 1.5rem !important;
    }
    
    .step-number-creative {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-creative {
        padding: 1rem 0 2rem !important;
    }
    
    .badge-creative {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.8rem !important;
    }
    
    .hero-title-creative {
        font-size: clamp(1.3rem, 8vw, 1.8rem) !important;
    }
    
    .hero-title-creative span:first-child {
        font-size: 1.5rem !important;
    }
    
    .hero-title-creative span:nth-child(2) {
        font-size: 1.2rem !important;
    }
    
    .hero-lead-creative {
        font-size: 0.875rem !important;
        padding: 0 !important;
    }
    
    .metrics-grid-creative {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .metric-card-creative {
        padding: 0.875rem 0.4rem !important;
    }
    
    .metric-label-creative {
        font-size: 0.65rem !important;
    }
    
    .metric-value-creative {
        font-size: 0.9rem !important;
    }
    
    .cta-wrapper .btn-creative-primary,
    .cta-wrapper .btn-creative-secondary {
        padding: 0.75rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .hero-screenshots-wrapper {
        min-height: 300px !important;
        gap: 0.75rem !important;
    }
    
    .screenshot-img {
        max-width: 160px !important;
    }
    
    .feature-boxes {
        margin-top: 1.5rem !important;
    }
    
    .card-creative {
        padding: 1rem !important;
    }
}

