/* Innovexa — Professional corporate theme (UI design) */
:root {
    --bg: #edf2f9;
    --bg-section: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.8);
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.06);
    --accent: #06b6d4;
    --text: #1e293b;
    --text-muted: #5e718d;
    --border: rgba(255, 255, 255, 0.65);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 8px 32px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.01);
    --nav-h: 72px;
}

body {
    background: var(--bg);
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    background:
        radial-gradient(ellipse 90% 60% at 10% -10%, rgba(37, 99, 235, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(6, 182, 212, 0.06), transparent 45%);
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif; letter-spacing: -0.02em; }

/* Header */
.site-header {
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.logo-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.35));
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo-wrap:hover .logo-svg {
    transform: scale(1.1) rotate(5deg);
}
.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0f172a;
    text-transform: uppercase;
}
.site-footer .logo-title {
    color: #ffffff !important;
}
.logo-accent {
    color: var(--primary);
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.15rem;
    display: block;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding-top: 0.15rem;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.nav-links a.active { color: var(--primary); }
.btn-primary {
    background: var(--primary);
    border-radius: 8px;
    padding: 0.65rem 1.35rem;
    font-size: 0.875rem;
    box-shadow: 0 2px 12px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
    border-radius: 8px;
    border-color: rgba(148, 163, 184, 0.35);
    padding: 0.65rem 1.35rem;
    font-size: 0.875rem;
}

/* Hero */
.hero {
    min-height: calc(100vh - var(--nav-h));
    padding: 6.8rem 0 3.1rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 65% at 24% 35%, rgba(59, 130, 246, 0.06), transparent 58%),
        radial-gradient(ellipse 60% 60% at 78% 42%, rgba(37, 99, 235, 0.08), transparent 60%),
        #f4f7fc;
}
.hero::after {
    content: '';
    position: absolute;
    width: 52%;
    height: 56%;
    right: -18%;
    bottom: -16%;
    background:
        radial-gradient(circle at 28% 32%, rgba(34, 211, 238, 0.2), transparent 34%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.12), transparent 30%);
    filter: blur(12px);
    opacity: 0.85;
    pointer-events: none;
}
.hero .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    row-gap: 3.8rem;
}
.hero-content {
    padding-top: 1.2rem;
}
.hero-content h1 {
    max-width: 560px;
    font-size: clamp(2.45rem, 5vw, 4.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 1.35rem;
}
.hero-content p {
    max-width: 470px;
    margin-bottom: 2.1rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}
.text-highlight {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .btn {
    min-width: 146px;
    height: 52px;
}
.hero .btn-outline {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--text);
}
.hero .btn-outline:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: var(--primary);
}
.hero-visual {
    position: relative;
    isolation: isolate;
    min-height: 390px;
    animation: visualFloat 7s ease-in-out infinite;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    z-index: -1;
    animation: softPulse 5.5s ease-in-out infinite;
}
.hero-showcase {
    position: absolute;
    inset: 0;
    transform: perspective(950px) rotateX(58deg) rotateZ(-35deg);
    transform-style: preserve-3d;
}
.hero-showcase::before {
    content: '';
    position: absolute;
    inset: 12% 8% 4% 7%;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.15) 1px, transparent 1px),
        linear-gradient(0deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
    background-size: 34px 34px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 0 70px rgba(37, 99, 235, 0.08);
}
.circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 132, 255, 0.95), transparent);
    box-shadow: 0 0 18px rgba(0, 132, 255, 0.7);
    animation: circuitFlow 2.6s linear infinite;
}
.line-a { width: 230px; left: 26%; top: 34%; }
.line-b { width: 190px; left: 11%; top: 59%; animation-delay: 0.7s; }
.line-c { width: 170px; right: 9%; top: 49%; animation-delay: 1.2s; }
.iso-base,
.iso-screen,
.iso-chip {
    position: absolute;
    border: 1px solid rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.2));
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15), inset 0 0 20px rgba(37, 99, 235, 0.08);
}
.iso-base {
    width: 148px;
    height: 96px;
    left: 42%;
    top: 56%;
}
.iso-screen {
    width: 98px;
    height: 68px;
    left: 46%;
    top: 43%;
    transform: translateZ(22px);
}
.iso-chip {
    width: 62px;
    height: 34px;
}
.chip-a { left: 26%; top: 70%; }
.chip-b { right: 15%; top: 73%; }
.iso-cube {
    position: absolute;
    width: 54px;
    height: 54px;
    transform-style: preserve-3d;
    transform: translateZ(58px);
    animation: cubeFloat 4.4s ease-in-out infinite;
}
.iso-cube::before,
.iso-cube::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.iso-cube::after {
    transform: translate(12px, -12px);
    opacity: 0.68;
}
.cube-a { left: 26%; top: 37%; animation-delay: 0.1s; }
.cube-b { left: 48%; top: 20%; animation-delay: 0.6s; }
.cube-c { left: 62%; top: 42%; animation-delay: 1.1s; }
.cube-d { left: 74%; top: 28%; animation-delay: 1.6s; }
.cube-e { left: 43%; top: 52%; animation-delay: 2.1s; }
.hero-trusted {
    grid-column: 1 / -1;
    padding-top: 0;
    border-top: 0;
    text-align: center;
}
.hero-trusted p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0;
}
.hero-trusted .trusted-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.7;
    margin-top: 1rem;
    justify-content: center;
}
.hero-trusted .trusted-logos span {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1.02rem;
    letter-spacing: 0.02em;
}

