/* J22X Solutions — Professional Corporate Theme */

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F7FA;
    --bg-tertiary: #F8FAFC;
    --text-primary: #1A1A1A;
    --text-secondary: #2C2C2C;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --brand-blue: #0066FF;
    --brand-blue-light: #00AEEF;
    --brand-blue-dark: #0044BB;
    --brand-gradient: linear-gradient(135deg, #0044BB 0%, #0066FF 50%, #00AEEF 100%);
}

/* Ambient — very subtle on white */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.04;
}

.ambient-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--brand-blue), transparent 70%);
    top: -100px; right: -80px;
}

.ambient-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--brand-blue-light), transparent 70%);
    bottom: 10%; left: -100px;
}

/* Cards */
.pro-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pro-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
    transform: translateY(-2px);
}

/* Legacy alias */
.glass-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.glass-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
}

/* Gradient text — logo blue */
.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary button */
.btn-primary,
.btn-glow {
    background: var(--brand-gradient);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
}

.btn-primary:hover,
.btn-glow:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

.btn-outline {
    border: 1.5px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.btn-outline:hover,
.btn-outline-glow:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(0, 102, 255, 0.03);
}

.btn-outline-glow {
    border: 1.5px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

/* Navigation */
.nav-link {
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(0, 102, 255, 0.05);
}

.nav-link.active {
    color: var(--brand-blue);
    background: rgba(0, 102, 255, 0.08);
    font-weight: 600;
}

#main-header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

/* Footer */
.footer-link {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--brand-blue);
}

.social-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    color: var(--brand-blue);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.04);
}

.social-sidebar {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 50;
}

.social-sidebar a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffffcc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: var(--text-muted);
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.social-sidebar a:hover {
    transform: translateX(-2px);
    color: var(--brand-blue);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255,255,255,0.95);
}

@media (max-width: 1024px) {
    .social-sidebar { display: none; }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(120px, auto);
}

.bento-item {
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02), rgba(0, 174, 239, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover::before { opacity: 1; }

.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-8 { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }
.bento-row-2 { grid-row: span 2; }

@media (max-width: 1024px) {
    .bento-span-4, .bento-span-6, .bento-span-8 { grid-column: span 6; }
}
@media (max-width: 640px) {
    .bento-span-4, .bento-span-6, .bento-span-8, .bento-span-12 { grid-column: span 12; }
}

/* Hero */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: hero-mesh-drift 18s ease-in-out infinite;
}

.hero-mesh-1 {
    width: 520px;
    height: 520px;
    top: -18%;
    left: -12%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18), transparent 68%);
}

.hero-mesh-2 {
    width: 440px;
    height: 440px;
    top: 20%;
    right: -8%;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.14), transparent 68%);
    animation-delay: -6s;
}

.hero-mesh-3 {
    width: 360px;
    height: 360px;
    bottom: -10%;
    left: 35%;
    background: radial-gradient(circle, rgba(0, 68, 187, 0.1), transparent 68%);
    animation-delay: -12s;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    animation: hero-grid-shift 20s linear infinite;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-beam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.08), transparent);
    transform: translateX(-50%);
    animation: hero-beam-pulse 4s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3.5rem;
    }
}

.hero-animate {
    opacity: 0;
    transform: translateY(28px);
    animation: hero-fade-up 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(0.15s + var(--i, 0) * 0.12s);
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 102, 255, 0.15);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.6);
    animation: hero-pulse-dot 2s ease-in-out infinite;
}

.hero-badge-text {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.hero-badge-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
    animation: hero-shimmer 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-words-wrap {
    display: block;
    height: 1.15em;
    overflow: hidden;
    margin-top: 0.15em;
}

.hero-words {
    display: flex;
    flex-direction: column;
    animation: hero-word-cycle 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero-words > span {
    flex-shrink: 0;
    height: 1.15em;
    line-height: 1.15;
    background-size: 200% auto;
    animation: hero-gradient-shift 5s linear infinite;
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-btn-primary {
    position: relative;
}

.hero-btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--brand-gradient);
    opacity: 0;
    filter: blur(12px);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-btn-primary:hover::after {
    opacity: 0.45;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.06);
    color: var(--brand-blue);
    font-size: 0.75rem;
}

.hero-trust-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-color);
}

