/* Webdesign Sections - Modern Apple-style Design */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #007aff;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

/* Mobile breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0 16px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }
}

:root {
    --apple-text-primary: #ffffff;
    --apple-text-secondary: #a1a1aa;
    --apple-text-tertiary: #71717a;
    --apple-blue: #007aff;
    --apple-blue-hover: #0056cc;
    --apple-purple: #5856d6;
    --apple-background: #000000;
    --apple-surface: #111111;
    --apple-border: #27272a;
    --apple-shadow: rgba(0, 0, 0, 0.3);
    --apple-radius: 12px;
    --apple-spacing-xs: 8px;
    --apple-spacing-sm: 16px;
    --apple-spacing-md: 24px;
    --apple-spacing-lg: 32px;
    --apple-spacing-xl: 48px;
    --apple-spacing-xxl: 64px;
}

/* Services Section */
.webdesign-services {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.webdesign-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.02) 0%, transparent 80%);
    pointer-events: none;
}

.webdesign-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.005) 50%, transparent 70%);
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 120px;
}

.services-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.services-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 122, 255, 0.3), transparent, rgba(88, 86, 214, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.services-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.services-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.15);
}

.badge-text {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite alternate;
}

@keyframes titleShimmer {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.services-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover .service-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    color: #007AFF;
    transition: color 0.6s ease;
}

.service-card:hover .service-icon svg {
    color: #4d9eff;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.6s ease;
}

.service-card:hover .service-title {
    color: #007AFF;
}

.service-description {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    transition: color 0.6s ease;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: #007AFF;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: var(--apple-text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-card:hover .feature-item span {
    color: var(--apple-text-primary);
}

/* Process Section */
.webdesign-process {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.webdesign-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(88, 86, 214, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(0, 122, 255, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 120px;
}

.process-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.process-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(88, 86, 214, 0.3), transparent, rgba(139, 92, 246, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.process-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.process-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88, 86, 214, 0.15);
}

.process-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.process-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    margin-top: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 122, 255, 0.3) 20%, rgba(88, 86, 214, 0.3) 80%, transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: 60px;
    text-align: right;
    width: 50%;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 60px;
    margin-left: 50%;
    text-align: left;
    width: 50%;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(0, 122, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    z-index: 2;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-item:hover .timeline-number {
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.6);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.4);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

.timeline-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) .timeline-icon {
    margin-left: auto;
}

.timeline-item:hover .timeline-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.1);
}

.timeline-icon svg {
    color: #007AFF;
    transition: color 0.4s ease;
}

.timeline-item:hover .timeline-icon svg {
    color: #4d9eff;
}

.timeline-text {
    position: relative;
    z-index: 2;
}

.timeline-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.timeline-item:hover .timeline-title {
    color: #007AFF;
}

.timeline-description {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.timeline-item:hover .timeline-description {
    color: rgba(255, 255, 255, 0.9);
}

.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.timeline-item:hover .detail-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
}

.detail-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-item:hover .detail-icon {
    background: rgba(0, 122, 255, 0.2);
}

.detail-icon svg {
    width: 16px;
    height: 16px;
    color: #007AFF;
}

.detail-item span {
    font-size: 1rem;
    color: var(--apple-text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.timeline-item:hover .detail-item span {
    color: var(--apple-text-primary);
}

.timeline-duration {
    font-size: 1rem;
    color: var(--apple-text-tertiary);
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-duration {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
    color: var(--apple-text-secondary);
}

.timeline-duration strong {
    color: var(--apple-text-primary);
}

.process-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.03) 0%, rgba(88, 86, 214, 0.03) 100%);
    pointer-events: none;
}

