/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-dark);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-size: 14px;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-cube {
    width: 40px;
    height: 40px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 10s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.cube-face.front {
    transform: translateZ(20px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(20px);
}

@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.3);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.3);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-price {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.price-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.price-badge i {
    font-size: 20px;
    color: #fbbf24;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.live-example {
    background: var(--bg-light);
    padding: 120px 0;
}

.example-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.example-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.example-info p {
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
}

.example-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.example-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .example-card {
        padding: 30px;
    }

    .example-link {
        width: 100%;
        justify-content: center;
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: floatCard 6s infinite ease-in-out;
}

.floating-card i {
    font-size: 32px;
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: 40px;
    animation-delay: -2s;
}

.card-3 {
    bottom: 80px;
    left: 60px;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-header {
    margin-bottom: 10px;
}

.mockup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-logo-square {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.mockup-logo-text {
    width: 40px;
    height: 8px;
    background: var(--text);
    border-radius: 2px;
    opacity: 0.6;
}

.mockup-nav-items {
    display: flex;
    gap: 4px;
}

.mockup-nav-dot {
    width: 5px;
    height: 5px;
    background: var(--text-light);
    border-radius: 50%;
    opacity: 0.5;
}

.mockup-cart {
    position: relative;
    font-size: 18px;
    opacity: 0.8;
}

.mockup-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: white;
    font-weight: 700;
    border: 2px solid white;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding: 2px;
}

.mockup-hero {
    padding: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.mockup-hero-title {
    height: 10px;
    width: 70%;
    background: var(--text);
    border-radius: 4px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.mockup-hero-subtitle {
    height: 7px;
    width: 85%;
    background: var(--text-light);
    border-radius: 3px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.mockup-hero-button {
    height: 20px;
    width: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.mockup-section-title {
    height: 6px;
    width: 40%;
    background: var(--text-light);
    border-radius: 3px;
    margin: 4px 0;
    opacity: 0.5;
}

.mockup-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mockup-product {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.mockup-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mockup-product-image {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mockup-product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.mockup-product-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mockup-product-sale {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mockup-product-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.mockup-product-name {
    height: 6px;
    width: 75%;
    background: var(--text);
    border-radius: 3px;
    opacity: 0.8;
}

.mockup-product-desc {
    height: 4px;
    width: 90%;
    background: var(--text-light);
    border-radius: 2px;
    opacity: 0.5;
}

.mockup-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
}

.mockup-product-price {
    height: 8px;
    width: 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    font-size: 0;
    box-shadow: 0 1px 3px rgba(99, 102, 241, 0.3);
    position: relative;
}

.mockup-product-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 6px;
    background: white;
    border-radius: 2px;
    opacity: 0.3;
}

.mockup-product-btn {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.4);
    cursor: pointer;
    position: relative;
}

.mockup-product-btn::before {
    content: '+';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

/* Responsive mockup */
@media (max-width: 968px) {
    .hero-mockup {
        width: 250px;
        height: 350px;
    }
    
    .mockup-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mockup-product-image {
        height: 45px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text);
}

.service-features i {
    color: var(--success);
    font-size: 14px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    overflow: hidden;
    padding: 15px;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
    opacity: 0.3;
}

/* Portfolio Mockups */
.portfolio-mockup {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.pm-logo {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background: white;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.pm-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pm-nav span {
    font-size: 7px;
    color: rgba(99, 102, 241, 0.8);
    font-weight: 500;
    padding: 2px 4px;
    white-space: nowrap;
}

.pm-nav-items {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pm-nav-items span {
    font-size: 7px;
    color: rgba(99, 102, 241, 0.8);
    font-weight: 500;
    padding: 2px 4px;
    white-space: nowrap;
}

.pm-cart {
    font-size: 14px;
    position: relative;
    color: rgba(99, 102, 241, 0.8);
}

.pm-cart span {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 6px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
}

/* Corporate Mockup */
.portfolio-corporate .pm-hero {
    padding: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 6px;
    margin-bottom: 8px;
    text-align: center;
}

.pm-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.pm-subtitle {
    font-size: 8px;
    color: rgba(99, 102, 241, 0.7);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pm-btn {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 600;
    margin-top: 4px;
}

.pm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.pm-feature {
    padding: 8px 4px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pm-feature-icon {
    font-size: 14px;
}

.pm-feature-title {
    font-size: 7px;
    color: var(--primary);
    font-weight: 600;
}

/* E-commerce Mockup */
.pm-hero-banner {
    height: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.pm-banner-text {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
}

.portfolio-ecommerce .pm-products {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-product {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.pm-product-img {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-badge {
    position: absolute;
    top: 2px;
    left: 2px;
    background: #10b981;
    color: white;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 6px;
    font-weight: 700;
}

.pm-sale {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: white;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 6px;
    font-weight: 700;
}

.pm-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pm-product-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.pm-product-price {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
}

.pm-product-btn {
    padding: 3px 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 4px;
    font-size: 6px;
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
    width: fit-content;
}

/* Restaurant Mockup */
.portfolio-restaurant .pm-hero-restaurant {
    height: 55px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.pm-dish {
    font-size: 24px;
}

.pm-hero-text {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
}

.pm-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.pm-menu-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    flex-shrink: 0;
}

.pm-menu-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pm-menu-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--text);
}

.pm-menu-price {
    font-size: 8px;
    font-weight: 700;
    color: var(--primary);
}

/* Education Mockup */
.portfolio-education .pm-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.pm-card {
    padding: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pm-card-icon {
    font-size: 16px;
    opacity: 0.8;
}

.pm-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pm-card-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pm-card-label {
    font-size: 7px;
    color: rgba(99, 102, 241, 0.7);
}

.pm-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pm-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--primary);
}

.pm-list-avatar {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: 700;
    flex-shrink: 0;
}

.pm-list-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pm-list-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--text);
}

.pm-list-course {
    font-size: 7px;
    color: rgba(99, 102, 241, 0.7);
}

/* Clinic Mockup */
.portfolio-clinic .pm-hero-clinic {
    padding: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
}

.pm-button {
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    font-size: 7px;
    color: white;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 4px;
}

.pm-calendar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-cal-header {
    font-size: 8px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.pm-cal-days {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.pm-cal-day {
    width: 22px;
    height: 22px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 600;
    color: rgba(99, 102, 241, 0.8);
}

.pm-cal-day.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    color: white;
}

/* Creative Portfolio Mockup */
.portfolio-creative .pm-hero-creative {
    padding: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 6px;
    margin-bottom: 8px;
    text-align: center;
}

.pm-creative-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.pm-creative-subtitle {
    font-size: 7px;
    color: rgba(99, 102, 241, 0.7);
}

.portfolio-creative .pm-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.pm-gallery-item {
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-gallery-label {
    font-size: 7px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    z-index: 1;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: white;
    font-size: 32px;
    text-decoration: none;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-light);
}

/* About */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-badge {
    margin-bottom: 16px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-skills {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.skill-item i {
    font-size: 32px;
    color: var(--primary);
}

.skill-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.about-visual {
    display: grid;
    gap: 20px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 16px;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.about-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-light);
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon.email {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-details p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-details span {
    font-size: 14px;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-note {
    text-align: center;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 14px;
}

.form-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    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-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.footer-whatsapp:hover {
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom i {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-visual {
        height: 300px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

