/* Web Sitesi Tasarımı - Custom Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Web Design Brand Colors */
    --web-blue: #0066cc;
    --web-purple: #6366f1;
    --web-cyan: #06b6d4;
    --web-green: #10b981;
    --web-orange: #f59e0b;
    --web-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #06b6d4 50%, #10b981 75%, #f59e0b 100%);
    
    /* Google Brand Colors */
    --google-blue: #4285f4;
    --google-red: #ea4335;
    --google-yellow: #fbbc04;
    --google-green: #34a853;
    
    /* Primary Colors */
    --primary: #4f46e5;
    --primary-light: #8b5cf6;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --accent: #10b981;
    --success: #34a853;
    
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-accent: #f1f3f4;
    --bg-blue-light: #eff6ff;
    --bg-purple-light: #f3f4f6;
    --bg-cyan-light: #ecfeff;
    --bg-gradient-light: linear-gradient(135deg, #eff6ff 0%, #f3f4f6 50%, #ecfeff 100%);
    --bg-dark: #1a1a1a;
    --bg-glass: rgba(255, 255, 255, 0.9);
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-white: #ffffff;
    
    /* Borders & Shadows */
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-web: 0 8px 32px rgba(99, 102, 241, 0.2);
    --shadow-web-hover: 0 12px 40px rgba(99, 102, 241, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundFloat {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    }
    33% {
        background: 
            radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 30% 70%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    }
    66% {
        background: 
            radial-gradient(circle at 40% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 90% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 10% 70%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
    background: var(--bg-gradient-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--bg-blue-light), rgba(99, 102, 241, 0.1));
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-web);
    animation: badgePulse 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: var(--shadow-web);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: var(--shadow-web-hover);
    }
}

