/* ===================================
   NOVIAPP AI SYSTEMS — DESIGN SYSTEM
   Apple-style Corporate Landing Page
   =================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --bg-primary: #09090b;
    --bg-secondary: #0f0f13;
    --bg-tertiary: #18181b;
    --bg-card: rgba(24, 24, 27, 0.6);
    --bg-card-hover: rgba(39, 39, 42, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-border: rgba(255, 255, 255, 0.06);

    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    --text-muted: #52525b;

    --accent-primary: #06b6d4;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #67e8f9;
    --accent-glow: rgba(6, 182, 212, 0.15);

    --gradient-primary: linear-gradient(135deg, #06b6d4, #8b5cf6);
    --gradient-secondary: linear-gradient(135deg, #22d3ee, #a78bfa);
    --gradient-text: linear-gradient(135deg, #22d3ee, #06b6d4, #8b5cf6);
    --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(34, 211, 238, 0.04) 0%, transparent 50%);

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(6, 182, 212, 0.3);

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-max: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(6, 182, 212, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(139, 92, 246, 0.08) 30%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, width 0.4s ease, height 0.4s ease, background 0.4s ease;
    opacity: 0;
    mix-blend-mode: screen;
}

body:hover .cursor-glow {
    opacity: 1;
}

.cursor-glow.neon-hover {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, rgba(139, 92, 246, 0.15) 35%, transparent 70%);
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled .logo-wide {
    height: 50px;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    z-index: 10;
}

.logo-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.logo-icon svg,
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-wide {
    width: auto;
    height: 70px;
    transition: var(--transition-base);
}

.logo-wide img {
    height: 100%;
    width: auto;
    animation: logoGlow 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.nav-logo:hover .logo-wide img {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.6)) brightness(1.15);
    animation-play-state: paused;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.5)) drop-shadow(0 0 25px rgba(139, 92, 246, 0.2));
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-base);
    cursor: pointer;
}

.lang-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
    color: var(--text-primary);
}

.lang-flag {
    font-size: 1rem;
}

.nav-cta {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-base);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    z-index: 10;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.mobile-link:hover {
    color: var(--text-primary);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -100px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -50px;
    left: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #06b6d4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 18s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.1);
    }

    66% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(0.9);
    }

    66% {
        transform: translate(-20px, 30px) scale(1.05);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.15;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-tertiary);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0;
    box-shadow: 0 0 6px var(--accent-primary), 0 0 12px rgba(6, 182, 212, 0.3);
}

.particle:nth-child(odd) {
    background: var(--accent-secondary);
    box-shadow: 0 0 6px var(--accent-secondary), 0 0 12px rgba(139, 92, 246, 0.3);
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0.5);
    }

    5% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
        transform: translateY(50vh) scale(1);
    }

    90% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.3);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-tertiary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary svg {
    transition: var(--transition-base);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-tertiary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--text-tertiary);
    border-radius: 3px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateY(8px);
    }
}

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    overflow: hidden;
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.trust-logos {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.trust-track {
    display: flex;
    gap: 60px;
    animation: trustScroll 30s linear infinite;
    width: max-content;
}

@keyframes trustScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trust-logo-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0.05em;
    opacity: 0.5;
    transition: var(--transition-base);
}

.trust-logo-item:hover {
    opacity: 1;
    color: var(--text-secondary);
}

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-slow);
}

.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-tertiary);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: white;
}

/* =====================
   PROJECTS SECTION
   ===================== */
.projects {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-slow);
}

.project-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.project-lg {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.project-visual {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.project-lg .project-visual {
    aspect-ratio: auto;
    min-height: 350px;
}

.project-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-techs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-techs span {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
}

/* Project Mockups */
.project-mockup {
    width: 85%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-slow);
}

.project-card:hover .project-mockup {
    transform: scale(1.02) translateY(-4px);
}

/* Project Screenshot Images */
.project-screenshot {
    width: 90%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition-slow);
}

