﻿/* ZANGER01.KZ - Premium Design with Mobile Animations */

:root {
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --accent-green: #059669;
    --accent-purple: #7C3AED;
    --accent-orange: #EA580C;
    --accent-teal: #0D9488;
    --accent-pink: #DB2777;

    --bg-body: #FAFBFC;
    --bg-surface: #FFFFFF;

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;

    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --section-gap: 40px;
    --container-max: 1280px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 999px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ==================== UNIVERSAL ANIMATIONS ==================== */
/* These work on ALL devices including mobile and tablet */

@keyframes fadeInUp {
    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 fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25px, -25px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Scroll-triggered animations - BEAUTIFUL REVEAL EFFECT */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Instant animation fallback for page load */
.animate-on-scroll.instant {
    animation: revealBlur 0.8s ease-out forwards;
}

@keyframes revealBlur {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Staggered delays for cards */
.process-card:nth-child(1),
.service-card:nth-child(1),
.review-card:nth-child(1) {
    animation-delay: 0.1s;
}

.process-card:nth-child(2),
.service-card:nth-child(2),
.review-card:nth-child(2) {
    animation-delay: 0.2s;
}

.process-card:nth-child(3),
.service-card:nth-child(3),
.review-card:nth-child(3) {
    animation-delay: 0.3s;
}

.process-card:nth-child(4),
.service-card:nth-child(4),
.review-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Background */
.bg-decoration {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: floatOrb 25s infinite ease-in-out;
}

.orb-1 {
    top: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #DBEAFE 0%, transparent 70%);
}

.orb-2 {
    bottom: 10%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #E0E7FF 0%, transparent 70%);
    animation-delay: -10s;
}

.orb-3 {
    top: 40%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #CCFBF1 0%, transparent 70%);
    animation-delay: -15s;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(250, 251, 252, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border-light);
    animation: fadeInUp 0.5s ease-out;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.06);
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transition: all 0.4s ease;
}

.logo:hover .logo-mark {
    transform: rotate(8deg) scale(1.05);
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    margin-left: 20px;
}

.lang-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--text-primary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: headerCtaPulse 3s ease-in-out infinite;
}

@keyframes headerCtaPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4),
            0 0 0 4px rgba(37, 99, 235, 0.1);
    }
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.header-cta:hover::before {
    width: 200px;
    height: 200px;
}

.header-cta:hover {
    background: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 16px;
    height: 16px;
}

/* ==================== HERO ==================== */
.hero {
    padding-top: 120px;
    padding-bottom: 10px;
    position: relative;
}

/* Neon Gradient Divider */
.neon-divider {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background: linear-gradient(90deg,
            transparent 0%,
            #3B82F6 15%,
            #60A5FA 30%,
            #A78BFA 50%,
            #60A5FA 70%,
            #3B82F6 85%,
            transparent 100%);
    background-size: 200% 100%;
    animation: neonShimmer 3s linear infinite;
    border-radius: 4px;
    box-shadow:
        0 0 10px rgba(59, 130, 246, 0.5),
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 40px rgba(167, 139, 250, 0.2);
}

@keyframes neonShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 15px;
}

.hero-main {
    animation: fadeInLeft 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== BUTTONS - ENHANCED HOVER ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Shine effect on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
}

.btn:hover::before {
    animation: shine 0.6s ease;
}

/* Icon animation */
.btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
    padding: 16px 32px;
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: linear-gradient(135deg, #EFF6FF 0%, white 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-white {
    padding: 18px 36px;
    background: white;
    color: var(--text-primary);
    border: 2px solid white;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.btn-white:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-large {
    padding: 20px 44px;
    font-size: 1.1rem;
}

/* ==================== FLOATING CARDS - CLOSER TOGETHER ==================== */
.hero-cards {
    position: relative;
    height: 420px;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
    animation: floatCard 6s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CARDS POSITIONED CLOSER */
.card-1 {
    top: 20px;
    right: 40px;
    width: 220px;
}

.card-2 {
    top: 160px;
    left: 20px;
    width: 200px;
    animation-delay: -2s;
}

.card-3 {
    bottom: 60px;
    right: 80px;
    width: 200px;
    animation-delay: -4s;
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.06);
    border-color: var(--primary);
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.18), 0 0 0 4px rgba(37, 99, 235, 0.08);
    z-index: 10;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #EEF2FF 0%, #FFFFFF 100%);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:hover .card-icon {
    transform: scale(1.15) rotate(-8deg);
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
}

