/* ═══════════════════════════════════════════════════════════════════
   WEBIKO SOFTWARE SERVICES - PREMIUM PROFESSIONAL DESIGN
   Version: 3.0 Premium Edition
   Theme: Corporate Blue (Professional & Customer-Attractive)
   ═══════════════════════════════════════════════════════════════════ */

/* ===== PREMIUM COLOR SYSTEM ===== */
:root {
    /* Primary Colors - Corporate Blue Theme */
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --primary-rgb: 30, 64, 175;

    /* Secondary Colors */
    --secondary: #0891b2;
    --secondary-light: #06b6d4;
    --secondary-dark: #0e7490;

    /* Accent Colors */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 50%, #dbeafe 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);

    /* Premium Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-primary: 0 10px 25px -5px rgba(30, 64, 175, 0.3);
    --shadow-secondary: 0 10px 25px -5px rgba(8, 145, 178, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.loader-logo i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 2s ease-in-out;
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    width: 0;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1 !important;
}

[data-aos="fade-up"].aos-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-aos="fade-down"].aos-animate {
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-aos="fade-left"].aos-animate {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-aos="fade-right"].aos-animate {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-aos="zoom-in"].aos-animate {
    animation: zoomIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.navbar .logo i {
    font-size: 2.2rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(30, 64, 175, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar .logo-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.navbar .logo-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-primary);
    border: 2px solid transparent;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
}

.btn-nav i {
    transition: var(--transition-fast);
}

.btn-nav:hover i {
    transform: translateX(5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.3) 0%, transparent 70%);
    top: -15%;
    left: -15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.3) 0%, transparent 70%);
    top: 40%;
    right: -10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    bottom: -25%;
    left: 25%;
    animation-delay: 14s;
}

#particlesCanvas {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-text {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    border: 2px solid rgba(30, 64, 175, 0.2);
    transition: var(--transition-normal);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-badge i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.typing-text {
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.3rem 2.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
}

.btn i {
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(4px);
}

/* ===== HERO STATS - PREMIUM ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2rem 1.8rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-normal);
    border: 2px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-primary);
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.trusted-by {
    text-align: center;
    margin-top: 3.5rem;
}

.trusted-by p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.trust-badge:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.trust-badge i {
    font-size: 2.2rem;
    color: var(--primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    z-index: 3;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
}

.mouse {
    width: 32px;
    height: 52px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    margin: 0 auto 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 32px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 0.8rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    border: 2px solid rgba(30, 64, 175, 0.2);
    transition: var(--transition-normal);
}

.section-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-tag i {
    font-size: 1.1rem;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.section-description {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2.5rem;
}

.service-card-modern {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid rgba(30, 64, 175, 0.08);
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-inner {
    padding: 3rem;
    position: relative;
}

.service-number {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(30, 64, 175, 0.05);
    transition: var(--transition-normal);
}

.service-card-modern:hover .service-number {
    color: rgba(30, 64, 175, 0.1);
    transform: scale(1.1);
}

.service-icon-modern {
    width: 85px;
    height: 85px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-primary);
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
}

.service-icon-modern i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card-modern:hover .icon-bg {
    opacity: 1;
    transform: rotate(180deg);
}

.service-card-modern h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.service-card-modern p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.service-features i {
    color: var(--success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1.05rem;
}

.service-link:hover {
    gap: 1.2rem;
    color: var(--primary-light);
}

.service-link i {
    transition: var(--transition-fast);
}

/* ===== TECH STACK SECTION ===== */
.tech-stack {
    background: white;
}

.tech-slider-container {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid rgba(30, 64, 175, 0.08);
}

.tech-tabs {
    display: flex;
    border-bottom: 3px solid var(--bg-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tech-tab {
    flex: 1;
    min-width: 150px;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
}

.tech-tab::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.tech-tab:hover,
.tech-tab.active {
    color: var(--primary);
    background: rgba(30, 64, 175, 0.05);
}

.tech-tab.active::after {
    transform: scaleX(1);
}

.tech-tab i {
    font-size: 1.2rem;
}

.tech-tab span {
    display: inline;
}

.tech-content {
    padding: 3.5rem;
}

.tech-panel {
    display: none;
}

.tech-panel.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
}

.tech-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.tech-card-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-primary);
}

.tech-card:hover .tech-card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.tech-card-icon i {
    font-size: 2.8rem;
    color: white;
}