.cta-title {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta-description {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    color: var(--apple-text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Portfolio Section */
.webdesign-portfolio {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.webdesign-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(0, 122, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(88, 86, 214, 0.02) 0%, transparent 80%);
    pointer-events: none;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 120px;
}

.portfolio-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.portfolio-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.3), transparent, rgba(0, 122, 255, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.portfolio-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.portfolio-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.portfolio-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.portfolio-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Portfolio Carousel Styles */
.portfolio-carousel {
    position: relative;
    margin-top: 80px;
}

.portfolio-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.portfolio-carousel-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    flex: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
}

.portfolio-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.portfolio-carousel-track .portfolio-item {
    min-width: 400px;
    flex-shrink: 0;
}

.carousel-nav {
    position: relative;
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--apple-text-primary);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    flex-shrink: 0;
}

.carousel-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.4);
    color: var(--apple-blue);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.15);
}

.carousel-nav:hover::before {
    opacity: 1;
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.carousel-nav:hover svg {
    transform: scale(1.1);
}

.carousel-nav-prev:hover svg {
    transform: scale(1.1) translateX(-1px);
}

.carousel-nav-next:hover svg {
    transform: scale(1.1) translateX(1px);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--apple-text-primary);
    transform: none;
    box-shadow: none;
}

/* Portfolio Grid Styles (keeping for backward compatibility) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

/* Portfolio Item Styles */
.portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    transform: translateY(0);
    will-change: transform;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
    filter: blur(2px);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.portfolio-tags .tag {
    background: rgba(0, 122, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 122, 255, 0.3);
}