.project-screenshot-phone {
    width: auto;
    height: 85%;
    max-width: 55%;
    object-fit: contain;
    border-radius: 20px;
}

.project-card:hover .project-screenshot {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.mockup-bar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-content {
    padding: 14px;
    display: flex;
    gap: 10px;
    min-height: 140px;
}

.mockup-sidebar {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.mockup-line.w60 {
    width: 60%;
}

.mockup-line.w80 {
    width: 80%;
}

.mockup-line.w40 {
    width: 40%;
}

.mockup-line.w70 {
    width: 70%;
}

.mockup-line.w50 {
    width: 50%;
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.2));
    clip-path: polygon(0 80%, 15% 60%, 30% 70%, 50% 30%, 70% 50%, 85% 20%, 100% 40%, 100% 100%, 0 100%);
}

.mockup-grid-mini {
    display: flex;
    gap: 6px;
}

.mockup-card-mini {
    flex: 1;
    height: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Phone Mockup */
.project-mockup-phone {
    width: 45%;
    max-width: 180px;
    border-radius: 20px;
    position: relative;
}

.phone-notch {
    width: 60%;
    height: 18px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
}

.phone-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 200px;
}

.chat-bubble {
    padding: 10px;
    border-radius: 12px;
    height: 24px;
    max-width: 80%;
}

.chat-left {
    background: rgba(255, 255, 255, 0.08);
    align-self: flex-start;
    width: 70%;
}

.chat-right {
    background: rgba(123, 47, 190, 0.3);
    align-self: flex-end;
    width: 60%;
}

.chat-bubble.short {
    width: 45%;
    height: 18px;
}

/* Fintech Mockup */
.mockup-fintech {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fintech-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.02em;
}

.fintech-graph {
    width: 100%;
    height: 40px;
}

.fintech-graph svg {
    width: 100%;
    height: 100%;
}

.fintech-cards {
    display: flex;
    gap: 8px;
    width: 100%;
}

.fintech-card-mini {
    flex: 1;
    height: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ERP Mockup */
.mockup-erp {
    flex-direction: column;
    gap: 4px;
}

.erp-row {
    display: flex;
    gap: 4px;
}

.erp-cell {
    flex: 1;
    height: 26px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
}

.erp-cell.highlight {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* E-Commerce Mockup */
.mockup-ecom {
    flex-direction: column;
    gap: 8px;
}

.ecom-hero-mini {
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.ecom-products {
    display: flex;
    gap: 6px;
}

.ecom-product {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* =====================
   CAPABILITIES SECTION
   ===================== */
.capabilities {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
    overflow: hidden;
}

.capabilities-orbit {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto 80px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.orbit-logo {
    width: 84px;
    height: 84px;
    animation: logoPulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: transform, filter;
}

.orbit-logo svg,
.orbit-logo img {
    width: 100%;
    height: 100%;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.2)) drop-shadow(0 0 25px rgba(6, 182, 212, 0.05));
    }

    50% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5)) drop-shadow(0 0 50px rgba(139, 92, 246, 0.2));
    }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    will-change: scale;
}

.orbit-ring-1 {
    width: 280px;
    height: 280px;
    animation: orbitSpin 40s linear infinite, gravityBreath1 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.orbit-ring-2 {
    width: 440px;
    height: 440px;
    animation: orbitSpin 60s linear infinite reverse, gravityBreath2 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes gravityBreath1 {

    0%,
    100% {
        scale: 1;
        border-color: rgba(255, 255, 255, 0.06);
    }

    50% {
        scale: 0.9;
        border-color: rgba(6, 182, 212, 0.18);
    }
}

@keyframes gravityBreath2 {

    0%,
    100% {
        scale: 1;
        border-color: rgba(255, 255, 255, 0.06);
    }

    50% {
        scale: 0.95;
        border-color: rgba(139, 92, 246, 0.12);
    }
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-medium);
    color: var(--text-secondary);
    white-space: nowrap;
    transform: rotate(var(--angle)) translateX(var(--orbit-radius, 140px)) rotate(calc(-1 * var(--angle)));
}

.orbit-ring-1 .orbit-item {
    --orbit-radius: 140px;
    animation: orbitCounterSpin 40s linear infinite;
}

.orbit-ring-2 .orbit-item {
    --orbit-radius: 220px;
    animation: orbitCounterSpin 60s linear infinite reverse;
}

@keyframes orbitCounterSpin {
    from {}

    to {}
}

.cap-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cap-feature {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-slow);
}