.tech-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.tech-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.tech-rating {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.star {
    width: 14px;
    height: 14px;
    background: var(--bg-gray);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.active {
    background: var(--accent);
}

/* ===== PORTFOLIO/PROCESS SECTION ===== */
.portfolio {
    background: var(--bg-light);
}

.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 90px;
    width: 3px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 15px rgba(30, 64, 175, 0.1);
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 0 20px rgba(30, 64, 175, 0.15);
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-content {
    background: white;
    padding: 3.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-normal);
    border: 2px solid rgba(30, 64, 175, 0.08);
}

.timeline-content:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.timeline-number {
    position: absolute;
    top: -15px;
    right: 40px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(30, 64, 175, 0.05);
    z-index: 0;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.timeline-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-features li {
    background: var(--bg-light);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    border: 2px solid rgba(30, 64, 175, 0.1);
    transition: var(--transition-normal);
}

.timeline-features li:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: white;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-premium {
    min-width: 100%;
    background: white;
    padding: 4.5rem 4rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(30, 64, 175, 0.08);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.quote-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.quote-icon i {
    font-size: 1.8rem;
    color: white;
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
}

.rating-stars i {
    color: var(--accent);
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-avatar-premium {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.author-avatar-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-premium h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.author-info-premium p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.company-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.testimonial-prev,
.testimonial-next {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1.4rem;
    box-shadow: var(--shadow-primary);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.testimonial-dots {
    display: flex;
    gap: 1.2rem;
}

.dot {
    width: 14px;
    height: 14px;
    background: var(--bg-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background: var(--primary);
    width: 45px;
    border-radius: 10px;
}

.overall-rating-card {
    background: white;
    padding: 3.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    margin-top: 4.5rem;
    border: 2px solid rgba(30, 64, 175, 0.08);
}

.rating-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

.rating-score-large {
    text-align: center;
}

.score {
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.rating-stars-large {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.5rem 0;
}

.rating-stars-large i {
    color: var(--accent);
    font-size: 2rem;
}

.rating-score-large p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 600;
}

.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-bar {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 2rem;
    align-items: center;
}

.stat-bar span:first-child {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.bar {
    height: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: fillBar 1.5s ease forwards;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.stat-bar span:last-child {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-overlay);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-icon i {
    font-size: 3.5rem;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1.8rem;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 3.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.trust-item i {
    font-size: 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 2rem;
    transition: var(--transition-normal);
    border: 2px solid rgba(30, 64, 175, 0.08);
}

.contact-info-card:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-secondary);
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.contact-info-content a:hover {
    color: var(--primary);
}

.hours {
    font-size: 0.95rem !important;
    font-style: italic;
}

.social-links-premium {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-link-premium {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.social-link-premium:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.contact-form-premium {
    background: white;
    padding: 4rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(30, 64, 175, 0.08);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-premium {
    margin-bottom: 2rem;
}

.form-group-premium label {
    display: block;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1.3rem 1.5rem 1.3rem 4rem;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    font-family: inherit;
    transition: var(--transition-normal);
    background: var(--bg-light);
    color: var(--text-primary);
    font-weight: 500;
}

.input-wrapper textarea {
    resize: vertical;
    padding-top: 1.3rem;
    min-height: 150px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.input-wrapper input:focus~i,
.input-wrapper select:focus~i,
.input-wrapper textarea:focus~i {
    color: var(--primary);
}

.btn-submit-premium {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 1.15rem;
}

.form-message-premium {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 700;
    display: none;
    font-size: 1.05rem;
}

.form-message-premium.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 2px solid var(--success);
    display: block;
}

.form-message-premium.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 2px solid var(--danger);
    display: block;
}

.form-privacy {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.form-privacy i {
    color: var(--success);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding-top: 0;
    position: relative;
}

.footer-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

.footer-wave svg path {
    fill: var(--bg-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4.5rem;
    padding: 5rem 0 3.5rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo i {
    font-size: 2.8rem;
    color: var(--primary-light);
}

.footer .logo-name {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    display: block;
}

.footer .logo-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 600;
}

.footer-about p {
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: #94a3b8;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-normal);
    font-size: 1.3rem;
}

.footer-social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-col ul li a i {
    font-size: 0.75rem;
    color: var(--primary-light);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 10px;
}

.footer-contact li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 4px;
    font-size: 1.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.separator {
    color: #475569;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.5);
}

.scroll-top.active {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 35px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    z-index: 998;
    animation: pulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        font-size: 15px;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-wrapper,
    .rating-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item::before {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-2xl);
        padding: 2.5rem 0;
        gap: 2rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .stat-card {
        padding: 1.8rem 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 0.85rem;
    }

    .mouse {
        width: 28px;
        height: 45px;
    }

    section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-tabs {
        flex-wrap: wrap;
    }

    .tech-tab {
        min-width: 120px;
        padding: 1.2rem 1.5rem;
    }

    .tech-tab span {
        display: none;
    }

    .tech-content {
        padding: 2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-premium {
        padding: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }

    .cta-trust {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-card-premium {
        padding: 2.5rem 2rem;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .rating-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .scroll-top,
    .whatsapp-float {
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float {
        bottom: 90px;
    }

    .stat-card {
        flex-direction: row;
        gap: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar,
    .scroll-top,
    .whatsapp-float,
    .hero-buttons,
    .cta-section {
        display: none !important;
    }

    body {
        color: black;
        background: white;
    }
}