@keyframes logoBlowing {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    33% { transform: translateY(-7px) translateX(4px) rotate(1.2deg); }
    66% { transform: translateY(3px) translateX(-3px) rotate(-1.2deg); }
}

/* Sections */
.section-alt {
    background-color: #f6f9fc;
    background-image: 
        radial-gradient(circle at 95% -10%, rgba(225, 235, 253, 1) 0%, rgba(246, 249, 252, 0) 35%),
        radial-gradient(ellipse at -10% 110%, rgba(220, 232, 250, 1) 0%, rgba(246, 249, 252, 0) 45%),
        url("data:image/svg+xml,%3Csvg width='144' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpattern id='dots' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='3' cy='3' r='2' fill='%23cbd5e1' opacity='0.6'/%3E%3C/pattern%3E%3Crect width='144' height='120' fill='url(%23dots)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='144' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpattern id='dots' width='24' height='24' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='3' cy='3' r='2' fill='%23cbd5e1' opacity='0.6'/%3E%3C/pattern%3E%3Crect width='144' height='120' fill='url(%23dots)'/%3E%3C/svg%3E");
    background-position: 
        0 0,
        0 0,
        20px 30px,
        calc(100% - 20px) calc(100% - 30px);
    background-size: 
        100% 100%,
        100% 100%,
        144px 120px,
        144px 120px;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section-alt::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219, 234, 254, 0.4) 0%, transparent 60%);
    bottom: -300px;
    left: -200px;
    pointer-events: none;
    z-index: -1;
}
.section-header .eyebrow {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    border: none;
    letter-spacing: 0.08em;
}

/* Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(var(--lift, 0));
}
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.15), transparent 42%);
    transform: translateX(-130%);
    transition: transform 0.75s ease;
    pointer-events: none;
}
.glass-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08), 0 2px 10px rgba(37, 99, 235, 0.02);
    --lift: -6px;
}
.glass-card:hover::before {
    transform: translateX(130%);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.glass-card:hover .service-icon { transform: translateY(-3px) scale(1.06); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.18); }
.icon-svg { width: 24px; height: 24px; stroke: var(--primary); }

/* Stats */
.stats-bar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(224, 235, 255, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.04), 0 2px 8px rgba(15, 23, 42, 0.01);
}
.stat-item .num { color: var(--primary); font-size: 2.5rem; }
.stat-item {
    position: relative;
}
.stat-item::after {
    content: '';
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: -0.55rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
}
.stats-bar.in-view .stat-item::after {
    animation: statUnderline 0.8s ease forwards;
}

