/* ==========================================================================
   Bikenos Consulting - Ultra Modern Single Page CSS
   ========================================================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #0f0f0f;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    overflow-x: hidden;
    font-variation-settings: 'wght' 400;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0f0f0f, #2a2a2a, #1a1a1a);
    z-index: 10000;
    transition: width 0.3s ease;
}

/* Loading Spinner Styles */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0f0f0f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Configuratore Navigation Buttons */
.action-buttons {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    margin-top: 2rem;
    padding: 1rem 0;
    width: 100%;
    gap: 1rem;
}

.btn-back {
    background: transparent !important;
    color: #666 !important;
    border: 2px solid #e5e5e5 !important;
    width: auto !important;
    min-width: 120px;
    padding: 0.75rem 1.5rem !important;
    height: auto !important;
    line-height: 1.5 !important;
    flex-shrink: 0;
}

.btn-back:hover {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
    color: #333 !important;
}

.btn-continue {
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a) !important;
    color: white !important;
    border: none !important;
    width: auto !important;
    min-width: 120px;
    padding: 0.75rem 1.5rem !important;
    height: auto !important;
    line-height: 1.5 !important;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15,15,15,0.3);
}

/* Forza stessa altezza per tutti i bottoni del configuratore */
.action-buttons .btn {
    height: auto !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}
h4 { 
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #0f0f0f;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container & Layout */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Styling */
section {
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(15,15,15,0.1), rgba(42,42,42,0.1));
    color: #0f0f0f;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid rgba(15,15,15,0.2);
}

.gradient-text {
    background: linear-gradient(135deg, 
        hsl(0, 0%, 10%) 0%,
        hsl(0, 0%, 25%) 25%,
        hsl(0, 0%, 15%) 50%,
        hsl(0, 0%, 35%) 75%,
        hsl(0, 0%, 20%) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: iridescent 3s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(20px);
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Removed scrolled class - navbar stays transparent always */

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f0f0f;
}

.logo-accent {
    color: #0f0f0f;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #0f0f0f;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #0f0f0f;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0f0f0f, #2a2a2a);
    border-radius: 1px;
}

.nav-cta {
    background: #0f0f0f;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 15, 15, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #0f0f0f;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(15,15,15,0.3);
}

.btn-primary::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: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15,15,15,0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px) !important;
}

.hero-buttons .btn-secondary {
    background: transparent !important;
    color: #0f0f0f !important;
    border: 2px solid #0f0f0f !important;
}

.hero-buttons .btn-secondary:hover {
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: 2px solid #0f0f0f !important;
    transform: translateY(-2px) !important;
}

.btn-secondary {
    background: transparent;
    color: #0f0f0f;
    border: 2px solid #0f0f0f;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #0f0f0f;
    color: #ffffff;
    border-color: #0f0f0f;
    transform: translateY(-2px);
}


.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    color: #0f0f0f;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(15,15,15,0.2);
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #0f0f0f;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center !important;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
}

.hero-buttons .btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1.25rem 2.5rem !important;
    font-size: 1.125rem !important;
    min-width: 250px !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    white-space: nowrap !important;
    transform: none !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem 0;
}

.trust-item {
    text-align: center;
    min-width: 140px;
}

.trust-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-size: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #1a1a1a;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #6b7280;
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

/* Stats Section */
.stats {
    background: #0f0f0f;
    color: #ffffff;
    padding: 4rem 0;
}

/* Pulsanti nelle sezioni scure - contrasto migliorato */
.stats .btn-primary,
.footer .btn-primary,
.cta-card .btn-primary {
    background: #ffffff;
    color: #0f0f0f;
    border: 2px solid #ffffff;
}

.stats .btn-primary:hover,
.footer .btn-primary:hover,
.cta-card .btn-primary:hover {
    background: #f3f4f6;
    color: #0f0f0f;
    transform: translateY(-2px);
}

.stats .btn-secondary,
.footer .btn-secondary,
.cta-card .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.stats .btn-secondary:hover,
.footer .btn-secondary:hover,
.cta-card .btn-secondary:hover {
    background: #ffffff;
    color: #0f0f0f;
    border: 2px solid #ffffff;
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Main CTA Section */
.main-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
}

.main-cta-section::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 32 32" width="32" height="32" fill="none" stroke="rgba(255,255,255,0.03)"><path d="m0 4 4-4 4 4"/><path d="m0 8 4-4 4 4"/></svg>') repeat;
    opacity: 0.3;
}

.main-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.main-cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.main-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.main-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    min-width: 250px;
}

@media (max-width: 768px) {
    .main-cta-section {
        padding: 4rem 0;
    }
    
    .main-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        min-width: 280px;
    }
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 1px solid rgba(15,15,15,0.1);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card.featured {
    background: #ffffff;
    border: 3px solid #0f0f0f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #0f0f0f;
}

.service-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon svg {
    color: #0f0f0f;
    transition: all 0.3s ease;
}


.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #0f0f0f;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    color: #0f0f0f;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0f0f0f;
}

.service-card:hover p {
    color: #64748b;
}

.service-features {
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #0f0f0f;
}

.feature::before {
    content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    margin-right: 0.5rem;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.service-price {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0f0f;
}

/* Portfolio Section */
.template-gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.template-gallery-showcase {
    margin-bottom: 4rem;
    text-align: center;
}

.showcase-content {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.showcase-content h3 {
    color: #0f0f0f;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.showcase-content h4 {
    color: #0f0f0f;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-content p {
    color: #0f0f0f;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.showcase-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Featured Case Study */
.featured-case-study {
    padding: 6rem 0;
    background: #ffffff;
}

.featured-case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-case-image {
    position: relative;
}

.case-study-placeholder {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.placeholder-content h4 {
    color: #0f0f0f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.placeholder-content p {
    color: #1a1a1a;
    font-size: 0.9rem;
}

.featured-case-info {
    padding: 1rem 0;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-section {
    margin-bottom: 2rem;
}

.case-section h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.case-section h4 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-section p {
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.result-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(248,250,252,0.8);
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
}

.result-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.result-item span {
    font-size: 0.875rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .featured-case-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .result-item {
        padding: 1rem 0.5rem;
    }
    
    .result-item strong {
        font-size: 1.5rem;
    }
}

/* Legacy Process Section - Removed */

/* Legacy: Removed featured-case-study - replaced with portfolio-showcase */

.case-study-image {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
}

.grid-item {
    background: rgba(15,15,15,0.1);
    animation: pulse 2s infinite;
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 0.5s; }
.grid-item:nth-child(3) { animation-delay: 1s; }
.grid-item:nth-child(4) { animation-delay: 1.5s; }

.placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(15,15,15,0.1);
    color: #0f0f0f;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(15,15,15,0.2);
}

.case-section {
    margin-bottom: 2rem;
}

.case-section h4 {
    color: #0f0f0f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.result-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(15,15,15,0.05);
    border-radius: 16px;
    border: 1px solid rgba(15,15,15,0.1);
}

.result-number {
    display: block;
    color: #0f0f0f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.result-label {
    color: #1a1a1a;
    font-size: 0.875rem;
}

.future-projects {
    text-align: center;
}

.future-projects h3 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.future-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.future-project-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.future-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(15,15,15,0.1), rgba(42,42,42,0.1));
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(15,15,15,0.2);
}

.project-icon svg {
    color: #0f0f0f;
    transition: all 0.3s ease;
}

.project-link {
    color: #0f0f0f;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #0f0f0f;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #ffffff;
}

.founder-section {
    margin-bottom: 6rem;
}

/* About Section Grid Layout */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.founder-column {
    position: relative;
}

.timeline-column {
    position: relative;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.founder-image {
    text-align: center;
    position: relative;
}

.founder-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.placeholder-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, 
    hsl(0, 0%, 10%), 
    hsl(0, 0%, 25%), 
    hsl(0, 0%, 15%), 
    hsl(0, 0%, 10%)
);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 8s linear infinite;
    z-index: -1;
}

.founder-title {
    color: #0f0f0f;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.founder-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.badge {
    background: rgba(15,15,15,0.1);
    color: #0f0f0f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(15,15,15,0.2);
}

.values-section {
    margin-top: 4rem;
}

.values-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(15,15,15,0.1), rgba(42,42,42,0.1));
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(15,15,15,0.2);
}

