:root {
    --primary-color: #6366f1;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --dark-color: #1f2937;
    --light-gray: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(45deg, #10b981 0%, #059669 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
    line-height: 1.6;
    color: #374151;
}

.k9m3-navbar-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px
}

.r7h4-hero-banner {
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
    position: relative
}

.text-orange {
    color: var(--secondary-color) ;
}

.r7h4-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.r7h4-hero-banner .container {
    position: relative;
    z-index: 2;
}

.d3k7-action-buttons .btn {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.d3k7-action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.f8n2-stats-showcase {
    background: white;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 3;
    border-radius: 20px 20px 0 0;
}

.l6q1-about-expertise .card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.l6q1-about-expertise .card:hover {
    transform: translateY(-5px);
}

.x4t9-services-grid .card {
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.x4t9-services-grid .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.x4t9-services-grid .card.border-primary {
    border: 3px solid var(--primary-color) !important;
    position: relative;
}

.x4t9-services-grid .card.border-primary::before {
    content: 'PIÙ RICHIESTO';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.w2v8-testimonials-slider {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.w2v8-testimonials-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat
    opacity: 0.3;
}

.j5p7-content-strategy .bg-light {
    background: var(--light-gray) !important;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.j5p7-content-strategy .bg-light:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.h9k4-platform-expertise {
    background: var(--dark-color);
    position: relative;
}

.h9k4-platform-expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(99, 102, 241, 0.1) 50%, transparent 51%);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.a8v3-consultation-offer .card {
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.a8v3-consultation-offer .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.t6m2-case-studies .bg-light {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e5e7eb 100%) !important;
}

.u1q5-cta-final {
    background: var(--gradient-primary) !important;
    position: relative
    overflow: hidden;
}

.custom-btn-outline {
  color: #ffffff;              
  border: 2px solid #ff6600;   
  background-color: transparent;
  transition: all 0.3s ease;    
}

.custom-btn-outline:hover {
  background-color: #ff6600;    
  color: white;                 
}



.y7s1-footer-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
}

.e4r9-cookie-banner {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5856eb;
    border-color: #5856eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 700;
    letter-spacing: -1px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 768px) {
    .r7h4-hero-banner {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .d3k7-action-buttons {
        text-align: center;
    }
    
    .d3k7-action-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .f8n2-stats-showcase {
        margin-top: -30px;
        padding: 30px 0;
    }
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.bg-gradient {
    background: var(--gradient-primary) !important;
}

.rounded-4 {
    border-radius: 15px !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-muted {
    color: #6b7280 !important;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
}

.badge {
    border-radius: 15px;
    font-size: 0.75rem;
    padding: 8px 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}