.cap-feature:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.cap-feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cap-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cap-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =====================
   PROCESS SECTION
   ===================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary), transparent);
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
}

.process-step:hover .step-number {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    transition: var(--transition-base);
}

.value:hover {
    border-color: var(--border-accent);
    background: var(--bg-card);
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.value span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* About Visual */
.about-visual {
    position: relative;
    height: 400px;
}

.about-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    cursor: default;
    white-space: nowrap;
}

.about-float-card:hover {
    border-color: var(--border-accent);
    transform: scale(1.05) !important;
    box-shadow: var(--shadow-glow);
}

.float-icon {
    font-size: 1.5rem;
}

.about-float-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-1 {
    top: 20px;
    left: 30px;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    top: 100px;
    right: 10px;
    animation: floatCard2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 120px;
    left: 10px;
    animation: floatCard3 8s ease-in-out infinite;
}

.card-4 {
    bottom: 30px;
    right: 40px;
    animation: floatCard4 6.5s ease-in-out infinite;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-14px) rotate(-2deg);
    }
}

@keyframes floatCard4 {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content .section-tag {
    margin-bottom: 20px;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-content .section-desc {
    text-align: left;
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-base);
    outline: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    margin-top: 4px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.service-card[data-delay="100"] {
    transition-delay: 0.1s;
}

.service-card[data-delay="200"] {
    transition-delay: 0.2s;
}

.service-card[data-delay="300"] {
    transition-delay: 0.3s;
}

.service-card[data-delay="400"] {
    transition-delay: 0.4s;
}

.service-card[data-delay="500"] {
    transition-delay: 0.5s;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cap-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .capabilities-orbit {
        width: 400px;
        height: 400px;
    }

    .orbit-ring-1 {
        width: 220px;
        height: 220px;
    }

    .orbit-ring-2 {
        width: 360px;
        height: 360px;
    }

    .orbit-ring-1 .orbit-item {
        --orbit-radius: 110px;
    }

    .orbit-ring-2 .orbit-item {
        --orbit-radius: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-lg {
        grid-column: 1;
        display: block;
    }

    .cap-features {
        grid-template-columns: 1fr;
    }

    .capabilities-orbit {
        width: 300px;
        height: 300px;
    }

    .orbit-ring-1 {
        width: 180px;
        height: 180px;
    }

    .orbit-ring-2 {
        width: 270px;
        height: 270px;
    }

    .orbit-ring-1 .orbit-item {
        --orbit-radius: 90px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .orbit-ring-2 .orbit-item {
        --orbit-radius: 135px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-step {
        gap: 20px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 0.85rem;
    }

    .process-line {
        left: 24px;
    }

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* =====================
   SMOOTH SCROLLING OFFSET
   ===================== */
section[id] {
    scroll-margin-top: 80px;
}

/* =====================
   SELECTION
   ===================== */
::selection {
    background: rgba(6, 182, 212, 0.3);
    color: white;
}

/* =====================
   SCROLLBAR
   ===================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* =====================
   FLOATING WHATSAPP BUTTON
   ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    animation: whatsappBounceIn 0.6s ease-out 2s both;
}

.whatsapp-float-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(6, 182, 212, 0.4));
    transition: all 0.3s ease;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover .whatsapp-float-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 30px rgba(6, 182, 212, 0.6));
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes whatsappBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(40px);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-icon {
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}