/* Reset y Variables CSS */
:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --accent-color: #FF9500;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --background-primary: #FFFFFF;
    --background-secondary: #F5F5F7;
    --background-dark: #1D1D1F;
    --border-color: #D2D2D7;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1D1D1F 50%, #2D2D2F 100%);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    gap: 30px;
    list-style: none;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 15px 30px;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(10px);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
    opacity: 0.6;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 122, 255, 0.3), rgba(88, 86, 214, 0.3));
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite linear;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: -10s;
}

.element-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(90deg, #007AFF, #5856D6, #FF9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    animation: slideInUp 1s ease forwards 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: slideInUp 1s ease forwards 1s;
}







.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    padding: 15px;
    transition: var(--transition);
    border-radius: 50%;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    min-height: 48px;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--background-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Products Section */
.products {
    background: white;
}

.products-showcase {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-slider {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-card {
    scroll-snap-align: center;
    position: relative;
}

/* Mobile-first carousel visual cues */
.products-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 15px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to left, white, transparent);
}

/* Peek effect for next card */
.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 30px;
    height: 30px;
    background: rgba(74, 144, 226, 0.15);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

@keyframes swipeHint {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20%, 80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.product-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.product-indicator {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #5856D6);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-indicator.active {
    background: rgba(74, 144, 226, 0.1);
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.product-indicator.active::before {
    transform: scale(1);
}

.product-indicator:hover:not(.active) {
    background: rgba(74, 144, 226, 0.4);
    transform: scale(1.2);
}

.product-indicator:active {
    transform: scale(0.9);
}

/* Improved animation for touch devices */
@media (hover: none) {
    .product-indicator:hover:not(.active) {
        background: rgba(74, 144, 226, 0.2);
        transform: scale(1);
    }
    
    .product-indicator:active:not(.active) {
        background: rgba(74, 144, 226, 0.5);
        transform: scale(1.1);
    }
}

.product-card {
    width: calc(100% - 20px);
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
    margin: 0 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    box-sizing: border-box;
}

/* Base mobile-first styling - no special rules needed */

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

.product-mockup {
    width: 400px;
    height: 280px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.dental-interface,
.finance-interface {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dental-chart,
.dashboard-chart {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60%;
    height: 40%;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0.8;
}

.patient-info,
.transaction-list {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70%;
    height: 30%;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 8px;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.product-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 16px;
}

.checkmark {
    color: #34C759;
    font-weight: bold;
    font-size: 18px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Technologies Section */
.technologies {
    background: var(--background-secondary);
}

.tech-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tech-category h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.tech-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tech-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0.8;
}

/* Technology-specific icons */
.tech-icon.react::before {
    background: linear-gradient(135deg, #61DAFB, #21232A);
}

.tech-icon.nextjs::before {
    background: linear-gradient(135deg, #000000, #404040);
}

.tech-icon.vue::before {
    background: linear-gradient(135deg, #4FC08D, #35495E);
}

.tech-icon.typescript::before {
    background: linear-gradient(135deg, #3178C6, #235A97);
}

.tech-icon.tailwind::before {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.tech-icon.vite::before {
    background: linear-gradient(135deg, #646CFF, #BD34FE);
}

.tech-icon.nodejs::before {
    background: linear-gradient(135deg, #339933, #68A063);
}

.tech-icon.python::before {
    background: linear-gradient(135deg, #3776AB, #FFD43B);
}

.tech-icon.fastapi::before {
    background: linear-gradient(135deg, #009688, #00695C);
}

.tech-icon.golang::before {
    background: linear-gradient(135deg, #00ADD8, #007D9C);
}

.tech-icon.postgresql::before {
    background: linear-gradient(135deg, #336791, #255A7A);
}

.tech-icon.redis::before {
    background: linear-gradient(135deg, #DC382D, #B72C23);
}

.tech-icon.openai::before {
    background: linear-gradient(135deg, #412991, #00A67E);
}

.tech-icon.anthropic::before {
    background: linear-gradient(135deg, #CC785C, #D97757);
}

.tech-icon.tensorflow::before {
    background: linear-gradient(135deg, #FF6F00, #FF8F00);
}

.tech-icon.aws::before {
    background: linear-gradient(135deg, #FF9900, #EC7211);
}

.tech-icon.vercel::before {
    background: linear-gradient(135deg, #000000, #333333);
}

.tech-icon.docker::before {
    background: linear-gradient(135deg, #2496ED, #1D74B3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    user-select: none;
    animation: slideInRight 0.6s ease-out;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 60px;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    color: white;
    flex-shrink: 0;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    max-width: 0;
    overflow: hidden;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
    max-width: 200px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.8);
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: whatsappPulse 2s infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        padding: 12px 15px;
        border-radius: 50px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-tooltip {
        right: -10px;
        font-size: 13px;
    }
}

.tech-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* CTA Section */
.cta {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .logo-text {
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Touch and Mobile Optimizations */
@media (hover: none) {
    .service-card:hover,
    .tech-icon:hover {
        transform: none;
    }
}

/* ========================================
   RESPONSIVE BREAKPOINTS - MOBILE FIRST
   ======================================== */

/* Small Mobile Optimization (up to 480px) */
@media (max-width: 480px) {
    .product-indicators {
        margin: 30px 0 15px;
        padding: 12px 16px;
        gap: 6px;
    }
    
    .product-indicator {
        width: 8px;
        height: 8px;
    }
    
    .product-indicator.active {
        transform: scale(1.6);
    }
    
    
    .products-showcase {
        gap: 25px;
        padding: 15px 0;
    }
    
    .product-card {
        width: calc(100% - 10px);
        min-width: calc(100% - 10px);
        max-width: calc(100% - 10px);
        gap: 20px;
        padding: 20px 10px;
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .product-title {
        font-size: clamp(1.6rem, 4vw, 1.8rem);
        margin-bottom: 15px;
    }
    
    .product-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .product-mockup {
        width: min(280px, calc(100vw - 60px));
        height: 180px;
    }
}

.nav-menu.active {
    display: flex;
    transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -6px);
}

/* Tablet Styles (769px and up) */
@media (min-width: 769px) {
    /* Hide mobile carousel visual cues */
    .products-showcase::after {
        display: none;
    }
    
    .product-card::after {
        display: none;
    }
    
    /* Navigation Reset */
    .navbar .nav-menu {
        position: static;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0;
        gap: 40px;
        transform: none;
        transition: none;
        z-index: auto;
        display: flex;
    }
    
    .navbar .nav-menu.active {
        display: flex;
        transform: none;
    }
    
    .navbar .hamburger {
        display: none;
    }
    
    .navbar .nav-link {
        font-size: inherit;
        padding: 0;
        border-radius: 0;
        transition: var(--transition);
    }
    
    .navbar .nav-link:hover {
        background: transparent;
        transform: none;
    }
    
    /* Sections */
    section {
        padding: 80px 30px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 60px 30px;
        gap: 70px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    /* Tech Categories */
    .tech-categories {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: clamp(3.5rem, 6vw, 4.5rem);
    }
    
    .hero-text p {
        font-size: 1.3rem;
        max-width: 600px;
    }
    
    
    
    /* Product Cards */
    .product-card {
        width: calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
        padding: 50px 30px;
        gap: 50px;
    }
    
    .product-indicators {
        display: none;
    }
    
    .product-mockup {
        width: 400px;
        height: 300px;
    }
    
    /* Features */
    .feature-item span:first-child {
        font-size: 1.1rem;
    }
    
    .feature-item span:last-child {
        font-size: 1rem;
    }
}

/* Desktop Styles (1025px and up) */
@media (min-width: 1025px) {
    /* Sections */
    section {
        padding: 100px 40px;
    }
    
    .section-header {
        margin-bottom: 80px;
    }
    
    /* Hero Section - Grid Layout */
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
        align-items: center;
        max-width: 800px;
    }
    
    /* Services Grid */
    .services-grid {
        gap: 40px;
    }
    
    /* Tech Categories */
    .tech-categories {
        gap: 60px;
    }
    
    .hero-text {
        order: 1;
    }
    
    
    
    .hero-text h1 {
        font-size: clamp(4rem, 5vw, 5rem);
        margin-bottom: 30px;
    }
    
    .hero-text p {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    /* Product Cards - Grid Layout */
    .products-showcase {
        overflow: visible;
    }
    
    .products-showcase .product-slider {
        flex-direction: column;
        gap: 40px;
        transform: none;
    }
    
    .product-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 60px;
        text-align: left;
        border-radius: 20px;
        align-items: center;
        margin: 0;
    }
    
    .product-indicators {
        display: none;
    }
    
    .product-content {
        order: 1;
        padding: 0;
    }
    
    .product-visual {
        order: 2;
    }
    
    .product-mockup {
        width: 500px;
        height: 400px;
    }
    
    .product-title {
        font-size: clamp(2.5rem, 4vw, 3rem);
        text-align: left;
    }
    
    .product-description {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .product-actions {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    /* Features Grid */
    .feature-item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 15px;
        align-items: center;
        text-align: left;
    }
    
    .feature-item span:first-child {
        font-size: 1.2rem;
    }
    
    .feature-item span:last-child {
        font-size: 1rem;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .hero-content {
        gap: 100px;
        padding: 0 40px;
    }
    
    .product-card {
        gap: 80px;
        padding: 80px;
    }
    
    .product-mockup {
        width: 600px;
        height: 450px;
    }
    
    .hero-text h1 {
        font-size: 5.5rem;
    }
    
    .product-title {
        font-size: 3.2rem;
    }
}
