/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Custom Selection */
::selection {
    background: #3b82f6;
    color: #ffffff;
}

::-moz-selection {
    background: #3b82f6;
    color: #ffffff;
}

/* Smooth Loading */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageLoad 0.6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f1f5f9;
    color: #1e293b;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Performance Optimizations */
* {
    will-change: auto;
}

.elevated, .inset, .circle-elevated, .circle-inset,
.btn, .benefit-card, .value-card, .step-card,
.tech-circle, .testimonial-card, .faq-item {
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* Neomorphic Styles */
.elevated {
    background: #f1f5f9;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
    border-radius: 20px;
}

.inset {
    background: #f1f5f9;
    box-shadow: 
        inset 8px 8px 16px rgba(148, 163, 184, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.9);
    border-radius: 20px;
}

.circle-elevated {
    background: #f1f5f9;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.4),
        -8px -8px 20px rgba(255, 255, 255, 1);
    border-radius: 50%;
}

.circle-inset {
    background: #f1f5f9;
    box-shadow: 
        inset 4px 4px 8px rgba(148, 163, 184, 0.25),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 
        10px 10px 25px rgba(59, 130, 246, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.8),
        inset 0 0 0 rgba(148, 163, 184, 0.2);
    border-radius: 20px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        12px 12px 30px rgba(59, 130, 246, 0.4),
        -12px -12px 30px rgba(255, 255, 255, 0.9);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        inset 6px 6px 15px rgba(30, 64, 175, 0.3),
        inset -6px -6px 15px rgba(96, 165, 250, 0.3);
}

.btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.4),
        -8px -8px 20px rgba(255, 255, 255, 1);
    border-radius: 20px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 
        10px 10px 25px rgba(148, 163, 184, 0.5),
        -10px -10px 25px rgba(255, 255, 255, 1);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 
        inset 4px 4px 12px rgba(148, 163, 184, 0.25),
        inset -4px -4px 12px rgba(255, 255, 255, 0.9);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
}