.hero-visual-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1200px;
    min-height: 380px;
    transition: transform 0.35s ease-out;
    transform-style: preserve-3d;
}

@media (min-width: 1024px) {
    .hero-visual-wrap {
        justify-content: flex-end;
        min-height: 460px;
    }
}

.hero-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 102, 255, 0.15);
    pointer-events: none;
}

.hero-nexus {
    position: relative;
    width: min(100%, 380px);
    height: min(100vw - 2rem, 380px);
    max-height: 420px;
    margin-inline: auto;
    animation: hero-nexus-float 7s ease-in-out infinite;
}

@media (min-width: 640px) {
    .hero-nexus {
        width: 420px;
        height: 420px;
    }
}

.hero-hex-bg {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(0, 102, 255, 0.06) 0%, transparent 65%),
        repeating-conic-gradient(from 0deg, rgba(0, 102, 255, 0.04) 0deg 30deg, transparent 30deg 60deg);
    mask-image: radial-gradient(circle, black 30%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 72%);
    animation: hero-hex-spin 40s linear infinite;
}

.hero-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 255, 0.18);
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0;
    animation: hero-wave-expand 4s ease-out infinite;
}

.hero-wave-1 { width: 100%; height: 100%; animation-delay: 0s; }
.hero-wave-2 { width: 100%; height: 100%; animation-delay: 1.3s; }
.hero-wave-3 { width: 100%; height: 100%; animation-delay: 2.6s; }

.hero-lane {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 255, 0.08);
    transform: translate(-50%, -50%);
}

.hero-lane-outer {
    width: 92%;
    height: 92%;
    animation: hero-orbit-cw 26s linear infinite;
}

.hero-lane-inner {
    width: 68%;
    height: 68%;
    border-style: dashed;
    border-color: rgba(0, 174, 239, 0.15);
    animation: hero-orbit-ccw 18s linear infinite;
}

.hero-node {
    position: absolute;
    inset: 0;
    transform: rotate(var(--angle));
}

.hero-node-chip {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 58px;
    padding: 0.5rem 0.625rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(0, 102, 255, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.1);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.hero-node-chip-1 {
    animation: hero-orbit-ccw 26s linear infinite;
}

.hero-node-chip-2 {
    animation: hero-orbit-cw 18s linear infinite;
}

.hero-node-chip i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    background: var(--brand-gradient);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.hero-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hero-core-aura {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2), transparent 70%);
    animation: hero-aura-pulse 3s ease-in-out infinite;
}

.hero-core-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 174, 239, 0.25);
}

.hero-core-ring-1 {
    inset: -28px;
    animation: hero-orbit-cw 12s linear infinite;
}

.hero-core-ring-2 {
    inset: -18px;
    border-style: dashed;
    border-color: rgba(0, 102, 255, 0.2);
    animation: hero-orbit-ccw 8s linear infinite;
}

.hero-core-sphere {
    position: relative;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: var(--brand-gradient);
    box-shadow:
        0 0 0 8px rgba(0, 102, 255, 0.08),
        0 0 60px rgba(0, 102, 255, 0.35),
        inset 0 -8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.hero-core-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 45%, transparent 100%);
    animation: hero-shimmer 4s ease-in-out infinite;
}

.hero-core-icon {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.95);
    animation: hero-icon-spin 10s linear infinite;
}

.hero-core-label {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
}

.hero-accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-accent-1 {
    width: 10px;
    height: 10px;
    top: 12%;
    right: 18%;
    background: var(--brand-blue-light);
    box-shadow: 0 0 16px rgba(0, 174, 239, 0.6);
    animation: hero-accent-float 4s ease-in-out infinite;
}

.hero-accent-2 {
    width: 6px;
    height: 6px;
    bottom: 20%;
    left: 14%;
    background: var(--brand-blue);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.5);
    animation: hero-accent-float 5s ease-in-out infinite 0.5s;
}

.hero-accent-3 {
    width: 14px;
    height: 14px;
    top: 28%;
    left: 8%;
    border: 2px solid rgba(0, 102, 255, 0.3);
    background: transparent;
    animation: hero-accent-float 6s ease-in-out infinite 1s;
}

.hero-accent-4 {
    width: 8px;
    height: 8px;
    bottom: 14%;
    right: 10%;
    background: var(--brand-blue-dark);
    box-shadow: 0 0 10px rgba(0, 68, 187, 0.4);
    animation: hero-accent-float 4.5s ease-in-out infinite 1.5s;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    animation: hero-scroll-bounce 2.5s ease-in-out infinite;
    z-index: 5;
}