.hero-badge i {
    font-size: 1.5rem;
    background: var(--web-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.hero-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.title-main {
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-highlight {
    background: var(--web-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--web-gradient);
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-web);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 60px;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-web-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    min-height: 60px;
    box-sizing: border-box;
}

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

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-item i {
    background: var(--web-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.trust-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Web Design Services Section */
.web-design-services {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* Desktop View */
.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}


.service-card > * {
    position: relative;
    z-index: 2;
}


.service-icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.4s ease;
}


.service-title { 
    font-size: 1.6rem;
    font-weight: 700; 
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Google Sans', sans-serif;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-description { 
    color: #5f6368;
    line-height: 1.5;
    margin-bottom: 1.5rem; 
    font-size: 0.9rem;
    text-align: center;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Partner Verification */
.partner-verification {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.partner-verification:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.partner-content {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
}

.partner-image {
    display: flex; 
    justify-content: center;
    align-items: center; 
}

.web-partner-badge {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.partner-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem; 
    font-family: 'Google Sans', sans-serif;
}

.partner-text p {
    font-size: 1.05rem;
    color: var(--text-secondary); 
    line-height: 1.6;
    margin-bottom: 1rem;
}

.verify-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.verify-link:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

.services-carousel .service-icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    overflow: hidden;
}

.services-carousel .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.services-carousel-slide 
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #10b981, #059669); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.services-carousel .service-title { 
    font-size: 1.6rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    color: #1a1a1a; 
    font-family: 'Google Sans', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.8rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-carousel .service-description { 
    color: #5f6368; 
    line-height: 1.5; 
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    text-align: center;
    flex-shrink: 0;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Service features removed - no longer needed */

/* Why Choose Section */
.why-choose { 
    background: var(--bg-gradient-light); 
    position: relative; 
    overflow: hidden; 
}

.why-choose-content { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
}

.why-choose-text h2 { 
    font-family: 'Google Sans', sans-serif; 
    font-size: clamp(2rem, 4vw, 3.5rem); 
    font-weight: 800; 
    margin-bottom: 1.5rem; 
    color: var(--text-primary); 
    line-height: 1.2; 
}

.why-choose-text p { 
    font-size: 1.2rem; 
    color: var(--text-secondary); 
    margin-bottom: 2rem; 
    line-height: 1.7; 
}

.tech-verification {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.tech-verification:hover {
    box-shadow: var(--shadow-web);
    transform: translateY(-2px);
}

.tech-badge {
    width: 120px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.tech-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Google Sans', sans-serif;
}

.tech-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.verify-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.verify-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Web Mockup */
.web-mockup {
    background: var(--web-gradient);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    padding: 30px 30px 20px 30px;
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating decorative elements */
.web-mockup::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transform: rotate(15deg);
}

.web-mockup::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 35px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.website-preview {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 420px;
    max-width: 100%;
    position: relative;
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.3s ease;
    margin-top: -10px;
}

.website-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.browser-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #28ca42; }

.address-bar {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px 12px;
    margin-left: 8px;
    font-size: 12px;
    color: #666;
}

.website-content {
    height: 520px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.website-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.website-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 300px;
}

.website-btn {
    background: white;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Website Mockup Image */
.website-mockup-image {
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    display: block;
    margin-left: -5%;
}

/* Add some floating icons around */
.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
    animation: float 4s ease-in-out infinite;
}

.icon-code {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon-design {
    top: 25%;
    right: 12%;
    animation-delay: 1s;
}

.icon-mobile {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

.process-services { 
    background: var(--bg-primary); 
}

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

.process-step { 
    text-align: center; 
    position: relative; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 20px; 
    padding: 2.5rem 2rem; 
    transition: all 0.3s ease; 
    box-shadow: var(--shadow); 
}

.step-number { 
    width: 70px; 
    height: 70px; 
    background: var(--web-gradient); 
    color: var(--text-white); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.5rem; 
    font-size: 1.8rem; 
    font-weight: 900; 
    box-shadow: var(--shadow-web); 
}

.step-title { 
    font-size: 1.4rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
    color: var(--text-primary); 
    font-family: 'Google Sans', sans-serif; 
}

.step-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section { 
    background: var(--bg-secondary); 
}

.faq-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    margin-top: 3rem; 
}

.faq-column { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}

.faq-item { 
    background: var(--bg-primary); 
    border-radius: 16px; 
    box-shadow: var(--shadow-sm); 
    overflow: hidden; 
    transition: all 0.3s ease; 
    border: 1px solid var(--border-light); 
}

.faq-question { 
    padding: 1.5rem; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: var(--bg-primary); 
    user-select: none; 
}

.faq-question h3 { 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: var(--text-primary); 
    margin: 0; 
    flex: 1; 
    line-height: 1.4; 
}

.faq-icon { 
    color: var(--primary); 
    font-size: 1.2rem; 
    transition: all 0.3s ease; 
    margin-left: 1rem; 
    flex-shrink: 0; 
}

.faq-item.active .faq-icon { 
    transform: rotate(45deg); 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    background: var(--bg-secondary); 
}

.faq-item.active .faq-answer { 
    max-height: 300px; 
}

.faq-answer p { 
    padding: 1.5rem; 
    margin: 0; 
    color: var(--text-secondary); 
    line-height: 1.6; 
    font-size: 0.95rem; 
}

/* CTA Section */
.cta-section { 
    background: var(--web-gradient); 
    color: var(--text-white); 
    text-align: center; 
    padding: 4rem 0; 
}

.cta-title { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700; 
    margin-bottom: 1rem; 
    font-family: 'Google Sans', sans-serif; 
}

.cta-subtitle { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
    opacity: 0.9; 
}

.cta-actions { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.btn-white { 
    background: var(--bg-primary); 
    color: var(--primary); 
    padding: 1rem 2rem; 
    border: none; 
    border-radius: 50px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
}

.btn-outline { 
    background: transparent; 
    color: var(--text-white); 
    padding: 1rem 2rem; 
    border: 2px solid var(--text-white); 
    border-radius: 50px; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-weight: 600; 
}

.btn-white:hover, 
.btn-outline:hover { 
    transform: translateY(-3px); 
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Services Carousel */
.services-carousel {
    position: relative;
    margin-top: 3rem;
    padding: 0;
    display: none;
    width: 100%;
    overflow: hidden;
}

.services-carousel-container {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background: transparent;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    height: auto;
    align-items: stretch;
}

.services-carousel-track.dragging {
    transition: none;
}

.services-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    flex: 0 0 100%;
}

.services-carousel-slide .service-card {
    margin: 0 auto;
    height: auto;
    min-height: 500px;
    width: calc(100% - 2rem);
    max-width: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15), 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(99, 102, 241, 0.1);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-carousel-slide .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #6366F1);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}


/* Services Carousel Navigation */
.services-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.services-carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--web-gradient);
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-web);
    position: relative;
    z-index: 10;
}

.services-carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-web-hover);
}

.services-carousel-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-web);
}

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

/* Services Carousel Indicators */
.services-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.services-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.services-indicator.active {
    background: var(--primary);
    transform: scale(1.3);
}

.services-indicator:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* Services Carousel Progress Bar */
.services-carousel-progress {
    width: 100%;
    height: 3px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 2px;
    margin: 1rem 0;
    overflow: hidden;
}

.services-carousel-progress-bar {
    height: 100%;
    background: var(--web-gradient);
    border-radius: 2px;
    transition: width 0.5s ease-in-out;
}

/* Pricing Packages */
.pricing-packages { 
    background: var(--bg-gradient-light); 
}

.packages-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2rem; 
    margin: 3rem 0 4rem; 
}