.portfolio-links {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    white-space: nowrap;
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.portfolio-link svg {
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translateX(2px);
}

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

@keyframes badgeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container,
    .process-container,
    .technologies-container {
        padding: 0 var(--apple-spacing-md);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
    
    .service-card {
        padding: 40px;
    }
    
    .process-timeline::before {
        left: 40px;
        transform: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 80px;
        padding-right: 24px;
        margin-left: 0;
        text-align: left;
    }
    
    .timeline-number {
        left: 40px;
        transform: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon {
        margin-left: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
    }
    
    .portfolio-item {
        border-radius: 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-overlay {
        padding: 24px;
    }

    .portfolio-carousel-track .portfolio-item {
        min-width: 350px;
    }
    
    .portfolio-carousel-track {
        gap: 24px;
    }
    
    .carousel-nav {
        width: 48px;
        height: 48px;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
    }
    .timeline-item:nth-child(even) .timeline-content { 
        width: 100%;
    }
    
    .tech-categories {
        gap: 60px;
    }
    
    .tech-category {
        padding: 40px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .tech-card {
        padding: 24px;
    }
    
}

@media (max-width: 768px) {
    .webdesign-services,
    .webdesign-process,
    .webdesign-technologies {
        padding: 120px 0;
    }
    
    .services-container,
    .process-container,
    .technologies-container {
        padding: 0 var(--apple-spacing-sm);
    }
    
    .services-header,
    .process-header,
    .technologies-header {
        margin-bottom: 80px;
    }
    
    .services-title,
    .process-title,
    .technologies-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .services-description,
    .process-description,
    .technologies-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 60px;
    }
    
    .service-card {
        padding: 32px;
        border-radius: 20px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 24px;
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .service-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .service-features {
        gap: 12px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .process-timeline {
        margin-top: 60px;
    }
    
    .timeline-item {
        margin-bottom: 60px;
    }
    
    .timeline-content {
        padding: 32px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .timeline-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
    
    .timeline-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .timeline-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .timeline-details {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .detail-item {
        padding: 8px 12px;
    }
    
    .detail-icon {
        width: 28px;
        height: 28px;
    }
    
    .detail-item span {
        font-size: 0.9rem;
    }
    
    .timeline-duration {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .process-cta {
        padding: 48px 32px;
        margin-top: 80px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .webdesign-portfolio {
        padding: 120px 0;
    }
    
    .portfolio-container {
        padding: 0 var(--apple-spacing-sm);
    }
    
    .portfolio-header {
        margin-bottom: 80px;
    }
    
    .portfolio-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .portfolio-description {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 60px;
    }
    
    .portfolio-item {
        border-radius: 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-overlay {
        padding: 24px;
    }
    
    .portfolio-info h3 {
        font-size: 1.375rem;
        margin-bottom: 10px;
    }
    
    .portfolio-info p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .portfolio-tags {
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .portfolio-links {
        gap: 12px;
    }
    
    .portfolio-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .portfolio-cta {
        padding: 48px 32px;
        margin-top: 80px;
    }

    .portfolio-carousel-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .portfolio-carousel-track {
        order: 1;
        gap: 20px;
        padding: 16px 0;
    }
    
    .portfolio-carousel-track .portfolio-item {
        min-width: 300px;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
        order: 2;
    }
    
    .carousel-nav-prev {
        order: 0;
    }
    
    .carousel-nav-next {
        order: 2;
    }
    
    .portfolio-carousel-container {
        display: grid;
        grid-template-areas: 
            "prev next"
            "track track";
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: center;
    }
    
    .carousel-nav-prev {
        grid-area: prev;
        justify-self: start;
    }
    
    .carousel-nav-next {
        grid-area: next;
        justify-self: end;
    }
    
    .portfolio-carousel-track {
        grid-area: track;
    }
    
    .portfolio-image {
        height: 240px;
    }
    
    .portfolio-overlay {
        padding: 20px;
    }
    
    .portfolio-info h3 {
        font-size: 1.125rem;
    }
    
    .portfolio-info p {
        font-size: 0.85rem;
    }
    
    .portfolio-tags .tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .tech-categories {
        gap: 48px;
    }
    
    .tech-category {
        padding: 32px;
        border-radius: 24px;
    }
    
    .category-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .tech-icon {
        width: 48px;
        height: 48px;
    }
    
    .tech-name {
        font-size: 1.125rem;
    }
    
    .tech-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .webdesign-services,
    .webdesign-process,
    .webdesign-technologies {
        padding: 80px 0;
    }
    
    .services-container,
    .process-container,
    .technologies-container {
        padding: 0 var(--apple-spacing-sm);
    }
    
    .services-header,
    .process-header,
    .technologies-header {
        margin-bottom: 60px;
    }
    
    .services-title,
    .process-title,
    .technologies-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .services-description,
    .process-description,
    .technologies-description {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 20px;
        margin-top: 48px;
    }
    
    .service-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .service-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 8px 10px;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .process-timeline {
        margin-top: 48px;
    }
    
    .timeline-item {
        margin-bottom: 48px;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .timeline-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .timeline-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .timeline-details {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .detail-item {
        padding: 6px 10px;
    }
    
    .detail-icon {
        width: 24px;
        height: 24px;
    }
    
    .detail-item span {
        font-size: 0.85rem;
    }
    
    .timeline-duration {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .process-cta {
        padding: 32px 20px;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .webdesign-portfolio {
        padding: 80px 0;
    }
    
    .portfolio-container {
        padding: 0 var(--apple-spacing-sm);
    }
    
    .portfolio-header {
        margin-bottom: 60px;
    }
    
    .portfolio-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .portfolio-description {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        gap: 20px;
        margin-top: 48px;
    }
    
    .portfolio-item {
        border-radius: 16px;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-overlay {
        padding: 20px;
    }
    
    .portfolio-info h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .portfolio-info p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .portfolio-tags {
        gap: 4px;
        margin-bottom: 16px;
    }
    
    .tag {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .portfolio-links {
        gap: 8px;
        flex-direction: column;
    }
    
    .portfolio-link {
        padding: 8px 12px;
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .portfolio-cta {
        padding: 32px 20px;
        margin-top: 60px;
    }

    .portfolio-carousel-track .portfolio-item {
        min-width: 280px;
    }
    
    .portfolio-carousel-track {
        gap: 16px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-overlay {
        padding: 16px;
    }
    
    .portfolio-info h3 {
        font-size: 1rem;
    }
    
    .portfolio-info p {
        font-size: 0.8rem;
    }
    
    .portfolio-tags .tag {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
    
    .portfolio-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .tech-categories {
        gap: 32px;
    }
    
    .tech-category {
        padding: 24px;
        border-radius: 20px;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .category-description {
        font-size: 0.95rem;
    }
    
    .tech-grid {
        gap: 16px;
    }
    
    .tech-card {
        padding: 16px;
        border-radius: 14px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-name {
        font-size: 1rem;
    }
    
    .tech-description {
        font-size: 0.85rem;
    }
}



/* Portfolio CTA Section */
.portfolio-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(0, 122, 255, 0.03) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--apple-text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Portfolio CTA */
@media (max-width: 768px) {
    .portfolio-cta {
        padding: 48px 32px;
        margin-top: 80px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .portfolio-cta {
        padding: 32px 20px;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
} 

/* Price Calculator Section */
.price-calculator {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.price-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 122, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(88, 86, 214, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.calculator-header {
    text-align: center;
    margin-bottom: 80px;
}

.calculator-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.calculator-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 122, 255, 0.3), transparent, rgba(139, 92, 246, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.calculator-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.calculator-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.15);
}

.calculator-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.calculator-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.calculator-widget {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    margin-top: 60px;
}

.calculator-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.calculator-progress {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007AFF 0%, #5856D6 100%);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--apple-text-secondary);
}

.step-indicator {
    font-weight: 600;
    color: var(--apple-text-primary);
}

.calculator-step {
    position: relative;
    z-index: 2;
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.calculator-step.active {
    display: block;
}

/* Ensure final step is properly displayed */
.calculator-step:last-child {
    display: none;
}

.calculator-step:last-child.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    display: block;
    width: 100%;
}

.step-subtitle {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    width: 100%;
}

.step-content {
    margin-bottom: 48px;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .option-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .option-card {
        padding: 20px;
        text-align: left;
    }
    
    .option-content {
        gap: 12px;
    }
    
    .option-title {
        font-size: 1.125rem;
    }
    
    .option-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .option-price {
        margin-top: 12px;
    }
}

.option-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.selected {
    border-color: #007AFF;
    background: rgba(0, 122, 255, 0.1);
}

.option-card.selected::before {
    opacity: 1;
}

.option-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.option-card:hover .option-icon,
.option-card.selected .option-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
}

.option-icon svg {
    color: #007AFF;
    transition: color 0.3s ease;
}

.option-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.option-description {
    font-size: 0.95rem;
    color: var(--apple-text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.option-card:hover .option-description,
.option-card.selected .option-description {
    color: rgba(255, 255, 255, 0.9);
}

.option-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #007AFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: auto;
}

.option-price-label {
    font-size: 0.85rem;
    color: var(--apple-text-secondary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.2);
}

.feature-item.selected {
    background: rgba(0, 122, 255, 0.1);
    border-color: #007AFF;
}

.feature-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item.selected .feature-checkbox {
    background: #007AFF;
    border-color: #007AFF;
}

.feature-checkbox::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item.selected .feature-checkbox::after {
    opacity: 1;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--apple-text-primary);
    margin-bottom: 4px;
}

.feature-description {
    font-size: 0.85rem;
    color: var(--apple-text-secondary);
    line-height: 1.4;
}

.feature-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #007AFF;
    flex-shrink: 0;
}

.slider-container {
    margin-bottom: 32px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slider-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--apple-text-primary);
}

.slider-value {
    font-size: 1rem;
    font-weight: 500;
    color: #007AFF;
}

.slider-input {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 16px;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #007AFF;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.5);
}

.slider-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #007AFF;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--apple-text-secondary);
    font-size: 0.85rem;
}

.calculator-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.action-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--apple-text-primary);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-next {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    border: 1px solid rgba(0, 122, 255, 0.3);
    color: white;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-next:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-next.btn-calculate {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.btn-next.btn-calculate:hover {
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.3);
}

.price-summary {
    display: none;
}

.summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--apple-text-secondary);
}

.summary-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--apple-text-primary);
}

.summary-total {
    padding-top: 16px;
    border-top: 2px solid rgba(0, 122, 255, 0.3);
    text-align: center;
}

.total-label {
    font-size: 0.9rem;
    color: var(--apple-text-secondary);
    margin-bottom: 8px;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: #007AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.price-range {
    font-size: 0.85rem;
    color: var(--apple-text-secondary);
    margin-top: 8px;
}

.final-step {
    text-align: center;
    padding: 40px 0;
}

.final-step .final-price {
    font-size: 3rem;
    font-weight: 700;
    color: #007AFF;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.final-step .final-price-label {
    font-size: 1.25rem;
    color: var(--apple-text-secondary);
    margin-bottom: 32px;
}

.final-step .final-breakdown {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.final-step .breakdown-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.final-step .breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.final-step .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.final-step .breakdown-item:last-child {
    border-bottom: none;
    padding-top: 16px;
    border-top: 2px solid rgba(0, 122, 255, 0.3);
    margin-top: 8px;
}

.final-step .pricing-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    text-align: left;
}

.final-step .disclaimer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffc107;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.final-step .disclaimer-title::before {
    content: "⚠️";
    font-size: 1.1rem;
}

.final-step .disclaimer-text {
    font-size: 0.9rem;
    color: var(--apple-text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.final-step .disclaimer-text:last-child {
    margin-bottom: 0;
}

.final-step .disclaimer-text strong {
    color: var(--apple-text-primary);
    font-weight: 600;
}

.final-step .final-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Removed duplicate styles - now defined under .final-step */

.cta-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-primary {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    border: 1px solid rgba(0, 122, 255, 0.3);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--apple-text-primary);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .price-summary {
        position: static;
        transform: none;
        margin-top: 32px;
        right: auto;
    }
    
    .price-summary.hidden {
        transform: none;
        opacity: 1;
        pointer-events: all;
    }
    
    .calculator-container {
        padding: 0 var(--apple-spacing-md);
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .price-calculator {
        padding: 120px 0;
    }
    
    .calculator-container {
        padding: 0 var(--apple-spacing-sm);
    }
    
    .calculator-header {
        margin-bottom: 60px;
    }
    
    .calculator-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .calculator-description {
        font-size: 1.125rem;
    }
    
    .calculator-widget {
        padding: 32px;
        border-radius: 20px;
    }
    
    .step-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .step-subtitle {
        font-size: 1rem;
    }
    
    .option-card {
        padding: 24px;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .option-title {
        font-size: 1.125rem;
    }
    
    .option-description {
        font-size: 0.9rem;
    }
    
    .calculator-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .final-price {
        font-size: 2.5rem;
    }
    
    .final-step .final-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .final-step .final-price {
        font-size: 2.5rem;
    }
    
    .final-step .final-breakdown {
        padding: 20px;
    }
    
    .final-step .pricing-disclaimer {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .final-step .disclaimer-title {
        font-size: 0.95rem;
    }
    
    .final-step .disclaimer-text {
        font-size: 0.85rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .price-calculator {
        padding: 80px 0;
    }
    
    .calculator-header {
        margin-bottom: 48px;
    }
    
    .calculator-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .calculator-description {
        font-size: 1rem;
    }
    
    .calculator-widget {
        padding: 24px;
        border-radius: 16px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-subtitle {
        font-size: 0.95rem;
    }
    
    .option-card {
        padding: 20px;
    }
    
    .option-icon {
        width: 36px;
        height: 36px;
    }
    
    .final-step .final-price {
        font-size: 2rem;
    }
    
    .final-step .final-breakdown {
        padding: 16px;
    }
    
    .final-step .pricing-disclaimer {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .final-step .disclaimer-title {
        font-size: 0.9rem;
    }
    
    .final-step .disclaimer-text {
        font-size: 0.8rem;
    }
    
    .price-summary {
        min-width: auto;
        width: 100%;
        padding: 20px;
    }
} 

/* Technology Stack Section */
.webdesign-technologies {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.webdesign-technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 122, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(88, 86, 214, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.02) 0%, transparent 80%);
    pointer-events: none;
}

.technologies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.technologies-header {
    text-align: center;
    margin-bottom: 120px;
}

.technologies-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.technologies-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 122, 255, 0.3), transparent, rgba(139, 92, 246, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.technologies-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.technologies-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.15);
}

.technologies-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.technologies-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.tech-category {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s ease;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-category:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tech-category:hover::before {
    opacity: 1;
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.tech-category:hover .category-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.05);
}

.category-icon svg {
    color: #007AFF;
    transition: color 0.4s ease;
}

.tech-category:hover .category-icon svg {
    color: #4d9eff;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.tech-category:hover .category-title {
    color: #007AFF;
}

.category-description {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    line-height: 1.6;
    transition: color 0.4s ease;
}

.tech-category:hover .category-description {
    color: rgba(255, 255, 255, 0.9);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.tech-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.1);
}

.tech-icon svg {
    color: #007AFF;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-icon svg {
    color: #4d9eff;
}

.tech-content {
    position: relative;
    z-index: 2;
}

.tech-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--apple-text-primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-name {
    color: #007AFF;
}

.tech-description {
    font-size: 0.95rem;
    color: var(--apple-text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Process Styles - Updated with full width and proper centering */
@media (max-width: 768px) {
    .webdesign-process {
        padding: 120px 0;
        text-align: center !important;
    }
    
    .webdesign-process .process-container {
        padding: 0 16px;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .webdesign-process .process-header {
        margin-bottom: 80px;
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .process-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .process-description {
        font-size: 1.125rem;
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto;
    }
    
    .webdesign-process .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .webdesign-process .timeline-item {
        padding: 32px 20px;
        border-radius: 24px;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .webdesign-process .timeline-number {
        margin: 0 auto 24px auto;
        text-align: center !important;
    }
    
    .webdesign-process .timeline-content {
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .timeline-icon {
        margin: 0 auto 16px auto;
    }
    
    .webdesign-process .timeline-text {
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .timeline-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .timeline-description {
        font-size: 1.125rem;
        margin-bottom: 24px;
        text-align: center !important;
        width: 100%;
        line-height: 1.6;
    }
    
    .webdesign-process .timeline-details {
        gap: 16px;
        text-align: center !important;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .webdesign-process .detail-item {
        padding: 12px 16px;
        justify-content: center;
        text-align: center !important;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .webdesign-process .timeline-duration {
        text-align: center !important;
        margin-top: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .webdesign-process {
        padding: 80px 0;
        text-align: center !important;
    }
    
    .webdesign-process .process-container {
        padding: 0 12px;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .webdesign-process .process-header {
        margin-bottom: 60px;
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .process-title {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .process-description {
        font-size: 1rem;
        text-align: center !important;
        margin: 0 auto;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .webdesign-process .process-timeline {
        gap: 32px;
        margin-top: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .webdesign-process .timeline-item {
        padding: 24px 16px;
        border-radius: 20px;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .webdesign-process .timeline-number {
        margin: 0 auto 20px auto;
        text-align: center !important;
    }
    
    .webdesign-process .timeline-content {
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .timeline-icon {
        margin: 0 auto 12px auto;
    }
    
    .webdesign-process .timeline-text {
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .timeline-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
        text-align: center !important;
        width: 100%;
    }
    
    .webdesign-process .timeline-description {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center !important;
        width: 100%;
        line-height: 1.5;
    }
    
    .webdesign-process .timeline-details {
        gap: 12px;
        text-align: center !important;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .webdesign-process .detail-item {
        padding: 10px 12px;
        justify-content: center;
        text-align: center !important;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .webdesign-process .timeline-duration {
        text-align: center !important;
        margin-top: 16px;
        font-size: 0.9rem;
    }
} 

/* Client Logos Section */
.client-logos {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.client-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 122, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.logos-header {
    text-align: center;
    margin-bottom: 80px;
}

.logos-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.logos-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.logos-scroll-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    padding: 12px 0;
    mask: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.logos-scroll-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 60s linear infinite;
    will-change: transform;
}

.logos-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 40px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    min-width: 280px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-placeholder {
    text-align: center;
    color: var(--apple-text-secondary);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.logo-item:hover .logo-placeholder {
    color: var(--apple-text-primary);
    opacity: 1;
}

.logos-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
    height: 320px;
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

/* Bento Grid Layout */
.stat-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.stat-item:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.stat-item:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(88, 86, 214, 0.08) 100%);
}

.stat-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(0, 122, 255, 0.08) 100%);
}

.stat-number {
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #007AFF;
    margin-bottom: 12px;
    display: block;
    transition: all 0.4s ease;
}

.stat-item:nth-child(3) .stat-number,
.stat-item:nth-child(4) .stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
    color: #4d9eff;
}

.stat-label {
    position: relative;
    z-index: 2;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--apple-text-secondary);
    font-weight: 500;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-item:nth-child(3) .stat-label,
.stat-item:nth-child(4) .stat-label {
    font-size: clamp(1.125rem, 1.8vw, 1.25rem);
}

.stat-item:hover .stat-label {
    color: var(--apple-text-primary);
    transform: translateY(-2px);
}

/* Benefits Section */
.webdesign-benefits {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.webdesign-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 122, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(88, 86, 214, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 120px;
}

.benefits-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.benefits-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 122, 255, 0.3), transparent, rgba(88, 86, 214, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.benefits-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.benefits-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.15);
}

.benefits-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.benefits-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.6s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.05);
}

.benefit-icon svg {
    color: #007AFF;
    transition: color 0.6s ease;
}

.benefit-card:hover .benefit-icon svg {
    color: #4d9eff;
}

.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.6s ease;
}

.benefit-card:hover .benefit-title {
    color: #007AFF;
}

.benefit-description {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    line-height: 1.7;
    transition: color 0.6s ease;
}

.benefit-card:hover .benefit-description {
    color: rgba(255, 255, 255, 0.9);
}

.benefits-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

.benefits-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.03) 0%, rgba(88, 86, 214, 0.03) 100%);
    pointer-events: none;
}

/* Guarantees Section */
.webdesign-guarantees {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.webdesign-guarantees::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(88, 86, 214, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.guarantees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--apple-spacing-xl);
    position: relative;
    z-index: 1;
}

.guarantees-header {
    text-align: center;
    margin-bottom: 120px;
}

.guarantees-badge {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.guarantees-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(88, 86, 214, 0.3), transparent, rgba(139, 92, 246, 0.3), transparent);
    animation: badgeRotate 8s linear infinite;
}

.guarantees-badge::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
}

.guarantees-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88, 86, 214, 0.15);
}

.guarantees-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: var(--apple-text-primary);
    letter-spacing: -0.02em;
}

.guarantees-description {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--apple-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.guarantee-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.guarantee-card:hover::before {
    opacity: 1;
}

.guarantee-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all 0.6s ease;
}

.guarantee-card:hover .guarantee-icon {
    background: rgba(0, 122, 255, 0.2);
    border-color: rgba(0, 122, 255, 0.4);
    transform: scale(1.05);
}

.guarantee-icon svg {
    color: #007AFF;
    transition: color 0.6s ease;
}

.guarantee-card:hover .guarantee-icon svg {
    color: #4d9eff;
}

.guarantee-content {
    position: relative;
    z-index: 2;
}

.guarantee-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--apple-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.6s ease;
}

.guarantee-card:hover .guarantee-title {
    color: #007AFF;
}

.guarantee-description {
    font-size: 1.125rem;
    color: var(--apple-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    transition: color 0.6s ease;
}

.guarantee-card:hover .guarantee-description {
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--apple-text-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.guarantee-card:hover .guarantee-feature {
    color: var(--apple-text-primary);
}

.guarantee-feature svg {
    color: #007AFF;
    flex-shrink: 0;
}

.guarantees-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

.guarantees-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    pointer-events: none;
}

.guarantees-cta .cta-badge {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logos-container,
    .benefits-container,
    .guarantees-container {
        padding: 0 var(--apple-spacing-md);
    }
    
    .logos-scroll-track {
        gap: 32px;
    }
    
    .logo-item {
        min-width: 240px;
        padding: 24px 32px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .client-logos,
    .webdesign-benefits,
    .webdesign-guarantees {
        padding: 120px 0;
    }
    
    .logos-container,
    .benefits-container,
    .guarantees-container {
        padding: 0 var(--apple-spacing-sm);
    }
    
    .logos-header,
    .benefits-header,
    .guarantees-header {
        margin-bottom: 80px;
    }
    
    .logos-title,
    .benefits-title,
    .guarantees-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
    
    .logos-description,
    .benefits-description,
    .guarantees-description {
        font-size: 1.125rem;
    }
    
    .logos-scroll-track {
        gap: 24px;
    }
    
    .logo-item {
        min-width: 220px;
        padding: 20px 24px;
        min-height: 80px;
    }
    
    .benefits-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 80px;
    }
    
    .logos-stats {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        margin-top: 60px;
        height: 280px;
    }
    
    /* Simplified bento layout for tablet */
    .stat-item:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .stat-item:nth-child(2) {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
    }
    
    .stat-item:nth-child(3) {
        grid-column: 4 / 5;
        grid-row: 1 / 3;
        background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(88, 86, 214, 0.08) 100%);
    }
    
    .stat-item:nth-child(4) {
        grid-column: 1 / 4;
        grid-row: 2 / 3;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(0, 122, 255, 0.08) 100%);
    }
    
    .stat-item {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .stat-item:nth-child(3) .stat-number,
    .stat-item:nth-child(4) .stat-number {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    }
    
    .benefit-card,
    .guarantee-card {
        padding: 32px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 24px;
    }
    
    .guarantee-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
    
    .benefit-title,
    .guarantee-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .benefit-description,
    .guarantee-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .benefits-cta,
    .guarantees-cta {
        padding: 48px 32px;
        margin-top: 80px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .client-logos,
    .webdesign-benefits,
    .webdesign-guarantees {
        padding: 80px 0;
    }
    
    .logos-header,
    .benefits-header,
    .guarantees-header {
        margin-bottom: 60px;
    }
    
    .logos-title,
    .benefits-title,
    .guarantees-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .logos-description,
    .benefits-description,
    .guarantees-description {
        font-size: 1rem;
    }
    
    .logos-scroll-track {
        gap: 20px;
    }
    
    .logo-item {
        min-width: 200px;
        padding: 16px 20px;
        min-height: 70px;
    }
    
    .benefits-grid,
    .guarantees-grid {
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .logos-stats {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 16px;
        margin-top: 48px;
        height: auto;
    }
    
    /* Stack vertically on mobile */
    .stat-item:nth-child(1),
    .stat-item:nth-child(2),
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        grid-column: 1 / 2;
        background: rgba(255, 255, 255, 0.03);
    }
    
    .stat-item:nth-child(1) {
        grid-row: 1 / 2;
        background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(88, 86, 214, 0.08) 100%);
    }
    
    .stat-item:nth-child(2) {
        grid-row: 2 / 3;
    }
    
    .stat-item:nth-child(3) {
        grid-row: 3 / 4;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(0, 122, 255, 0.08) 100%);
    }
    
    .stat-item:nth-child(4) {
        grid-row: 4 / 5;
    }
    
    .stat-item {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2rem);
    }
    
    .stat-item:nth-child(1) .stat-number,
    .stat-item:nth-child(3) .stat-number {
        font-size: clamp(2rem, 6.5vw, 2.2rem);
    }
    
    .benefit-card,
    .guarantee-card {
        padding: 24px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
    
    .guarantee-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .benefit-title,
    .guarantee-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .benefit-description,
    .guarantee-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .benefits-cta,
    .guarantees-cta {
        padding: 32px 20px;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
} 