/* Process timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 0.5rem;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.35;
    z-index: 0;
}
.process-step {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}
.process-step .step-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.process-step:hover .step-circle,
.process-step.in-view .step-circle {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: translateY(-5px) scale(1.04);
}
.process-step h4 { font-size: 0.9rem; }
.process-step p { font-size: 0.78rem; }

/* Tech */
.tech-grid {
    position: relative;
    isolation: isolate;
}
.tech-grid::before {
    content: '';
    position: absolute;
    inset: -1.25rem 8%;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(59, 130, 246, 0.12) 1px, transparent 1px),
        linear-gradient(0deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse at center, #000 12%, transparent 70%);
    opacity: 0.7;
    animation: techGridDrift 18s linear infinite;
}
.tech-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem !important;
    margin: 1.5rem;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.5s ease;
    animation: floatingLogos 8s ease-in-out infinite;
    transform-origin: center center;
}
.tech-pill img.tech-logo-img {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.08));
    transition: transform 0.3s ease;
}
.tech-pill:hover img.tech-logo-img {
    transform: scale(1.15) rotate(5deg);
}
.tech-pill span {
    display: block !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 0.75rem;
    transition: color 0.3s ease;
}
.tech-pill:hover span {
    color: var(--primary);
}

@keyframes floatingLogos {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(4deg); }
    50% { transform: translateY(10px) translateX(-10px) rotate(-2deg); }
    75% { transform: translateY(-15px) translateX(15px) rotate(3deg); }
}
.tech-pill:nth-child(1) { animation-delay: 0s; }
.tech-pill:nth-child(2) { animation-delay: 1.2s; }
.tech-pill:nth-child(3) { animation-delay: 2.4s; }
.tech-pill:nth-child(4) { animation-delay: 0.6s; }
.tech-pill:nth-child(5) { animation-delay: 1.8s; }
.tech-pill:nth-child(6) { animation-delay: 3s; }
.tech-pill:nth-child(7) { animation-delay: 0.9s; }
.tech-pill:nth-child(8) { animation-delay: 2.1s; }
.tech-pill:nth-child(9) { animation-delay: 3.3s; }
.tech-pill:nth-child(10) { animation-delay: 1.5s; }
.tech-pill:nth-child(11) { animation-delay: 2.7s; }
.tech-pill:nth-child(12) { animation-delay: 3.9s; }

.tech-pill:hover {
    transform: translateY(-8px) scale(1.06) !important;
    border-color: var(--primary-light) !important;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.1) !important;
    background: #ffffff !important;
    color: var(--primary);
}
.tech-pill i {
    font-size: 1.35rem;
    vertical-align: middle;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tech-pill:hover i {
    transform: scale(1.28) rotate(8deg);
}
.tech-logo-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.35s ease;
}
.tech-pill:hover .tech-logo-img {
    transform: scale(1.22) rotate(6deg);
}
.tech-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    border-radius: 8px;
    color: var(--accent);
    background: rgba(34, 211, 238, 0.1);
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.18);
    transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}
.tech-icon svg {
    width: 18px;
    height: 18px;
}
.tech-pill:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    background: rgba(37, 99, 235, 0.04);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-5px) scale(1.03);
}
.tech-pill:hover::before {
    opacity: 1;
}
.tech-pill:hover::after {
    transform: scaleX(1);
}
.tech-pill:hover .tech-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: rotate(-6deg) scale(1.08);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 235, 255, 0.7) 100%);
    border: 2px solid var(--primary) !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    transform: scale(1.02);
}
.pricing-card h3 { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; }

/* Testimonials */
.testimonial-card {
    border-left: 3px solid var(--primary);
}
.testimonial-card .quote::before {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

/* Careers list */
.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
}
.job-meta { font-size: 0.85rem; color: var(--text-muted); }
.job-type {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Contact home */
.contact-home {
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.contact-info-block {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), transparent);
    border-right: 1px solid var(--border);
}
.contact-info-block h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-form-block { padding: 2.5rem; }
.map-placeholder {
    height: 120px;
    margin-top: 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0891b2 100%);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.18) 45%, transparent 56%),
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.2), transparent 24%);
    transform: translateX(-95%);
    animation: ctaSweep 6s ease-in-out infinite;
}
.cta-banner > * {
    position: relative;
    z-index: 1;
}
.cta-banner h2, .cta-banner p { color: #fff; }
.cta-banner p { opacity: 0.9; }
.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.cta-banner .btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

/* Footer */
.site-footer {
    background: #070b14;
    margin-top: 0;
    padding: 5rem 0 2rem;
}
.footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a:hover { color: var(--primary); }

/* Page hero */
.page-hero {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid var(--border);
}

/* Link arrow */
.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.link-arrow:hover { gap: 0.55rem; }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }

.contact-grid-inner { display: grid; grid-template-columns: 1fr 1.2fr; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes visualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes circuitFlow {
    0% { opacity: 0.35; transform: translateX(-12px); }
    50% { opacity: 1; }
    100% { opacity: 0.35; transform: translateX(12px); }
}
@keyframes cubeFloat {
    0%, 100% { translate: 0 0; filter: brightness(1); }
    50% { translate: 0 -16px; filter: brightness(1.25); }
}
@keyframes softPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.04); }
}
@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}
@keyframes panelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}
@keyframes lineGrow {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}
@keyframes statusPulse {
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
@keyframes statUnderline {
    to { transform: scaleX(1); }
}
@keyframes ctaSweep {
    0%, 42% { transform: translateX(-95%); }
    70%, 100% { transform: translateX(95%); }
}
@keyframes techGridDrift {
    to { background-position: 108px 54px, 54px 108px; }
}
@keyframes techIdleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-7px) rotate(0.8deg); }
}

@media (max-width: 1024px) {
    .hero .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual {
        width: min(620px, 100%);
        margin: 0 auto;
    }
    .hero-trusted .trusted-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .process-timeline { flex-wrap: wrap; }
    .process-timeline::before { display: none; }
    .process-step { flex: 0 0 33.333%; margin-bottom: 1.5rem; }
    .contact-home .contact-grid-inner { grid-template-columns: 1fr; }
    .contact-info-block { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
    .hero {
        padding: 4.6rem 0 2.4rem;
    }
    .hero-content {
        padding-top: 0;
    }
    .hero-visual {
        min-height: 300px;
    }
    .hero-showcase {
        transform: perspective(800px) rotateX(58deg) rotateZ(-35deg) scale(0.78);
    }
    .hero-trusted .trusted-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .process-step { flex: 0 0 50%; }
    .job-card { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .hero-visual img,
    .glass-card {
        transform: none;
    }
}

/* Interactive 3-Step Wizard Form */
.wizard-container {
    width: 100%;
    margin-top: 1.5rem;
}
.wizard-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 320px;
    margin: 0 auto 3rem;
}
.wizard-progress::before {
    content: '';
    position: absolute;
    height: 3px;
    background: #e2e8f0;
    left: 10px;
    right: 10px;
    z-index: 0;
}
.progress-bar-fill {
    position: absolute;
    height: 3px;
    background: var(--primary);
    left: 10px;
    width: 0%;
    z-index: 1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-step-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    font-size: 0.95rem;
}
.progress-step-node.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}
.progress-step-node.completed {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.wizard-step {
    display: none;
    animation: stepFadeIn 0.5s ease forwards;
}
.wizard-step.active {
    display: block;
}

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

.wizard-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.wizard-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.wizard-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.wizard-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.wizard-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.wizard-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.2rem 1.2rem !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01) !important;
}
.wizard-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(37, 99, 235, 0.2) !important;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.05) !important;
}
.wizard-card.selected {
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1) !important;
}
.wizard-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}
.wizard-card.selected .wizard-card-icon {
    background: var(--primary);
    color: #ffffff;
}
.wizard-card-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
}

.wizard-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wizard-card.selected .wizard-card-badge {
    opacity: 1;
    transform: scale(1);
}

.wizard-sublabel {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.wizard-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.wizard-hint i {
    color: var(--primary-light);
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
}
.btn-prev {
    background: #f1f5f9;
    color: #475569;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.85rem 2rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    font-size: 0.95rem;
}
.btn-prev:hover {
    background: #e2e8f0;
}
.btn-next {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}
.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.25);
}

@media (max-width: 1024px) {
    .wizard-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .wizard-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .wizard-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .wizard-grid-2 { grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 480px) {
    .wizard-grid-4 { grid-template-columns: 1fr; }
    .wizard-grid-3 { grid-template-columns: 1fr; }
}