.hero-scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(0, 102, 255, 0.25);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-wheel {
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: var(--brand-blue);
    animation: hero-wheel-scroll 2s ease-in-out infinite;
}

.hero-scroll-text {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@keyframes hero-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-mesh-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.98); }
}

@keyframes hero-grid-shift {
    0% { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}

@keyframes hero-beam-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes hero-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes hero-shimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes hero-gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes hero-word-cycle {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-25%); }
    50%, 70% { transform: translateY(-50%); }
    75%, 95% { transform: translateY(-75%); }
    100% { transform: translateY(0); }
}

@keyframes hero-orbit-cw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hero-orbit-ccw {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes hero-nexus-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes hero-hex-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hero-wave-expand {
    0% { transform: translate(-50%, -50%) scale(0.35); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

@keyframes hero-aura-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes hero-icon-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hero-accent-float {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(6px, -10px); opacity: 1; }
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes hero-wheel-scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-animate,
    .hero-mesh,
    .hero-grid-pattern,
    .hero-beam,
    .hero-words,
    .hero-nexus,
    .hero-lane,
    .hero-wave,
    .hero-core-ring,
    .hero-core-icon,
    .hero-core-aura,
    .hero-hex-bg,
    .hero-accent,
    .hero-node-chip,
    .hero-scroll-hint,
    .hero-badge-dot,
    .hero-orbit-ring {
        animation: none !important;
    }

    .hero-animate {
        opacity: 1;
        transform: none;
    }
}

/* Legacy hero alias */
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Ticker */
.ticker-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    margin: 0 0.375rem;
    border-radius: 9999px;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 500;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Timeline */
.timeline-container { position: relative; }

.timeline-line {
    position: absolute;
    left: 24px; top: 0; bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-progress {
    position: absolute;
    left: 24px; top: 0;
    width: 2px;
    background: var(--brand-gradient);
    transition: height 0.3s ease;
}

.timeline-step {
    position: relative;
    padding-left: 64px;
    padding-bottom: 3rem;
    opacity: 0.45;
    transform: translateY(16px);
    transition: all 0.5s ease;
}

.timeline-step.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    left: 16px; top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-step.active .timeline-dot {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

@media (min-width: 768px) {
    .timeline-line, .timeline-progress {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-step {
        padding-left: 0;
        width: 50%;
        padding-bottom: 4rem;
    }
    .timeline-step:nth-child(odd) {
        padding-right: calc(50% + 40px);
        text-align: right;
    }
    .timeline-step:nth-child(even) {
        margin-left: 50%;
        padding-left: calc(50% + 40px);
    }
    .timeline-dot { left: 50%; transform: translateX(-50%); }
    .timeline-step:nth-child(odd) .timeline-dot {
        left: auto; right: -9px; transform: none;
    }
    .timeline-step:nth-child(even) .timeline-dot {
        left: -9px; transform: none;
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.12);
    color: var(--brand-blue);
}

/* Value & service cards */
.value-card .value-icon,
.icon-box {
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 102, 255, 0.08);
    color: var(--brand-blue);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--brand-gradient);
    color: #FFFFFF;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover { transform: translateY(-3px); }

.service-card .service-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-glow { opacity: 1; }

/* Form */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-input.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    color: #EF4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Founder quote */
.founder-quote {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.founder-quote::before {
    content: '\201C';
    position: absolute;
    top: 0; left: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--brand-blue);
    opacity: 0.15;
    line-height: 1;
}

/* Stats */
.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--brand-blue);
}

.stat-card {
    text-align: center;
    padding: 1.75rem 1rem;
}

/* Page hero */
.page-hero {
    position: relative;
    padding: 3.5rem 0 2.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

/* Section backgrounds */
.section-alt {
    background: var(--bg-secondary);
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #059669;
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #DC2626;
}

/* Selection & scrollbar */
::selection {
    background: rgba(0, 102, 255, 0.15);
    color: var(--text-primary);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
    background: var(--brand-blue);
    border-radius: 3px;
}

/* Dot separator — logo motif */
.dot-sep::before,
.dot-sep::after {
    content: '•';
    color: var(--brand-blue);
    margin: 0 0.5rem;
}