.package-card { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)); 
    backdrop-filter: blur(25px); 
    border: 2px solid rgba(255, 255, 255, 0.3); 
    border-radius: 24px; 
    padding: 0; 
    transition: all 0.4s ease; 
    box-shadow: var(--shadow); 
    position: relative; 
    overflow: hidden; 
    text-align: center; 
}

.package-card.featured { 
    border: 3px solid var(--primary); 
    transform: scale(1.05); 
}

.package-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: var(--shadow-web-hover); 
}

.package-card.featured:hover { 
    transform: translateY(-12px) scale(1.07); 
}

.popular-badge { 
    position: absolute; 
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--web-gradient); 
    color: var(--text-white); 
    padding: 0.75rem 2rem; 
    border-radius: 25px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    box-shadow: var(--shadow-web); 
    z-index: 2; 
    border: 2px solid white; 
}

.package-header { 
    padding: 3rem 2rem 2rem; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
}

/* Mobile package header optimization */
@media (max-width: 768px) {
    .packages-carousel-slide .package-card .package-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .packages-carousel-slide .package-card .package-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .packages-carousel-slide .package-card .package-title {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .packages-carousel-slide .package-card .package-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .packages-carousel-slide .package-card .price-amount {
        font-size: 2.5rem;
    }
    
    .packages-carousel-slide .package-card .price-period {
        font-size: 1rem;
    }
    
    .packages-carousel-slide .package-card .package-timeline {
        margin: 0 0.5rem;
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
    }
    
    .packages-carousel-slide .package-card .timeline-text {
        font-size: 0.75rem;
        line-height: 1.2;
        padding: 0.4rem 0.6rem;
    }
    
    /* General mobile package optimization */
    .packages-carousel-slide .package-card {
        margin: 0.5rem auto;
        max-width: 360px;
        min-height: 400px;
    }
    
    .packages-carousel-slide .package-card .package-header {
        padding: 1.75rem 1.25rem 1.25rem;
    }
    
    .packages-carousel-slide .package-card .package-features {
        padding: 1.25rem 1rem;
    }
    
    .packages-carousel-slide .package-card .package-cta {
        padding: 0 1rem 1.75rem;
    }
    
    .packages-carousel-slide .package-card .package-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }
}

.package-icon { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2rem; 
    color: white; 
    margin: 0 auto 1.5rem; 
}