.card-icon.blue {
    background: linear-gradient(135deg, #DBEAFE 0%, #EFF6FF 100%);
    color: var(--primary);
}

.card-icon.green {
    background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
    color: var(--accent-green);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-body h4 {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.card-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==================== STATS ROW ==================== */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 36px 56px;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: scale(1.12) translateY(-4px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

/* ==================== SECTION STYLING ==================== */
.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ==================== SERVICES BENTO ==================== */
.services {
    padding: var(--section-gap) 0;
    background: white;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.service-card {
    background: var(--bg-body);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-purple) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    background: white;
    border-color: var(--primary-light);
}

.service-card.large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
    padding: 40px;
}

.service-card.tall {
    grid-row: span 2;
    background: linear-gradient(180deg, #ECFDF5 0%, #F0FDF4 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.12) rotate(6deg);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.service-icon-wrap.green {
    color: var(--accent-green);
}

.service-icon-wrap.purple {
    color: var(--accent-purple);
}

.service-icon-wrap.orange {
    color: var(--accent-orange);
}

.service-icon-wrap.teal {
    color: var(--accent-teal);
}

.service-icon-wrap.pink {
    color: var(--accent-pink);
}

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

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover {
    gap: 16px;
    color: var(--primary-dark);
}

.services-footer {
    text-align: center;
    margin-top: 48px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.services-footer a {
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.services-footer a:hover {
    text-decoration: underline;
}

/* ==================== PROCESS ==================== */
.process {
    padding: var(--section-gap) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-purple) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-light);
}

.process-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.8rem;
    font-weight: 900;
    color: #F1F5F9;
    line-height: 1;
}

.process-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #EEF2FF 0%, white 100%);
    border: 2px solid var(--border-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover .process-icon {
    transform: scale(1.12) rotate(-6deg);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.process-icon svg {
    width: 24px;
    height: 24px;
}

.process-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== ABOUT ==================== */
.about {
    padding: var(--section-gap) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    margin-top: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    padding-left: 12px;
    border-color: var(--primary);
    color: var(--primary);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #10B981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.about-card {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1E293B 100%);
    color: white;
    padding: 52px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.quote-mark {
    font-size: 7rem;
    font-weight: 900;
    opacity: 0.08;
    position: absolute;
    top: -10px;
    left: 30px;
    line-height: 1;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.45;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* ==================== REVIEWS ==================== */
.reviews {
    padding: var(--section-gap) 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-body);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    background: white;
    border-color: var(--border-medium);
}

.review-stars {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.review-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.author-city {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ==================== CTA ==================== */
.cta {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 72px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(37, 99, 235, 0.35);
    transition: all 0.5s ease;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(37, 99, 235, 0.4);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 36px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 100px 0 50px;
    background: linear-gradient(180deg, var(--bg-body) 0%, #E0E7FF 50%, #EEF2FF 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary) 20%,
            var(--accent-purple) 50%,
            var(--primary) 80%,
            transparent 100%);
    background-size: 200% 100%;
    animation: shimmerBorder 3s linear infinite;
}

@keyframes shimmerBorder {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Decorative floating orbs */
.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Brand section with animation */
.footer-brand {
    animation: fadeInLeft 0.8s ease-out;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(90deg, var(--text-secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Navigation links with stagger animation */
.footer-links {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-links a {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Premium WhatsApp button with glow */
.footer-contact {
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(37, 99, 235, 0.4),
        0 0 0 0 rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 8px 32px rgba(37, 99, 235, 0.4),
            0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow:
            0 12px 40px rgba(37, 99, 235, 0.5),
            0 0 0 8px rgba(37, 99, 235, 0.1);
    }
}

/* Shine effect */
.footer-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.footer-whatsapp:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 16px 48px rgba(37, 99, 235, 0.5),
        0 0 0 4px rgba(37, 99, 235, 0.2);
    animation: none;
}

.footer-whatsapp svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.4s ease;
}

.footer-whatsapp:hover svg {
    transform: rotate(10deg) scale(1.1);
}

/* Footer bottom with animated border */
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-bottom p {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ==================== RESPONSIVE - WITH ANIMATIONS ==================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-main {
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    /* Show simplified cards on tablet */
    .hero-cards {
        display: flex;
        justify-content: center;
        gap: 16px;
        height: auto;
        flex-wrap: wrap;
    }

    .floating-card {
        position: static;
        animation: fadeInUp 0.6s ease-out both;
    }

    .card-1 {
        animation-delay: 0.1s;
        width: auto;
    }

    .card-2 {
        animation-delay: 0.2s;
        width: auto;
    }

    .card-3 {
        animation-delay: 0.3s;
        width: auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-bento {
        grid-template-columns: 1fr;
    }

    .service-card.large {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .service-card.tall {
        grid-row: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 32px;
        padding: 32px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta span:last-child {
        display: none;
    }

    /* Ensure animation works on mobile */
    .header-cta {
        animation: headerCtaPulse 3s ease-in-out infinite;
        padding: 10px 16px;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 8px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .hero-actions {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
        justify-content: center;
    }

    /* CARDS IN HORIZONTAL ROW ON MOBILE */
    .hero-cards {
        position: static;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
    }

    .floating-card {
        position: static;
        width: auto;
        min-width: 95px;
        flex-direction: column;
        padding: 12px 10px;
        gap: 6px;
        animation: none;
        flex-shrink: 0;
    }

    .floating-card .card-icon {
        width: 36px;
        height: 36px;
    }

    .floating-card .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .floating-card .card-body h4 {
        font-size: 0.85rem;
    }

    .floating-card .card-body p {
        font-size: 0.7rem;
    }

    /* Neon divider smaller on mobile */
    .neon-divider {
        margin: 12px 0;
        height: 2px;
    }

    /* Sections closer on mobile */
    .services,
    .process,
    .about,
    .reviews {
        padding: var(--section-gap) 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 24px;
    }

    /* Services bento on mobile */
    .services-bento {
        gap: 12px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .process-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
        margin-top: 24px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-divider {
        display: none;
    }

    .footer {
        padding: 60px 0 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        order: 1;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        order: 2;
    }

    .footer-links a {
        font-size: 0.95rem;
        padding: 6px 12px;
        background: rgba(37, 99, 235, 0.05);
        border-radius: var(--radius-full);
    }

    .footer-contact {
        order: 3;
        width: 100%;
    }

    .footer-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .cta-card {
        padding: 36px 20px;
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }

    .about-card {
        padding: 28px 20px;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    /* Touch-friendly states */
    .btn:active {
        transform: scale(0.96);
    }

    .service-card:active,
    .process-card:active,
    .review-card:active {
        transform: scale(0.98);
    }
}

/* Scroll Indicator - Clickable */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    cursor: pointer;
    text-decoration: none;
    animation: bounceDown 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: scale(1.1);
}

.scroll-indicator:hover span {
    color: var(--primary);
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* ==================== TABLET BREAKPOINT ==================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-cards {
        position: static;
        height: auto;
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .floating-card {
        position: static;
        transform: none;
        animation: none;
    }

    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.large,
    .service-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-indicator {
        margin-top: 25px;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
    }

    .scroll-indicator svg {
        width: 22px;
        height: 22px;
    }
}

/* ==================== MOBILE SCROLL INDICATOR ==================== */
@media (max-width: 768px) {
    .scroll-indicator {
        margin-top: 18px;
        gap: 4px;
    }

    .scroll-indicator span {
        font-size: 0.65rem;
    }

    .scroll-indicator svg {
        width: 20px;
        height: 20px;
    }

    .neon-divider {
        height: 2px;
        margin: 3px 0;
    }
}

/* ==================== SMALL MOBILE ==================== */
@media (max-width: 480px) {
    .scroll-indicator {
        margin-top: 12px;
        gap: 3px;
    }

    .scroll-indicator span {
        font-size: 0.6rem;
    }

    .scroll-indicator svg {
        width: 18px;
        height: 18px;
    }
}

/* ==================== FLOATING SMART SCROLL INDICATOR ==================== */
.floating-scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;

    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.4);

    text-decoration: none;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    animation: floatPulse 3s ease-in-out infinite;
}

.floating-scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.floating-scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.floating-scroll-indicator:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35),
        0 6px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-dark);
}

.floating-scroll-indicator .scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.floating-scroll-indicator svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25),
            0 4px 12px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4),
            0 6px 16px rgba(0, 0, 0, 0.15);
    }
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

/* Tablet floating indicator */
@media (max-width: 1024px) and (min-width: 769px) {
    .floating-scroll-indicator {
        bottom: 25px;
        padding: 10px 20px;
        gap: 5px;
    }

    .floating-scroll-indicator .scroll-text {
        font-size: 0.75rem;
    }

    .floating-scroll-indicator svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile floating indicator */
@media (max-width: 768px) {
    .floating-scroll-indicator {
        bottom: 20px;
        padding: 10px 18px;
        gap: 4px;
        border-radius: 40px;
    }

    .floating-scroll-indicator .scroll-text {
        font-size: 0.7rem;
    }

    .floating-scroll-indicator svg {
        width: 16px;
        height: 16px;
    }
}

/* Small mobile floating indicator */
@media (max-width: 480px) {
    .floating-scroll-indicator {
        bottom: 15px;
        padding: 8px 14px;
        gap: 3px;
        border-width: 1.5px;
    }

    .floating-scroll-indicator .scroll-text {
        font-size: 0.65rem;
    }

    .floating-scroll-indicator svg {
        width: 14px;
        height: 14px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-scroll-indicator {
        animation: none;
    }

    .floating-scroll-indicator svg {
        animation: none;
    }
}