.btn-service {
    width: 100%;
    margin-top: 30px;
    background: #f1f5f9;
    color: #1e293b;
    box-shadow: 
        inset 4px 4px 10px rgba(148, 163, 184, 0.2),
        inset -4px -4px 10px rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

.btn-service:hover {
    box-shadow: 
        6px 6px 15px rgba(148, 163, 184, 0.3),
        -6px -6px 15px rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-case {
    background: #f1f5f9;
    color: #64748b;
    font-size: 14px;
    padding: 10px 20px;
    box-shadow: 
        inset 3px 3px 8px rgba(148, 163, 184, 0.2),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

.btn-case:hover {
    color: #3b82f6;
    box-shadow: 
        4px 4px 10px rgba(148, 163, 184, 0.3),
        -4px -4px 10px rgba(255, 255, 255, 0.9);
}

/* Typography */
.text-primary {
    color: #3b82f6;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.section__subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f1f5f9;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 
        0 8px 30px rgba(148, 163, 184, 0.3),
        0 -2px 10px rgba(255, 255, 255, 0.8);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1e293b;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        6px 6px 15px rgba(148, 163, 184, 0.4),
        -6px -6px 15px rgba(255, 255, 255, 1);
}

.logo-symbol {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #3b82f6;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav__link:hover {
    color: #3b82f6;
    background: #f1f5f9;
    box-shadow: 
        inset 3px 3px 8px rgba(148, 163, 184, 0.2),
        inset -3px -3px 8px rgba(255, 255, 255, 0.8);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #64748b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav__close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

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

.hero__title-card {
    background: #f1f5f9;
    padding: 1.75rem 2rem;
    border-radius: 25px;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
    margin-bottom: 2rem;
    display: inline-block;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        10px 10px 25px rgba(148, 163, 184, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.9);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.mockup-1 {
    z-index: 2;
    animation-delay: 0s;
}

.mockup-2 {
    display: none; /* Ocultar el segundo mockup para evitar el efecto de sombra */
}

.phone-mockup {
    width: 180px;
    height: 360px;
    background: #1e293b;
    border-radius: 25px;
    padding: 10px; /* Aumentar padding para mejor alineación */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px; /* Reducir para que quede dentro del borde */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.phone-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-logo-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration {
    position: absolute;
    background: #f1f5f9;
    border-radius: 50%;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.2),
        -8px -8px 20px rgba(255, 255, 255, 0.8);
}

.decoration-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.decoration-2 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.decoration-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

/* Websites Section - Más compacta */
.websites {
    padding: 0 0 20px;
    margin-top: -4rem;
}

.websites .section__header {
    margin-bottom: 0;
    margin-top: 0;
}

.websites .section__title {
    font-size: 1.8rem;
}

.websites .section__subtitle {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.websites .services__grid {
    max-width: 400px;
    margin: -2rem auto 1rem;
}

.websites .service-card {
    transform: scale(0.9);
    margin-top: 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title-card {
    background: #f1f5f9;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    box-shadow: 
        12px 12px 30px rgba(148, 163, 184, 0.3),
        -12px -12px 30px rgba(255, 255, 255, 0.9);
    display: inline-block;
    margin-bottom: 1rem;
}

.websites .section__title-card {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.2),
        -8px -8px 20px rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services {
    background: #f1f5f9;
    overflow: visible !important;
    position: relative;
}


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

.service-card__offer {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    text-align: center;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 25px;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 20px rgba(239, 68, 68, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 9999;
}

/* Solo para el banner de oferta en la tarjeta popular */
.service-card--popular .service-card__offer {
    left: 20px;
    transform: translateY(-50%);
}


.price-container {
    text-align: center;
    margin-bottom: 1rem;
}

.price-original {
    display: block;
    font-size: 1rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.addon-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #e0f2fe;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed #0284c7;
}

.addon-text {
    color: #0284c7;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card--website {
    background: #f1f5f9;
}

.services__disclaimer {
    text-align: center;
    margin-top: 8rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.3),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
}

/* Disclaimer específico para websites - mucho más compacto */
.websites .services__disclaimer {
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 1rem;
    font-size: 0.85rem;
}

.services__disclaimer p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Popular Badge for APP DUAL */
.service-card--popular {
    position: relative;
    border: 3px solid #3b82f6;
    box-shadow: 
        0 0 0 6px rgba(59, 130, 246, 0.1),
        20px 20px 50px rgba(59, 130, 246, 0.4),
        -20px -20px 50px rgba(255, 255, 255, 1);
    overflow: visible !important;
    transform: scale(1.02);
}

.service-card__badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 
        0 6px 16px rgba(59, 130, 246, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 40px 0 0;
        justify-items: center;
    }
    
    .service-card {
        margin: 40px auto 0;
        max-width: 350px;
        width: 100%;
    }
    
    .service-card__badge {
        top: -10px;
        right: -10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Ajustar disclaimer de apps en móvil */
    .services__disclaimer {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    /* Ajustar sección websites en móvil */
    .websites {
        margin-top: -2rem;
    }
    
    .websites .services__grid {
        padding: 20px 0 0;
    }
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    padding: 40px 0 0;
    overflow: visible !important;
    position: relative;
    justify-items: center;
}

.service-card {
    background: #f1f5f9;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        20px 20px 50px rgba(148, 163, 184, 0.5),
        -20px -20px 50px rgba(255, 255, 255, 0.9);
    position: relative;
    transition: all 0.3s ease;
    overflow: visible !important;
    margin-top: 40px;
    z-index: 1;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        20px 20px 50px rgba(148, 163, 184, 0.5),
        -20px -20px 50px rgba(255, 255, 255, 1);
}

.service-card--popular:hover {
    transform: translateY(-5px) scale(1.01);
}



.service-card__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
}

.price-circle {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.4),
        -8px -8px 20px rgba(255, 255, 255, 1);
}

.price {
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-card__description {
    color: #64748b;
    font-size: 0.9rem;
}

.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-bullet {
    width: 20px;
    height: 20px;
    background: #f1f5f9;
    border-radius: 50%;
    box-shadow: 
        inset 3px 3px 6px rgba(148, 163, 184, 0.25),
        inset -3px -3px 6px rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* Process Section */
.process {
    background: #ffffff;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.4),
        -8px -8px 20px rgba(255, 255, 255, 1);
}

.step-card {
    background: #f1f5f9;
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: 
        12px 12px 30px rgba(148, 163, 184, 0.3),
        -12px -12px 30px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        15px 15px 35px rgba(148, 163, 184, 0.4),
        -15px -15px 35px rgba(255, 255, 255, 1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b82f6;
    box-shadow: 
        inset 6px 6px 12px rgba(148, 163, 184, 0.25),
        inset -6px -6px 12px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #64748b;
    line-height: 1.4;
    font-size: 0.9rem;
}

.timeline-connector {
    display: none;
}

/* Portfolio Section */
.portfolio {
    background: #f1f5f9;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-case {
    background: #f1f5f9;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.portfolio-case:hover {
    transform: translateY(-5px);
    box-shadow: 
        20px 20px 50px rgba(148, 163, 184, 0.5),
        -20px -20px 50px rgba(255, 255, 255, 1);
}

.case-mockups {
    padding: 2rem;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.case-phone {
    width: 120px;
    height: 240px;
    background: #1e293b;
    border-radius: 20px;
    padding: 6px;
    box-shadow: 
        8px 8px 20px rgba(30, 41, 59, 0.3),
        -8px -8px 20px rgba(255, 255, 255, 0.8);
}

.case-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
}

.case-content {
    padding: 2rem;
}

.case-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.case-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.case-stat {
    text-align: center;
}

.case-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.case-stat .stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* Benefits Section */
.benefits {
    background: #f1f5f9;
    padding: 5rem 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: #f1f5f9;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        18px 18px 45px rgba(148, 163, 184, 0.5),
        -18px -18px 45px rgba(255, 255, 255, 1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    box-shadow: 
        inset 8px 8px 16px rgba(148, 163, 184, 0.25),
        inset -8px -8px 16px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
    color: #1d4ed8;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-stat {
    background: #ffffff;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.2),
        -8px -8px 20px rgba(255, 255, 255, 0.8);
    text-align: center;
}

.benefit-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.benefit-stat .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.mobile-stats {
    margin-top: 3rem;
}

.stats-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
}

.stats-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    line-height: 1.3;
}

/* Custom Development Section */
.custom-development {
    background: #ffffff;
    padding: 5rem 0;
}

.custom-dev__content {
    text-align: center;
}

.custom-dev__badge {
    display: inline-block;
    background: #f1f5f9;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.3),
        -8px -8px 20px rgba(255, 255, 255, 0.9);
}

.custom-dev__subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 500;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-3px);
}

.custom-card {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.comparison-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-icon.positive {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 
        6px 6px 15px rgba(59, 130, 246, 0.4),
        -6px -6px 15px rgba(255, 255, 255, 0.8);
}

.comparison-icon.negative {
    background: #f1f5f9;
    color: #ef4444;
    box-shadow: 
        inset 4px 4px 8px rgba(148, 163, 184, 0.25),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.comparison-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.item-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.item-icon.positive {
    background: #10b981;
    color: #ffffff;
}

.item-icon.negative {
    background: #ef4444;
    color: #ffffff;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 
        10px 10px 25px rgba(148, 163, 184, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        12px 12px 30px rgba(148, 163, 184, 0.4),
        -12px -12px 30px rgba(255, 255, 255, 1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    box-shadow: 
        inset 4px 4px 8px rgba(148, 163, 184, 0.25),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Technology Section */
.technology {
    background: #ffffff;
}

.tech__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tech-item {
    text-align: center;
    position: relative;
    cursor: pointer;
}

.tech-circle {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.4),
        -8px -8px 20px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.tech-circle:hover {
    transform: translateY(-3px);
    box-shadow: 
        10px 10px 25px rgba(148, 163, 184, 0.5),
        -10px -10px 25px rgba(255, 255, 255, 1);
}

.tech-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
}

/* About Section */
.about {
    background: #f1f5f9;
}

.about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about__main-card {
    background: #f1f5f9;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
}

.about__main-card .section__title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about__description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.value-card {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 
        10px 10px 25px rgba(148, 163, 184, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        12px 12px 30px rgba(148, 163, 184, 0.4),
        -12px -12px 30px rgba(255, 255, 255, 1);
}

.value-icon {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
    box-shadow: 
        inset 4px 4px 8px rgba(148, 163, 184, 0.25),
        inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.value-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.value-description {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
}

.testimonials__carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background: #f1f5f9;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 2rem;
}

.quote-mark {
    font-size: 3rem;
    color: #3b82f6;
    line-height: 1;
    opacity: 0.7;
}

.quote-mark--end {
    float: right;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #1e293b;
    line-height: 1.6;
    font-style: italic;
    margin: 1rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 
        6px 6px 15px rgba(148, 163, 184, 0.4),
        -6px -6px 15px rgba(255, 255, 255, 1);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #64748b;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 
        6px 6px 15px rgba(148, 163, 184, 0.4),
        -6px -6px 15px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    position: relative;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.carousel-btn--prev::before {
    border-width: 6px 8px 6px 0;
    border-color: transparent #64748b transparent transparent;
    transform: translate(-40%, -50%);
}

.carousel-btn--next::before {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #64748b;
    transform: translate(-60%, -50%);
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.5),
        -8px -8px 20px rgba(255, 255, 255, 1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 
        inset 3px 3px 6px rgba(148, 163, 184, 0.25),
        inset -3px -3px 6px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #3b82f6;
    box-shadow: 
        3px 3px 8px rgba(59, 130, 246, 0.4),
        -3px -3px 8px rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq {
    background: white;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f1f5f9;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    box-shadow: 
        12px 12px 30px rgba(148, 163, 184, 0.3),
        -12px -12px 30px rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 
        inset 8px 8px 20px rgba(148, 163, 184, 0.2),
        inset -8px -8px 20px rgba(255, 255, 255, 0.8);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        4px 4px 10px rgba(148, 163, 184, 0.3),
        -4px -4px 10px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    box-shadow: 
        inset 3px 3px 8px rgba(148, 163, 184, 0.25),
        inset -3px -3px 8px rgba(255, 255, 255, 0.9);
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
    opacity: 1;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease 0.1s;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    background: #ffffff;
}

.contact__options {
    text-align: center;
    margin-bottom: 2rem;
}

.options__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contact__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        10px 10px 25px rgba(37, 211, 102, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 
        12px 12px 30px rgba(37, 211, 102, 0.4),
        -12px -12px 30px rgba(255, 255, 255, 0.9);
}

.btn-form-toggle {
    background: #f1f5f9;
    color: #1e293b;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        10px 10px 25px rgba(148, 163, 184, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.btn-form-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 
        12px 12px 30px rgba(148, 163, 184, 0.4),
        -12px -12px 30px rgba(255, 255, 255, 1);
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.contact-divider span {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    color: #64748b;
    font-weight: 500;
    box-shadow: 
        6px 6px 15px rgba(148, 163, 184, 0.3),
        -6px -6px 15px rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .contact__buttons {
        max-width: 300px;
    }
    
    .btn-whatsapp, .btn-form-toggle {
        padding: 1.25rem 1.5rem;
    }
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact__info .section__title {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact__description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.4),
        -8px -8px 20px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.detail-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.detail-content p {
    color: #64748b;
    margin: 0;
}

.contact__form-container {
    background: #f1f5f9;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        15px 15px 40px rgba(148, 163, 184, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1);
}

.form__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.form__group {
    position: relative;
    margin-bottom: 2rem;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f1f5f9;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    color: #1e293b;
    box-shadow: 
        inset 6px 6px 15px rgba(148, 163, 184, 0.25),
        inset -6px -6px 15px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    box-shadow: 
        8px 8px 20px rgba(148, 163, 184, 0.3),
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        inset 0 0 0 2px #3b82f6;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__label {
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    color: #64748b;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.form__label--select {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.85rem;
    color: #3b82f6;
    background: #f1f5f9;
    padding: 0 0.5rem;
}

.form__input:focus + .form__label,
.form__input:valid + .form__label,
.form__textarea:focus + .form__label,
.form__textarea:valid + .form__label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.85rem;
    color: #3b82f6;
    background: #f1f5f9;
    padding: 0 0.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        10px 10px 25px rgba(59, 130, 246, 0.3),
        -10px -10px 25px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        12px 12px 30px rgba(59, 130, 246, 0.4),
        -12px -12px 30px rgba(255, 255, 255, 0.9);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 
        inset 6px 6px 15px rgba(30, 64, 175, 0.3),
        inset -6px -6px 15px rgba(96, 165, 250, 0.3);
}

.btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

/* Footer */
.footer {
    background: #1e293b;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    background: transparent;
    padding: 0;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer__logo .logo-circle {
    background: #2d3748;
    box-shadow: 
        4px 4px 10px rgba(0, 0, 0, 0.2),
        -4px -4px 10px rgba(255, 255, 255, 0.05);
}

.footer__logo .logo-text {
    color: #ffffff;
}

.footer__description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__section {
    background: transparent;
    padding: 0;
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer__link:hover {
    color: #3b82f6;
}

.footer__social .social__links {
    display: flex;
    gap: 1rem;
}

.social__link {
    text-decoration: none;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 
        4px 4px 10px rgba(0, 0, 0, 0.2),
        -4px -4px 10px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-2px);
    background: #3b82f6;
    box-shadow: 
        6px 6px 15px rgba(0, 0, 0, 0.3),
        -6px -6px 15px rgba(255, 255, 255, 0.1);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .benefits__grid {
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .stats-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #f1f5f9;
        box-shadow: 
            -10px 0 30px rgba(148, 163, 184, 0.3);
        padding: 4rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__link {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__close {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .process__timeline {
        grid-template-columns: 1fr;
    }
    
    .portfolio__grid {
        grid-template-columns: 1fr;
    }
    
    .tech__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .about__values {
        gap: 1rem;
    }
    
    .carousel-navigation {
        gap: 1rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }
    
    .hero__title-card {
        padding: 1.5rem;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .contact__form-container {
        padding: 2rem;
    }
    
    .tech__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}