.value-icon svg {
    color: #0f0f0f;
    transition: all 0.3s ease;
}

/* Stars styling */
.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.stars svg {
    color: #2a2a2a;
    width: 16px;
    height: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(15, 15, 15, 0.2);
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info strong {
    color: #0f0f0f;
    display: block;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #1a1a1a;
    font-size: 0.875rem;
}

/* Service Areas Section */
.service-areas {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.area-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.area-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    border-radius: 50%;
    margin-bottom: 20px;
    color: white;
}

.area-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f0f0f;
}

.area-card p {
    color: #0f0f0f;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .area-card {
        padding: 30px 20px;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-container h3 {
    color: #0f0f0f;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #0f0f0f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(15,15,15,0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f0f0f;
    box-shadow: 0 0 0 3px rgba(15,15,15,0.1);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(15,15,15,0.1), rgba(42,42,42,0.1));
    border-radius: 12px;
    border: 1px solid rgba(15,15,15,0.2);
}

.contact-icon svg {
    color: #0f0f0f;
}

.cta-card {
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 26, 26, 0.4);
}

.response-time {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.response-time h4 {
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.response-time p {
    color: #1a1a1a;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.faq-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 2rem;
    padding-left: 0;
    align-items: flex-start;
}

.faq-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-prev, .faq-next {
    background: #0f0f0f;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-prev:hover, .faq-next:hover {
    background: #2a2a2a;
    transform: scale(1.1);
}

.faq-item {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .faq-item {
        min-width: 280px;
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .faq-carousel {
        padding: 0 1rem;
    }
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #1a1a1a;
    margin: 0;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: #ffffff;
    padding: 0;
}

.footer-cta {
    background: #0f0f0f;
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
}

.footer-cta::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 32 32" width="32" height="32" fill="none" stroke="rgba(255,255,255,0.05)"><path d="m0 4 4-4 4 4"/><path d="m0 8 4-4 4 4"/></svg>') repeat;
    opacity: 0.3;
}

.footer-cta h2 {
    color: #ffffff !important;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.footer-cta p {
    color: #ffffff !important;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.footer-cta-buttons .btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1.25rem 2.5rem !important;
    font-size: 1.125rem !important;
    min-width: 250px !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

/* Fix per allineamento bottoni globale */
.btn-container,
.hero-buttons,
.footer-cta-buttons,
.cta-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.btn-container .btn,
.hero-buttons .btn,
.footer-cta-buttons .btn,
.cta-buttons .btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Fix definitivo per prevenire il ridimensionamento automatico dei bottoni */
.hero-buttons .btn,
.footer-cta-buttons .btn {
    animation: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    font-size: 1.125rem !important;
    padding: 1.25rem 2.5rem !important;
    min-width: 250px !important;
}

.hero-buttons .btn:not(:hover),
.footer-cta-buttons .btn:not(:hover) {
    transform: none !important;
    scale: 1 !important;
}

/* Spinner per loading state form */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Overlay blur per form loading */
.form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 12px;
}

.form-loading-content {
    text-align: center;
    color: #0f0f0f;
}

.form-loading-content p {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.spinner-large {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(15, 15, 15, 0.2);
    border-radius: 50%;
    border-top-color: #0f0f0f;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

/* Vista conferma contact form - Ultra Professionale */
.contact-confirmation-view {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    margin-top: 2rem;
    transition: all 0.4s ease;
    animation: slideInUp 0.4s ease;
}

.confirmation-content {
    text-align: left;
    max-width: 600px;
    margin: 0;
}

.confirmation-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-indicator {
    width: 24px;
    height: 24px;
    background: #0f0f0f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.status-text {
    font-weight: 600;
    color: #0f0f0f;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.confirmation-content h3 {
    color: #0f0f0f;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.4s ease 0.1s both;
}

.confirmation-content p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    animation: fadeInUp 0.4s ease 0.2s both;
}

.confirmation-summary {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
    animation: fadeInUp 0.4s ease 0.3s both;
}

.confirmation-summary h4 {
    margin: 0 0 1rem 0;
    color: #0f0f0f;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #0f0f0f;
    padding-bottom: 0.5rem;
}

.summary-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #0f0f0f;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item strong {
    color: #0f0f0f;
    font-weight: 600;
    min-width: 120px;
    flex-shrink: 0;
}

.summary-item span {
    color: #333333;
    text-align: right;
    flex-grow: 1;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin: 2rem 0 0 0;
    animation: fadeInUp 0.4s ease 0.4s both;
}

.btn-resend-alt,
.btn-new-request {
    padding: 0.75rem 1.5rem;
    border: 2px solid #0f0f0f;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #ffffff;
    color: #0f0f0f;
}

.btn-resend-alt:hover,
.btn-new-request:hover {
    background: #0f0f0f;
    color: #ffffff;
}

.btn-resend-alt:focus,
.btn-new-request:focus {
    outline: 3px solid #0f0f0f;
    outline-offset: 2px;
}

.btn-resend-alt:hover {
    background: #059669;
}

.btn-new-request {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-new-request:hover {
    background: #e5e7eb;
}

/* Enhanced buttons for footer CTA */
.footer-cta .btn-primary {
    background: #ffffff !important;
    color: #0f0f0f !important;
    border: 3px solid #ffffff !important;
    font-weight: 700;
    text-shadow: none;
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.footer-cta .btn-primary:hover {
    background: #f8f9fa !important;
    color: #0f0f0f !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.3);
}

.footer-cta .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
    font-weight: 700;
    text-shadow: none;
}

.footer-cta .btn-secondary:hover {
    background: #ffffff !important;
    color: #0f0f0f !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.3);
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 1;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #0f0f0f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(15, 15, 15, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(15, 15, 15, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(15,15,15,0.9);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0f0f0f;
    transform: translateY(-2px);
}

/* Animations */
@keyframes iridescent {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animation delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Stili link nel menu mobile */
    .nav-menu .nav-link {
        color: #ffffff;
        font-size: 2rem;
        font-weight: 600;
        margin: 1rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-menu .nav-link:hover {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }
    
    .nav-menu .nav-cta {
        background: #ffffff;
        color: #0f0f0f;
        padding: 1rem 2rem;
        border-radius: 50px;
        margin-top: 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 10000;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #ffffff;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: #ffffff;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Eccezione per hero e footer buttons - mantengono dimensione grande anche su mobile */
    .hero-buttons .btn,
    .footer-cta-buttons .btn {
        width: auto !important;
        max-width: none !important;
        min-width: 250px !important;
        padding: 1.25rem 2.5rem !important;
        font-size: 1.125rem !important;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .case-study-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .services,
    .template-gallery,
    .about,
    .testimonials,
    .contact {
        padding: 4rem 0;
    }

    .founder-placeholder {
        width: 250px;
        height: 250px;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* Professional Step Form - Design Serio e Professionale */
.professional-wizard {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    margin-top: 1rem;
    min-height: 500px;
    font-family: 'Satoshi', sans-serif;
}

/* Progress Header - Design Minimalista */
.progress-header {
    padding: 2rem 3rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-step {
    width: 32px;
    height: 32px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #9ca3af;
    background: #ffffff;
    transition: all 0.3s ease;
}

.progress-step.active {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

.progress-step.completed {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 0.5rem;
}

.progress-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Form Steps - Design Professionale */
.form-step {
    display: none;
    padding: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-title {
    margin-bottom: 2.5rem;
    text-align: left;
}

.step-title h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.step-title p {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Form Fields - Puliti e Professionali */
.step-fields {
    margin-bottom: 2rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.field-group {
    margin-bottom: 1.5rem;
}

.field-group label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
}

.field-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    font-weight: 400;
}

.field-group input:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.field-group input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Step Controls - Design Professionale Nero */
.step-controls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2.5rem;
    align-items: center;
}

.btn-primary-step {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.btn-primary-step:hover:not(:disabled) {
    background: #1f2937;
    border-color: #1f2937;
    transform: translateY(-1px);
}

.btn-primary-step:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary-step {
    background: #ffffff;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-step:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    transform: translateY(-1px);
}

.btn-skip-step {
    background: transparent;
    color: #9ca3af;
    border: none;
    padding: 0.875rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.btn-skip-step:hover {
    color: #6b7280;
}

.btn-final-step {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}

.btn-final-step:hover {
    background: #1f2937;
    border-color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Addons Professional - Design Card Elegante */
.addons-professional {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.addon-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
}

.addon-card:hover {
    border-color: #d1d5db;
    background: #fafbfc;
    transform: translateY(-1px);
}

.addon-card.selected {
    border-color: #000000;
    background: #f9fafb;
}

.addon-checkbox {
    margin-top: 0.125rem;
}

.addon-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.addon-checkbox input:checked + .checkbox-custom {
    background: #000000;
    border-color: #000000;
}

.addon-checkbox input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
}

.addon-content {
    flex: 1;
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.addon-header h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.025em;
}

.addon-price {
    font-weight: 700;
    color: #000000;
    font-size: 1rem;
    white-space: nowrap;
}

.addon-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Order Complete - Design Professionale */
.order-complete {
    text-align: center;
    padding: 3rem 2rem;
}

.order-complete h3 {
    color: #000000;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.order-complete p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.order-summary {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.order-summary h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-summary p {
    margin: 0.5rem 0;
    color: #374151;
    font-weight: 400;
}

.btn-close-modal {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: #1f2937;
    border-color: #1f2937;
    transform: translateY(-1px);
}

/* Mobile Responsiveness - Design Professionale */
@media (max-width: 768px) {
    .progress-header {
        padding: 1.5rem 2rem 1rem;
    }
    
    .progress-steps {
        transform: scale(0.9);
    }
    
    .form-step {
        padding: 2rem 1.5rem;
    }
    
    .step-title h3 {
        font-size: 1.5rem;
    }
    
    .field-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-controls {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .btn-secondary-step {
        order: 2;
    }
    
    .btn-primary-step,
    .btn-final-step {
        order: 1;
    }
    
    .btn-skip-step {
        order: 3;
        text-align: center;
    }
    
    .addon-card {
        padding: 1.25rem;
    }
    
    .addon-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .addon-price {
        align-self: flex-start;
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-completed h4 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.step-completed p {
    color: #047857;
}

/* Addons Selection */
.addons-selection {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.addon-item {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.addon-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.addon-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.addon-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.addon-info {
    flex: 1;
}

.addon-info strong {
    display: block;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.addon-price {
    color: #059669;
    font-weight: 600;
    font-size: 0.95rem;
    float: right;
    margin-top: -1.5rem;
}

.addon-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.btn-proceed-payment,
.btn-skip-addons {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 2px solid transparent;
}

.btn-proceed-payment {
    background: #000000;
    color: #ffffff;
}

.btn-proceed-payment:hover {
    background: #374151;
}

.btn-skip-addons {
    background: #ffffff;
    color: #6b7280;
    border-color: #d1d5db;
}

.btn-skip-addons:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Payment Section */
.payment-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

.payment-placeholder p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.payment-placeholder p:last-child {
    color: #059669;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Form Error */
.form-error {
    margin-bottom: 1rem;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #fecaca;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.error-icon {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row-double {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bikenos-form,
    .addons-selection {
        padding: 1.5rem;
    }
    
    .addon-price {
        position: static;
        float: none;
        margin-top: 0.5rem;
        display: block;
    }
}

/* Template Gallery Styles - Original Design */
.solutions-section .solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    padding: 0;
}

.solutions-section .solution-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #000000;
}

.solutions-section .solution-info {
    padding: 1.5rem !important;
}

.solutions-section .solution-category {
    display: inline-block !important;
    background: transparent !important;
    color: #000000 !important;
    padding: 0.25rem 0 !important;
    border: none !important;
    border-bottom: 2px solid #000000 !important;
    border-radius: 0 !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 1rem !important;
}

.solutions-section .solution-card h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0f0f0f !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    letter-spacing: normal !important;
}

.solutions-section .solution-card p {
    color: #666 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1rem !important;
    font-weight: normal !important;
}

.solutions-section .solution-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
}

.solutions-section .feature-tag {
    background: #f0f0f0 !important;
    color: #666 !important;
    padding: 0.375rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    border: none !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
}

.solutions-section .feature-tag:hover {
    background: #e0e0e0 !important;
    transform: none !important;
    box-shadow: none !important;
}

.solutions-section .solution-actions {
    margin-top: 1.5rem !important;
    padding-top: 0 !important;
    display: flex !important;
    gap: 0.75rem !important;
}

.solutions-section .solution-actions .btn {
    width: auto !important;
    flex: 1 !important;
    padding: 0.75rem 1rem !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    text-transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    letter-spacing: normal !important;
    border: 2px solid #1a1a1a !important;
}

/* Service Category Styles - Clean Modern Design */
.service-category {
    margin-bottom: 6rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-category:first-of-type {
    margin-top: 2rem;
}

.service-category-header {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.09);
    text-align: left;
    width: 100%;
}

.service-category-header:hover {
    border-color: #000000;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
}

.service-category-header.enhanced::before {
    display: none;
}

.category-badge {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    width: fit-content;
}

.service-category-icon {
    display: none;
}

.service-category-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.category-description {
    font-size: 1.3rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: none;
}

.category-description strong {
    font-weight: 700;
    color: #000000;
    background: #f0f0f0;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.category-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    max-width: none;
    text-align: left;
    background: none;
    padding: 0;
    border: none;
    margin-top: 0.5rem;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #000000;
    opacity: 0.2;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .service-category-header {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 12px;
        width: 100%;
    }
    
    .service-category-header h2 {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1.2rem;
        max-width: none;
    }
    
    .category-subtitle {
        font-size: 0.95rem;
        padding: 0;
        max-width: none;
        margin-top: 0.5rem;
    }
    
    .category-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .category-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Service page specific grid - 3 columns for standard packages */
.solutions-section .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Gallery template grid - unchanged */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Service page specific cards */
.solutions-section .solution-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 18px;
    transition: border-color 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 580px;
    overflow: visible;
    padding: 0;
}

.solutions-section .solution-card:hover {
    border-color: #000000;
}

/* Original solution card for gallery */
.solution-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #000000;
}

/* Service page specific info */
.solutions-section .solution-card .solution-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solutions-section .solution-card .solution-category {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
}

.solutions-section .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.solutions-section .solution-card p {
    color: #374151;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

/* Original solution card info for gallery */
.solution-card .solution-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card .solution-category {
    display: inline-block;
    background: #f8f8f8;
    color: #666666;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Service page features */
.solutions-section .solution-features {
    padding: 1rem 0;
    flex-grow: 1;
    position: relative;
}

.solutions-section .solution-features.collapsed .feature-list {
    max-height: 320px;
    overflow: hidden;
    position: relative;
}

.solutions-section .solution-features.collapsed::after {
    display: none;
}

.solutions-section .solution-features.expanded .feature-list {
    max-height: none;
}

.solutions-section .solution-features.expanded::after {
    display: none;
}

.feature-toggle {
    background: #f8f9fa;
    border: none;
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px !important;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feature-toggle::after {
    content: '↓';
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.solution-features.expanded .feature-toggle::after {
    transform: rotate(180deg);
}

.feature-toggle:hover {
    background: #e9ecef;
}

.solutions-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions-section .feature-list li {
    padding: 0.375rem 0.5rem;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    margin: 0;
    background-color: #ffffff;
    transition: none;
}

.solutions-section .feature-list li:hover {
    background-color: #ffffff;
}

.solutions-section .feature-list li:last-child {
    border-bottom: none;
}

/* Original solution features for gallery */
.solution-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-expand-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #ffffff 60%, transparent);
    padding: 2rem 0 0.5rem;
    text-align: center;
    cursor: pointer;
    display: none;
}

.solution-features.has-more .feature-expand-btn {
    display: block;
}

.solution-features.expanded .feature-expand-btn {
    background: none;
    padding: 0.5rem 0;
    position: relative;
    margin-top: 1rem;
}

.feature-expand-btn button {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.feature-expand-btn button:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.solution-features.expanded .feature-expand-btn button::after {
    content: ' ▲';
}

.solution-features:not(.expanded) .feature-expand-btn button::after {
    content: ' ▼';
}

.solutions-section .feature-list li::before {
    content: "✓";
    color: #059669;
    background-color: #d1fae5;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.solutions-section .feature-list li.disabled {
    color: #6b7280;
    text-decoration: line-through;
    opacity: 0.7;
    background-color: #f9fafb;
    border-radius: 4px;
    margin: 2px 0;
}

.solutions-section .feature-list li.disabled::before {
    content: "×";
    color: #374151;
    background-color: #e5e7eb;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.solutions-section .feature-list li.highlight {
    color: #059669;
    font-weight: 600;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.05), transparent);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.solutions-section .feature-list li.new {
    color: #059669;
    font-weight: 600;
}

.solutions-section .feature-list li.new::after {
    content: "NUOVO";
    margin-left: auto;
    background: #10b981;
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Service page pricing */
.solutions-section .solution-pricing {
    padding: 1.25rem 0;
    text-align: left;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    background: #ffffff;
    margin: 1rem 0;
}

.solutions-section .price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: block;
    height: 1.2rem;
}

.solutions-section .price-main {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.solutions-section .price-period {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 400;
    display: inline;
    margin-left: 0.5rem;
    opacity: 0.6;
}

.solutions-section .price-installments {
    font-size: 0.813rem;
    color: #666666;
    font-weight: 500;
    display: block;
    margin-top: 0.375rem;
    font-style: italic;
}

.solutions-section .price-details {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.6;
}

.solutions-section .price-savings {
    display: inline-block;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #047857;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Original pricing for gallery */
.solution-pricing {
    margin-top: auto;
    padding: 1.5rem 0 0;
    text-align: center;
    background: none;
    border: none;
    border-top: 1px solid #f0f0f0;
}

.pricing-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-details {
    font-size: 0.85rem;
    color: #888888;
    line-height: 1.4;
    font-weight: 500;
    max-width: 300px;
    margin: 0 auto;
}

/* Service page featured */
.solutions-section .solution-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.solutions-section .solution-card.featured {
    border: 2px solid #000000;
    transform: none;
    background: #ffffff;
    position: relative;
}

.solutions-section .solution-card.featured:hover {
    border-color: #000000;
}

.solutions-section .solution-card.featured .solution-category {
    background: #000000;
    color: #ffffff;
}

.solutions-section .solution-card.featured .price-main {
    color: #059669;
}

/* Original featured for gallery */
.solution-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #10b981;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 0 16px 0 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.solution-card.featured {
    border: 2px solid #10b981;
    transform: scale(1.01);
    z-index: 1;
    box-shadow: none;
    position: relative;
}

.solution-card.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.solution-card.featured .solution-category {
    color: #10b981;
    font-weight: 600;
}

.solution-card.featured .price-main {
    color: #059669;
}

/* Removed - now using uniform btn-primary style */

.solution-card.featured .solution-category {
    background: #000000;
    color: #ffffff;
    border: none;
}

.solution-card.featured .feature-tag {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.solution-card.featured .feature-tag:hover {
    background: #dcfce7;
    border-color: #86efac;
}

.solution-card.featured .price-main {
    color: #059669;
}

.solution-card.featured .price-details {
    color: #166534;
}

.solution-actions {
    padding: 1.5rem 0 0;
}

.solution-actions .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #1a1a1a;
}

.solution-actions .btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solution-card:first-child .btn {
    background: #f9fafb;
}

.solution-card:last-child .btn {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.solution-card:last-child .btn:hover {
    background: #000000;
    border-color: #000000;
    transform: scale(1.02) translateY(-2px);
}

.section-separator {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .service-category {
        margin-bottom: 5rem;
        padding: 0 1rem;
    }
    
    .service-category-header {
        margin-bottom: 3rem;
    }
    
    .solution-card.featured {
        transform: none;
    }
    
    .service-category-header {
        padding: 2.5rem 2rem;
    }
    
    .service-category-header h2 {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1.1rem;
    }
    
    .category-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .solution-pricing {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .solution-card .solution-info {
        padding: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        margin: 0;
    }
    
    .solution-card:hover {
        transform: none !important;
    }
    
    .solution-card.featured {
        margin: 0;
        transform: scale(1);
        min-height: auto;
        padding-top: 2rem;
    }
    
    .solution-card {
        min-height: auto;
    }
    
    .solution-features {
        min-height: auto;
        max-height: none;
    }
    
    .service-category-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-category-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .solution-actions .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .section-separator {
        margin: 3rem 0;
    }
}

@media (max-width: 480px) {
    .service-category {
        margin-bottom: 4rem;
        padding: 0 0.75rem;
    }
    
    .service-category-header {
        padding: 1.5rem 1rem;
    }
    
    .service-category-header h2 {
        font-size: 1.75rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .price-main {
        font-size: 1.75rem;
    }
    
    .solution-card .solution-info {
        padding: 1.25rem;
    }
    
    .solution-pricing {
        padding: 1.25rem;
    }
    
    .service-category-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-category-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #0f0f0f;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #0f0f0f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #0f0f0f;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #0f0f0f;
}

.legal-content a {
    color: #0f0f0f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0f0f0f;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: #ffffff;
    color: #0f0f0f;
}

.cookie-btn-accept:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn-decline:hover {
    background: #ffffff;
    color: #0f0f0f;
    border: 2px solid #ffffff;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Print Styles */
/* Form Section Styling */
.form-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .basic-form .form-row-double {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-loading-state {
        padding: 2rem 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .progress-bar {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        background: white;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .hero {
        background: white;
        color: black;
    }
}

/* Page Styles for Internal Pages */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.25rem;
    color: #1a1a1a;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail {
    padding: 6rem 0;
    background: #ffffff;
}

.service-detail-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    border-radius: 50%;
    color: #ffffff;
}

.service-detail-content h2 {
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-item h4 {
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .service-detail-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
}

/* Service Detail Grid and Cards */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-detail-card {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    border-radius: 50%;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-detail-card h3 {
    color: #0f0f0f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Service Price */
.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6366f1;
    margin: 0.75rem 0 1rem 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 8px;
    display: inline-block;
}

.service-detail-card p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card ul li {
    color: #1a1a1a;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f0f0f;
    font-weight: bold;
}

.service-detail-card ul li:last-child {
    border-bottom: none;
}

.service-detail-alt {
    background: #f8fafc;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail-card {
        padding: 2rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
}

.final-cta::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 32 32" width="32" height="32" fill="none" stroke="rgba(255,255,255,0.03)"><path d="m0 4 4-4 4 4"/><path d="m0 8 4-4 4 4"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #0f0f0f;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: white;
    color: #0f0f0f;
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 4rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 280px;
    }
}


/* Chi Siamo Sections */
.about-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
}

.about-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(15,15,15,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.about-hero-with-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: start;
}

.about-content {
    text-align: left;
}

.about-badge {
    display: inline-block;
    background: #0f0f0f;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content h1 {
    margin-bottom: 2rem;
    font-size: clamp(3rem, 5vw, 4rem);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-stats-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-simple {
    text-align: center;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(15,15,15,0.1);
    transition: all 0.3s ease;
}

.stat-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Improved Founder Card */
.founder-section {
    position: sticky;
    top: 2rem;
}

.founder-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}


.founder-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.founder-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.founder-initials {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.founder-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.founder-role {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.founder-bio {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
}

.founder-achievements {
    margin-bottom: 2rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.achievement-icon {
    width: 20px;
    height: 20px;
    background: #0f0f0f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .about-hero-with-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .founder-section {
        position: static;
    }
    
    .about-stats-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto;
    }
    
    .about-hero {
        padding: 6rem 0 4rem;
    }
}

/* Real Timeline */
.about-timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.timeline-real {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-real {
    position: relative;
}

.timeline-line-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: linear-gradient(180deg, #0f0f0f 0%, rgba(15,15,15,0.3) 100%);
    transform: translateX(-50%);
    height: calc(100% - 2rem);
}

.timeline-event {
    position: relative;
    margin-bottom: 4rem;
    width: 45%;
}

.timeline-event.left {
    left: 0;
    text-align: right;
}

.timeline-event.right {
    left: 55%;
    text-align: left;
}

.timeline-date {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 1.8rem;
    color: #0f0f0f;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 3;
}

.timeline-event.left .timeline-date {
    right: -80px;
}

.timeline-event.right .timeline-date {
    left: -80px;
}

.timeline-card {
    background: #fafbfc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(15,15,15,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.timeline-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #0f0f0f;
    border: 4px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px #0f0f0f;
    z-index: 2;
}

.timeline-event.left .timeline-dot {
    right: -60px;
}

.timeline-event.right .timeline-dot {
    left: -60px;
}

.timeline-card h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.timeline-tags span {
    background: #0f0f0f;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Timeline Present Special Styling */
.timeline-present .timeline-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    color: white;
    border: 2px solid #0f0f0f;
}

.timeline-present .timeline-card h3 {
    color: white;
}

.timeline-present .timeline-card p {
    color: rgba(255,255,255,0.9);
}

.timeline-present .timeline-tags span {
    background: white;
    color: #0f0f0f;
}

.timeline-present .timeline-dot {
    background: #0f0f0f;
    box-shadow: 0 0 0 4px white, 0 0 0 8px #0f0f0f;
    width: 24px;
    height: 24px;
}

/* Timeline final element - centered below the line */
.timeline-final {
    width: 45%;
    left: 27.5%;
    text-align: center;
    margin-bottom: 0;
    margin-top: 2rem;
}

.timeline-final .timeline-dot {
    display: none;
}

.timeline-final .timeline-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    color: white;
    border: 2px solid #0f0f0f;
}

.timeline-final .timeline-card h3 {
    color: white;
}

.timeline-final .timeline-card p {
    color: rgba(255,255,255,0.9);
}

.timeline-final .timeline-tags span {
    background: white;
    color: #0f0f0f;
}

/* Contact Page - Consistent with site style */
.contact-main {
    padding: 4rem 0;
    background: #fafbfc;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(15,15,15,0.1);
}

.contact-form-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.contact-form button {
    margin-top: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0f0f0f;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
}

/* Eccezione per checkbox privacy */
.contact-form .privacy-simple input[type="checkbox"] {
    width: auto !important;
    padding: 0 !important;
    margin: 0 5px 0 0 !important;
    border: none !important;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #0f0f0f;
    box-shadow: 0 0 0 3px rgba(15,15,15,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
}

.btn-quote-new {
    background: #0f0f0f;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-quote-new:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.btn-quote-new svg {
    transition: transform 0.3s ease;
}

.btn-quote-new:hover svg {
    transform: translateX(3px);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
}

.info-card-dark {
    background: #0f0f0f;
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
}

.info-card-dark h3,
.info-card-dark h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.info-dot-white {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-section {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #0f0f0f;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.email-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.email-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
}

.email-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.guarantee-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.guarantee-section p {
    color: rgba(255,255,255,0.9);
    margin: 0.4rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-card-dark {
        padding: 2rem;
    }
    
    .timeline-line-vertical {
        left: 30px;
    }
    
    .timeline-event {
        width: calc(100% - 80px);
        left: 80px !important;
        text-align: left;
    }
    
    .timeline-date {
        position: static !important;
        display: inline-block;
        margin-bottom: 1rem;
        transform: none !important;
    }
    
    .timeline-dot {
        left: -60px !important;
        top: 1rem !important;
    }
    
    .timeline-tags {
        justify-content: flex-start;
    }
}

/* Technologies Section */
.technologies-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tech-category h3 {
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #0f0f0f;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    color: white;
    transform: translateY(-2px);
}

/* Methodology Section */
.methodology-section {
    padding: 6rem 0;
    background: #ffffff;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.methodology-step h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.methodology-step p {
    color: #1a1a1a;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

/* Team and About Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h4 {
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #1a1a1a;
    font-size: 0.9rem;
}

/* Portfolio Gallery Styles */
.template-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.template-gallery-item {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.template-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.template-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.template-gallery-content {
    padding: 2rem;
}

.template-gallery-content h4 {
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.template-gallery-content p {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.template-gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.template-gallery-tag {
    background: rgba(15,15,15,0.1);
    color: #0f0f0f;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* New Contact Page Styles */
.contact-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    text-align: center;
}

.contact-hero-content h1 {
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-subtitle {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.contact-method.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-method.email:hover {
    background: rgba(66, 139, 202, 0.1);
    border-color: rgba(66, 139, 202, 0.3);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-method.whatsapp .method-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.contact-method.email .method-icon {
    background: linear-gradient(135deg, #428bca, #357ebd);
    color: white;
}

.method-content {
    flex: 1;
    text-align: left;
}

.method-content h3 {
    color: #0f0f0f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-content p {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-action {
    color: #0f0f0f;
    font-weight: 600;
    font-size: 1rem;
}

.quick-contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.quick-contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quick-contact h2 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-contact p {
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.quick-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quick-form .form-group {
    margin-bottom: 1.5rem;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #f3f4f6;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: #0f0f0f;
    box-shadow: 0 0 0 3px rgba(15,15,15,0.1);
}

.quick-form input::placeholder,
.quick-form textarea::placeholder {
    color: #9ca3af;
}

.quick-form textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .method-content {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-form {
        padding: 2rem;
    }
}

/* Legacy Contact Page Styles - DISABLED */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #0f0f0f;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #0f0f0f;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f0f0f;
    box-shadow: 0 0 0 3px rgba(15,15,15,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    border-radius: 50%;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #0f0f0f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #2a2a2a;
}

.contact-hours {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.contact-hours h4 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #1a1a1a;
}

.hours-list li:last-child {
    border-bottom: none;
}

.cta-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-top: 4rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-link:hover {
    background: white;
    color: #0f0f0f;
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .cta-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-link {
        min-width: 250px;
        justify-content: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000000;
    }

    .service-card,
    .testimonial-card {
        border: 2px solid #000000;
    }
}

/* Contact Page Minimal Design */
.main-contact {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-grid-minimal {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form-container h2 {
    color: #0f0f0f;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-minimal {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-details h3 {
    color: #0f0f0f;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #0f0f0f;
    font-size: 1.1rem;
    margin: 0;
}

.contact-item a {
    color: #0f0f0f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #6366f1;
}

.business-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.business-info h4 {
    color: #0f0f0f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.business-info p {
    color: #4b5563;
    margin: 0.5rem 0;
}

.response-commitment {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

/* About Timeline Section Styles */
.about-timeline-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}


.timeline-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.timeline-tags span {
    display: inline-block;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.timeline-tags span:hover {
    background: #0f0f0f;
    border-color: #0f0f0f;
    color: white;
    transform: translateY(-1px);
}


.response-commitment p {
    color: #0f0f0f;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-grid-minimal {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .founder-timeline-wrapper {
        grid-template-columns: 1fr;
    }
    
    .timeline-right {
        margin-top: 2rem;
    }
}

/* ==========================================================================
   SOLUZIONI PRONTE PAGE STYLES
   ========================================================================== */

/* Solutions Hero Section */
.solutions-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(15,15,15,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solutions-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.solutions-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Solution Filters */
.solution-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #0f0f0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.filter-btn.active {
    background: #0f0f0f;
    color: white;
    border-color: #0f0f0f;
}

.filter-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.time-icon {
    width: 16px;
    height: 16px;
    stroke: #666;
}

/* Solutions Grid Section */
.solutions-section {
    padding: 40px 0 80px;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Solution Card */
.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.solution-preview {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
}

.solution-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,15,15,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .solution-overlay {
    opacity: 1;
}

.btn-view-demo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: white;
    color: #0f0f0f;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-demo:hover {
    transform: scale(1.05);
}

.solution-info {
    padding: 2rem;
}

.solution-category {
    display: inline-block;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.solution-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f0f0f;
}

.solution-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

.solution-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.solution-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: #666;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f0f0f;
}

.solution-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.time-icon {
    font-size: 1.2rem;
}

.solution-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.solution-actions .btn {
    flex: 1;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.solution-actions .btn-secondary {
    font-size: 0.85rem;
}

/* Removed duplicate - now covered by the uniform style above */

/* Custom Service Section Styles */
.custom-service-section {
    margin-top: 3rem;
    padding: 0;
}

.custom-service-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 18px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.custom-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #000000;
    color: #ffffff;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.custom-left h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.custom-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1.5rem;
}

.custom-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #000000;
    font-weight: 500;
}

.custom-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.custom-right {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    min-width: 280px;
}

.custom-pricing {
    margin-bottom: 1.5rem;
}

.custom-label {
    display: block;
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin: 0.5rem 0;
}

.custom-detail {
    display: block;
    font-size: 0.875rem;
    color: #666666;
}

/* Removed - now using uniform btn-primary style */

/* Responsive for custom service cards */
@media (max-width: 1024px) {
    .custom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-right {
        max-width: 100%;
    }
    
    .custom-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .custom-service-card {
        padding: 1.5rem;
    }
    
    .custom-left h3 {
        font-size: 1.5rem;
    }
}

/* ALL btn-primary uniform style - NO EXCEPTIONS */
.solutions-section .btn-primary,
.solution-card .btn-primary,
.solution-actions .btn-primary,
.custom-service-card .btn-primary {
    background: #000000 !important;
    border: 2px solid #000000 !important;
    color: #ffffff !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    width: 100% !important;
    text-align: center !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    display: block !important;
    cursor: pointer !important;
}

.solutions-section .btn-primary:hover,
.solution-card .btn-primary:hover,
.solution-actions .btn-primary:hover,
.custom-service-card .btn-primary:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Section Separator */
.section-separator {
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    margin: 5rem 0;
    border-radius: 1px;
}

/* Cart Modal Styles - Simple Package Card Style */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    animation: fadeIn 0.3s ease;
}

.cart-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cart-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Cart styled like solution cards */
.cart-container {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    max-width: 700px;
    width: 100%;
    border: 1px solid #000000;
    transition: all 0.25s ease;
    animation: modalSlideIn 0.3s ease forwards;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.cart-container:hover {
    border-color: #000000;
}

/* Cart Info Section - Like Solution Card */
.cart-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-category {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.cart-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cart-container p {
    color: #374151;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

/* Cart Features - Like Feature List */
.cart-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #059669;
    background-color: #d1fae5;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-item span:nth-child(2) {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    min-width: 120px;
}

.feature-item input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.feature-item input:focus {
    outline: none;
    border-color: #000000;
}

/* Cart Pricing - Like Solution Pricing */
.cart-pricing {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #666;
}

.price-line.total {
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Cart Actions - Like Solution Actions */
.cart-actions {
    padding: 1.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.95) translateY(30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-container {
        max-width: 90%;
        border-radius: 16px;
    }
    
    .cart-info {
        padding: 1.25rem;
    }
    
    .cart-actions {
        padding: 1.25rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .feature-item span:nth-child(2) {
        min-width: auto;
    }
    
    .feature-item input {
        width: 100%;
    }
}


.step-header {
    margin-bottom: 2rem;
    text-align: center;
}

.step-header h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.step-header p {
    font-size: 1.1rem;
    color: #333333;
    margin: 0 0 1rem;
    font-weight: 600;
}

/* Customer Form */
.customer-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Addon Navigation */
.addon-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.addon-nav-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.addon-nav-btn:hover {
    background: #000000;
    color: #ffffff;
}

.addon-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.addon-progress {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
}

/* Project Summary */
.project-summary {
    max-width: 600px;
    margin: 0 auto;
}

.summary-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 2px solid #000000;
    border-radius: 8px;
    background: #f8f9fa;
}

.summary-section h5 {
    font-size: 1.1rem;
    font-weight: 900;
    color: #000000;
    margin: 0 0 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

.summary-item:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

/* Current Addon Category */
.current-addon-category {
    max-width: 600px;
    margin: 0 auto;
}

.cart-section {
    margin-bottom: 2rem;
}

.cart-section:last-child {
    margin-bottom: 0;
}

/* Selected Package */
.selected-package {
    background: #f8f9fa;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.selected-package .item-info h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    margin: 0 0 0.5rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.selected-package .item-info p {
    font-size: 1rem;
    color: #333333;
    margin: 0;
    font-weight: 600;
}

.selected-package .item-price {
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: -0.025em;
}

/* Section Header */
.section-header h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    margin: 0 0 1rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.1rem;
    color: #333333;
    margin: 0 0 2rem;
    line-height: 1.6;
    font-weight: 600;
}

/* Addon Categories */
.addon-category {
    margin-bottom: 2.5rem;
}

.category-label {
    font-size: 0.9rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #000000;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #000000;
}

.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Addon Items */
.addon-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
    position: relative;
}

.addon-item:hover {
    border-color: #000000;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.addon-item.selected {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.addon-item.selected .addon-details h5,
.addon-item.selected .addon-details p {
    color: #ffffff;
}

.addon-item.selected .addon-price {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Custom Checkbox */
.addon-checkbox {
    position: relative;
    flex-shrink: 0;
}

.addon-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.addon-checkbox label {
    display: block;
    width: 28px;
    height: 28px;
    border: 3px solid #000000;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: #ffffff;
}

.addon-checkbox input[type="checkbox"]:checked + label {
    background: #000000;
    border-color: #000000;
}

.addon-checkbox input[type="checkbox"]:checked + label::after {
    content: '✓';
    position: absolute;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.addon-item.selected .addon-checkbox label {
    background: #ffffff;
    border-color: #ffffff;
}

.addon-item.selected .addon-checkbox input[type="checkbox"]:checked + label {
    background: #ffffff;
    border-color: #ffffff;
}

.addon-item.selected .addon-checkbox input[type="checkbox"]:checked + label::after {
    color: #000000;
}

/* Addon Details */
.addon-details {
    flex: 1;
    min-width: 0;
}

.addon-details h5 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000000;
    margin: 0 0 0.5rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.addon-details p {
    font-size: 1rem;
    color: #333333;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000000;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 2px solid #000000;
}

/* Cart Footer */
.cart-footer {
    border-top: 3px solid #000000;
    padding: 1.5rem 3rem;
    background: #f8f9fa;
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.total-display {
    flex: 1;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    color: #000000;
    font-weight: 900;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
}

.footer-actions {
    display: flex;
    gap: 1rem;
}

.footer-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    min-width: 120px;
}

.footer-actions .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.footer-actions .btn-secondary:hover {
    background: #000000;
    color: #ffffff;
}

.footer-actions .btn-primary {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.footer-actions .btn-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .cart-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .cart-modal.show {
        padding: 1rem;
    }
    
    .cart-container {
        width: 100%;
        max-height: 95vh;
        border-radius: 16px;
        max-width: none;
        border: 1px solid #000000;
    }
    
    .cart-steps {
        padding: 1rem 2rem 0;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .cart-header {
        padding: 1.5rem 2rem 1rem;
    }
    
    .cart-header h3 {
        font-size: 1.5rem;
    }
    
    .cart-body {
        padding: 1.5rem 2rem;
    }
    
    .cart-footer {
        padding: 1.25rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .total-display {
        text-align: center;
    }
    
    .footer-actions {
        width: 100%;
        justify-content: center;
    }
    
    .footer-actions .btn {
        flex: 1;
        max-width: 200px;
    }
    
    .selected-package {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .addon-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .customer-form {
        max-width: 100%;
    }
    
    .addon-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .addon-nav-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Process Timeline Section */
.process-timeline-section {
    padding: 8rem 0;
    background: white;
    margin-top: 2rem;
}

/* Pricing Section */
.solutions-pricing {
    padding: 80px 0;
    background: #fafbfc;
}

.solutions-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-comparison {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #0f0f0f;
    color: white;
    font-weight: 600;
}

.comparison-table th.featured {
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-row td {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f0f0f;
}

.pricing-row .featured {
    color: #0f0f0f;
    background: rgba(15,15,15,0.05);
}

/* CTA Section */
.solutions-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
}

/* FAQ Section */
.solutions-faq {
    padding: 80px 0;
    background: white;
}

.solutions-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background: #fafbfc;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #0f0f0f;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .solution-actions .btn-primary {
        order: 1;
    }
    
    .solution-actions .btn-secondary {
        order: 2;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Purchase Modal Styles
   ========================================================================== */

.purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.purchase-modal.show {
    opacity: 1;
    visibility: visible;
}

.purchase-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.purchase-modal-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(15, 15, 15, 0.1),
        0 8px 25px rgba(15, 15, 15, 0.05);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.purchase-modal.show .purchase-modal-container {
    transform: translateY(0) scale(1);
}

.purchase-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.purchase-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0;
}

.modal-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #e9ecef;
    color: #0f0f0f;
    transform: scale(1.05);
}

/* Purchase Modal Progress - COMPLETAMENTE NUOVO */
.purchase-modal-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
}

.purchase-modal-progress .progress-step {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin: 0 2rem !important;
    width: auto !important;
    height: auto !important;
    z-index: 10 !important;
}

.purchase-modal-progress .progress-number {
    width: 50px !important;
    height: 50px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: #9ca3af !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 11 !important;
}

.purchase-modal-progress .progress-label {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: #6b7280 !important;
    text-align: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Step attivo */
.purchase-modal-progress .progress-step.active .progress-number {
    border-color: #0f0f0f !important;
    background: #0f0f0f !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.purchase-modal-progress .progress-step.active .progress-label {
    color: #0f0f0f !important;
    font-weight: 600 !important;
}

/* Reset di tutti gli altri possibili conflitti */
.purchase-modal-progress * {
    box-sizing: border-box !important;
}

/* Durante loading nascondi gli step */
.purchase-modal.loading .purchase-modal-progress {
    opacity: 0.3;
    pointer-events: none;
}

.purchase-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 2rem 2rem;
    position: relative;
}

.purchase-step {
    display: none;
}

.purchase-step.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.purchase-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.form-group .optional {
    color: #999;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #0f0f0f;
}

.form-group input:focus {
    outline: none;
    border-color: #0f0f0f;
    box-shadow: 0 0 0 4px rgba(15, 15, 15, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-error {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.form-actions.single-button {
    justify-content: flex-end;
}

.form-actions.two-buttons {
    justify-content: space-between;
}

.btn-purchase-primary,
.btn-purchase-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 120px;
}

.form-actions.two-buttons .btn-purchase-primary,
.form-actions.two-buttons .btn-purchase-secondary {
    flex: 1;
}

.btn-purchase-primary {
    background: #0f0f0f;
    color: white;
}

.btn-purchase-primary:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

/* Single button styling for first step */
.purchase-form .btn-purchase-primary:only-child {
    margin-left: auto;
    flex: 0 0 auto;
    min-width: 140px;
}

.btn-purchase-secondary {
    background: #f8f9fa;
    color: #0f0f0f;
    border: 2px solid #e0e0e0;
}

.btn-purchase-secondary:hover {
    background: #e9ecef;
    border-color: #d0d0d0;
}

.addons-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.addon-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    background: #ffffff;
}

.addon-card:hover {
    border-color: #0f0f0f;
    box-shadow: 0 4px 12px rgba(15, 15, 15, 0.1);
}

.addon-card.selected {
    border-color: #0f0f0f;
    background: #fafafa;
}

.addon-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.addon-checkbox {
    position: relative;
    flex-shrink: 0;
}

.addon-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s ease;
}

.addon-checkbox input[type="checkbox"]:checked {
    background: #0f0f0f;
    border-color: #0f0f0f;
}

.addon-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.addon-checkbox label {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.addon-header h4 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0;
}

.addon-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f0f0f;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.addon-card p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.purchase-modal-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    backdrop-filter: blur(4px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #0f0f0f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.purchase-modal-loading p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Animazioni moderne per conferma contatti */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Transizioni smooth per form */
.contact-section {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-container {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-container {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fallback notice per errori email - Stile professionale */
.fallback-notice {
    background: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    animation: fadeInUp 0.4s ease 0.5s both;
}

.fallback-icon {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.fallback-content h4 {
    color: #0f0f0f;
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fallback-content p {
    color: #333333;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.fallback-email {
    display: inline-block;
    background: #0f0f0f;
    color: #ffffff !important;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 2px solid #0f0f0f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fallback-email:hover {
    background: #ffffff;
    color: #0f0f0f !important;
    border: 2px solid #0f0f0f;
}

/* Privacy Simple - Forzato allineamento */
.privacy-simple {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
    text-align: left !important;
    width: 100%;
    display: block !important;
}

.privacy-simple label {
    color: #000000 !important;
    display: block !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    cursor: pointer;
}

.privacy-simple input[type="checkbox"] {
    display: inline !important;
    width: auto !important;
    margin: 0 5px 0 0 !important;
    vertical-align: middle !important;
    position: static !important;
    float: none !important;
}

.privacy-simple a {
    color: #0066cc !important;
    text-decoration: underline;
}

/* Legacy styles for existing modal */
.privacy-agreement {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy-agreement:hover {
    border-color: #0f0f0f;
    box-shadow: 0 4px 12px rgba15, 15, 15, 0.1);
}

.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    margin: 0;
}

.privacy-checkbox-label input[type="checkbox"] {
    margin: 0.25rem 0 0 0;
    min-width: 20px;
    height: 20px;
    accent-color: #0f0f0f;
    cursor: pointer;
}

.privacy-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
    margin: 0;
}

.privacy-text a {
    color: #0f0f0f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #0f0f0f;
    transition: all 0.2s ease;
}

.privacy-text a:hover {
    background: #0f0f0f;
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 4px;
}

/* Purchase Modal Responsive */
@media (max-width: 768px) {
    .purchase-modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .purchase-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .purchase-modal-progress {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
    
    .purchase-modal-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-purchase-secondary {
        order: 2;
    }
    
    .btn-purchase-primary {
        order: 1;
    }
}