.basic-package .package-icon { 
    background: linear-gradient(135deg, #6366f1, #8b5cf6); 
    box-shadow: var(--shadow-web); 
}

.professional-package .package-icon { 
    background: linear-gradient(135deg, #06b6d4, #0891b2); 
    box-shadow: var(--shadow-web); 
}

.premium-package .package-icon { 
    background: linear-gradient(135deg, #10b981, #059669); 
    box-shadow: var(--shadow-web); 
}

.package-title { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    color: var(--text-primary); 
}

.package-subtitle { 
    color: var(--text-secondary); 
    font-size: 1rem; 
    margin-bottom: 2rem; 
}

.package-price { 
    margin-bottom: 1rem; 
}

.price-amount { 
    font-size: 3rem; 
    font-weight: 900; 
    font-family: 'Google Sans', sans-serif; 
}

.basic-package .price-amount { 
    background: linear-gradient(135deg, #6366f1, #8b5cf6); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.professional-package .price-amount { 
    background: linear-gradient(135deg, #06b6d4, #0891b2); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.premium-package .price-amount { 
    background: linear-gradient(135deg, #10b981, #059669); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.price-period { 
    font-size: 1.2rem; 
    color: var(--text-secondary); 
    font-weight: 600; 
}

.package-timeline { 
    background: rgba(99, 102, 241, 0.1); 
    border: 1px solid rgba(99, 102, 241, 0.2); 
    border-radius: 12px; 
    padding: 0.75rem 1rem; 
    margin: 0 1rem; 
}

.timeline-text { 
    font-size: 0.9rem; 
    color: var(--primary); 
    font-weight: 600; 
}

.package-features { 
    padding: 2rem; 
}

/* Mobile package features optimization */
@media (max-width: 768px) {
    .packages-carousel-slide .package-card .package-features {
        padding: 1.5rem 1.25rem;
    }
}

.package-features .features-list { 
    list-style: none; 
    text-align: left; 
    padding: 0; 
}

.package-features .features-list li { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    margin-bottom: 1rem; 
    color: var(--text-secondary); 
    font-size: 0.95rem; 
}

/* Mobile features list optimization */
@media (max-width: 768px) {
    .packages-carousel-slide .package-card .package-features .features-list li {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
}

.package-features .features-list li::before { 
    content: '✓'; 
    width: 20px; 
    height: 20px; 
    background: var(--web-gradient); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.8rem; 
    font-weight: bold; 
    flex-shrink: 0; 
}

/* Mobile features list icon optimization */
@media (max-width: 768px) {
    .packages-carousel-slide .package-card .package-features .features-list li::before {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }
}

.package-cta { 
    padding: 0 2rem 3rem; 
}

/* Mobile package CTA optimization */
@media (max-width: 768px) {
    .packages-carousel-slide .package-card .package-cta {
        padding: 0 1.25rem 2rem;
    }
    
    .packages-carousel-slide .package-card .package-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
}

.package-btn { 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    border: none; 
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.75rem; 
    font-size: 1rem; 
    width: 100%; 
    justify-content: center; 
    cursor: pointer; 
}

.package-btn:hover { 
    transform: translateY(-3px); 
}

.basic-package .package-btn { 
    background: linear-gradient(135deg, #6366f1, #8b5cf6); 
    box-shadow: var(--shadow-web); 
    color: var(--text-white); 
}

.professional-package .package-btn { 
    background: linear-gradient(135deg, #06b6d4, #0891b2); 
    box-shadow: var(--shadow-web); 
    color: var(--text-white); 
}

.premium-package .package-btn { 
    background: linear-gradient(135deg, #10b981, #059669); 
    box-shadow: var(--shadow-web); 
    color: var(--text-white); 
}

.packages-bottom-cta { 
    text-align: center; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)); 
    backdrop-filter: blur(20px); 
    border: 2px solid rgba(255, 255, 255, 0.3); 
    border-radius: 24px; 
    padding: 3rem 2rem; 
    box-shadow: var(--shadow); 
}

.packages-bottom-cta h3 { 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--text-primary); 
    margin-bottom: 1rem; 
}

.packages-bottom-cta p { 
    color: var(--text-secondary); 
    font-size: 1.1rem; 
    margin-bottom: 2rem; 
    max-width: 500px; 
    margin: 0 auto 2rem; 
}

/* Mobile Packages Carousel */
.packages-carousel {
    display: none;
    position: relative;
    overflow: hidden;
    margin: 2rem 0 3rem;
}

.packages-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    min-height: 520px;
}

.packages-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.packages-carousel-slide {
    min-width: 100%;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.packages-carousel-slide .package-card {
    margin: 0 auto;
    max-width: 380px;
    width: 100%;
    min-height: 420px;
    position: relative;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.packages-carousel-slide .package-card .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap;
}

/* Packages Carousel Navigation */
.packages-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.packages-carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--web-gradient);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-web);
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-web-hover);
}

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

/* Packages Carousel Indicators */
.packages-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.packages-indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.packages-indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Packages Carousel Progress Bar */
.packages-carousel-progress {
    width: 100%;
    height: 4px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.packages-carousel-progress-bar {
    height: 100%;
    background: var(--web-gradient);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 33.33%;
}

/* Touch/Swipe Support */
.packages-carousel-container {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.packages-carousel-track {
    cursor: grab;
}

.packages-carousel-track:active {
    cursor: grabbing;
}

.packages-carousel-track.dragging {
    transition: none;
}

.services-carousel-track {
    cursor: grab;
}

.services-carousel-track:active {
    cursor: grabbing;
}

.services-carousel-track.dragging {
    transition: none;
}

/* --- MOBILE STYLES START --- */
@media (max-width: 1024px) {
    .why-choose-content, .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .why-choose-text { text-align: center; }
    
    /* Center mockup on tablet */
    .why-choose-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .web-mockup {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    /* Process Grid - 2 columns on tablet */
    .process-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem; 
    }
    
    /* Partner Content Mobile */
    .partner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .partner-image {
        justify-content: center;
    }
    
    .web-partner-badge {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .container { 
        padding: 0 1rem; 
        max-width: 100%;
    }
    
    /* Hero section mobile fixes */
    .hero { 
        padding: 6rem 0 3rem; 
        min-height: auto;
        background: var(--bg-gradient-light);
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
        margin-bottom: 1.5rem;
        display: inline-flex;
        flex-direction: row;
        gap: 0.5rem;
        max-width: 90%;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-badge i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .hero-title { 
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .title-line {
        margin-bottom: 0.2rem;
        display: block;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-actions { 
        flex-direction: row; 
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        justify-content: center;
        border-radius: 25px;
        flex: 1;
        min-height: 50px;
        box-sizing: border-box;
        height: 50px;
        display: flex;
        align-items: center;
    }
    
    .btn-primary {
        min-width: 160px;
        max-width: 200px;
    }
    
    .btn-secondary {
        min-width: 140px;
        max-width: 180px;
    }
    
    .hero-trust {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 12px;
        width: auto;
        max-width: 140px;
        flex: 1;
        min-width: 120px;
    }
    
    .trust-item i {
        font-size: 0.9rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
    
    /* Mobile Carousel View */
    .desktop-view {
        display: none !important;
    }
    
    .mobile-view {
        display: block !important;
    }
    
    /* Process Grid - 2 columns on mobile */
    .process-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem; 
    }
    
    .process-step {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Mobile Packages Carousel */
    .packages-grid { 
        display: none !important; 
    }
    
    .packages-carousel { 
        display: block !important; 
        margin: 2rem 0 3rem;
    }
    
    .packages-carousel-slide {
        min-height: 520px;
        display: flex;
        align-items: flex-start;
        padding-top: 0.5rem;
    }
    
    .packages-carousel-slide .package-card {
        max-width: 380px;
        min-height: 420px;
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .packages-carousel-container {
        min-height: 520px;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    /* FAQ Section Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        padding: 1.25rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* CTA Section Mobile */
    .cta-actions { 
        flex-direction: column; 
        align-items: center; 
        gap: 1rem;
    }
    
    .btn-white, .btn-outline {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    /* Section Spacing Mobile */
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .trust-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        max-width: 180px;
    }
    
    .process-step {
        padding: 1.25rem 0.75rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .web-mockup {
        max-width: 280px;
        min-height: 450px;
        padding: 12px;
    }
    
    .website-content {
        height: 350px;
        padding: 0;
        background: transparent;
    }
    
    .website-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .website-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .website-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .cta-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        padding: 0 0.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .btn-white, .btn-outline {
        max-width: 240px;
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .web-mockup {
        max-width: 260px;
        min-height: 420px;
    }
    
    .process-step {
        padding: 1rem 0.5rem;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .step-description {
        font-size: 0.75rem;
    }
}
