/* ===== DESIGN TOKENS ===== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(241, 245, 249, 0.95);
    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(15, 23, 42, 0.15);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent-blue: #2563eb;
    --accent-cyan: #06b6d4;
    --accent-purple: #7c3aed;
    --accent-green: #10b981;
    --gradient-main: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-purple: linear-gradient(135deg, #7c3aed, #2563eb);
    --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --container: 1200px;
    --nav-height: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    scroll-padding-top: calc(var(--nav-height) + 20px);
}
body {
    font-family: var(--font);
    background: 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, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 0;
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-subtle), 0 4px 12px rgba(0,0,0,0.04);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    line-height: 0;
}
.logo-img {
    height: 36px;
    width: auto;
    max-width: min(160px, 42vw);
    object-fit: contain;
    display: block;
}
.logo-img--footer {
    height: 42px;
    max-width: min(200px, 55vw);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 28px);
}
.nav-link {
    font-size: clamp(0.8rem, 0.72rem + 0.35vw, 0.9rem);
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 4px;
    border-radius: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s;
    border-radius: 1px;
}
.nav-link:hover::after { width: 100%; }
/* Transparent bar over dark hero: keep text & underline readable */
.navbar:not(.scrolled) .nav-links:not(.active) .nav-link {
    color: rgba(226, 232, 240, 0.88);
}
.navbar:not(.scrolled) .nav-links:not(.active) .nav-link:hover {
    color: #ffffff;
}
.navbar:not(.scrolled) .nav-links:not(.active) .nav-link::after {
    background: linear-gradient(90deg, #93c5fd, #22d3ee);
}
.nav-cta {
    background: var(--gradient-main);
    color: white !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25);
    transition: color 0.2s, box-shadow 0.2s, filter 0.2s, transform 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    filter: brightness(1.06);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.navbar:not(.scrolled) .nav-links:not(.active) .nav-cta:hover {
    filter: brightness(1.12);
    box-shadow: 0 4px 24px rgba(56, 189, 248, 0.4);
}
.nav-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 4px;
    border-radius: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.2s;
}
.navbar:not(.scrolled) .navbar-inner:not(:has(.nav-links.active)) .hamburger span {
    background: rgba(248, 250, 252, 0.95);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}
.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/hero-bg.png') center/cover no-repeat;
    opacity: 0.5;
    mix-blend-mode: screen;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}
.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.2);
    top: 10%;
    left: 60%;
    animation-delay: 0s;
    translate: calc(var(--mouse-x, 0) * 15px) calc(var(--mouse-y, 0) * 15px);
}
.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(124, 58, 237, 0.15);
    top: 50%;
    left: 10%;
    animation-delay: -7s;
    translate: calc(var(--mouse-x, 0) * -10px) calc(var(--mouse-y, 0) * -10px);
}
.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(6, 182, 212, 0.12);
    bottom: 10%;
    right: 20%;
    animation-delay: -14s;
    translate: calc(var(--mouse-x, 0) * 8px) calc(var(--mouse-y, 0) * 8px);
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 80px;
    width: 100%;
}
.hero-content::before {
    content: '';
    position: absolute;
    inset: -40px -60px;
    background: radial-gradient(ellipse 80% 70% at 20% 50%, rgba(15, 23, 42, 0.7) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 32px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-title-line { display: block; white-space: nowrap; }
.hero-title em {
    font-style: normal;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.4);
}
.hero-accent {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-role {
    margin-top: 10px;
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    letter-spacing: -0.01em;
}
.typed-number {
    font-variant-numeric: tabular-nums;
}
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #94a3b8;
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.hero-subtitle strong {
    color: #e2e8f0;
    font-weight: 600;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}
.hero .btn-secondary {
    color: #f1f5f9;
    border-color: rgba(148, 163, 184, 0.2);
}
.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(148, 163, 184, 0.35);
}
.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-clients-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    font-weight: 600;
}
.hero-clients-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.client-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.section-wave {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
    font-size: 0;
    pointer-events: none;
}
.section-wave svg {
    display: block;
    width: 100%;
    height: auto;
}
.section-wave-bottom { bottom: -2px; }
.section-wave-top { top: -2px; }
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: #94a3b8;
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* ===== STATS ===== */
.stats {
    position: relative;
    padding: 64px 0;
    background: var(--bg-secondary);
    border-top: none;
    border-bottom: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: var(--border-subtle);
}
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 4px;
}
.stat-sublabel {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== SECTIONS COMMON ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.section-header-left {
    text-align: left;
    margin: 0 0 40px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
}
.about::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.about-illustration {
    max-width: 800px;
    margin: -16px auto 56px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}
.about-illustration img {
    width: 100%;
    height: auto;
    display: block;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-card {
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(15, 23, 42, 0.06);
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0 0 2px 2px;
}
.about-card:hover::before {
    opacity: 1;
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(15, 23, 42, 0.1);
}
.about-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.07);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-bottom: 20px;
}
.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== DIFFERENCE ===== */
.difference {
    padding: clamp(80px, 10vw, 140px) 0;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-secondary) calc(100% - 60px), var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}
.difference::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.diff-card {
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-lg);
    padding: 32px 32px 32px 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    overflow: hidden;
}
.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-main);
    border-radius: 0 2px 2px 0;
    opacity: 0.4;
    transition: opacity 0.3s;
}
.diff-card:hover::before { opacity: 1; }
.diff-card:nth-child(2)::before { background: var(--gradient-purple); }
.diff-card:nth-child(3)::before { background: linear-gradient(180deg, #10b981, #06b6d4); }
.diff-card:nth-child(4)::before { background: var(--gradient-warm); }
.diff-card:nth-child(5)::before { background: linear-gradient(180deg, #06b6d4, #2563eb); }
.diff-card:nth-child(6)::before { background: var(--gradient-purple); }
.diff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.diff-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
    padding-top: 2px;
    transition: opacity 0.3s;
}
.diff-card:hover .diff-number { opacity: 0.5; }
.diff-card:nth-child(2) .diff-number { background: var(--gradient-purple); -webkit-background-clip: text; background-clip: text; }
.diff-card:nth-child(3) .diff-number { background: linear-gradient(135deg, #10b981, #06b6d4); -webkit-background-clip: text; background-clip: text; }
.diff-card:nth-child(4) .diff-number { background: var(--gradient-warm); -webkit-background-clip: text; background-clip: text; }
.diff-card:nth-child(5) .diff-number { background: linear-gradient(135deg, #06b6d4, #2563eb); -webkit-background-clip: text; background-clip: text; }
.diff-card:nth-child(6) .diff-number { background: var(--gradient-purple); -webkit-background-clip: text; background-clip: text; }
.diff-text { flex: 1; min-width: 0; }
.diff-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.diff-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.diff-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== COMPARISON ===== */
.comparison {
    padding: clamp(80px, 10vw, 140px) 0;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: start;
}
.compare-col {
    background: var(--bg-primary);
    border: none;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 24px rgba(15, 23, 42, 0.06);
}
.compare-col:hover {
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.1);
}

.compare-col-center {
    position: relative;
    border: none;
    box-shadow:
        0 4px 24px rgba(37, 99, 235, 0.1),
        0 0 60px rgba(37, 99, 235, 0.06);
    background: linear-gradient(
        180deg,
        rgba(37, 99, 235, 0.05) 0%,
        var(--bg-primary) 35%
    );
    z-index: 1;
    transform: scale(1.03);
    border-radius: 36px;
}
.compare-col-center:hover {
    box-shadow:
        0 12px 40px rgba(37, 99, 235, 0.15),
        0 0 80px rgba(37, 99, 235, 0.08);
    transform: scale(1.04);
}

.compare-recommended {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    background: var(--gradient-main);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.compare-header {
    padding: 32px 28px 24px;
    text-align: center;
}
.compare-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.compare-header-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.compare-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 2px;
}
.compare-header-highlight .compare-subtitle {
    color: var(--text-muted);
}
.compare-logo-img {
    display: block;
    height: 32px;
    width: auto;
    margin: 0 auto 12px;
}
.compare-header-highlight h3 {
    font-size: 1.35rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compare-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.compare-icon-dim {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-muted);
}
.compare-icon-highlight {
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
}

.compare-list {
    list-style: none;
    padding: 0 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.compare-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.6;
}
.compare-item span {
    color: var(--text-secondary);
}
.compare-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.compare-item-icon-neg {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}
.compare-item-icon-pos {
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-green);
}

.compare-col-center .compare-item span {
    color: var(--text-primary);
}

.compare-cta {
    margin: 0 24px 28px;
    text-align: center;
    justify-content: center;
}

/* ===== AI SECTION ===== */
.ai-section {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-secondary) calc(100% - 60px), var(--bg-primary) 100%);
    border-top: none;
}
.ai-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.ai-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.ai-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ai-infographic {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}
.ai-versus {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 32px rgba(15, 23, 42, 0.08);
    background: var(--bg-primary);
}
.ai-vs-card {
    flex: 1;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.ai-vs-ai {
    background: rgba(15, 23, 42, 0.03);
}
.ai-vs-expert {
    background: rgba(37, 99, 235, 0.04);
}
.ai-vs-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-vs-ai .ai-vs-icon {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-muted);
}
.ai-vs-expert .ai-vs-icon {
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
}
.ai-vs-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.ai-vs-expert .ai-vs-label {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ai-vs-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.ai-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1px;
    background: var(--border-subtle);
    position: relative;
}
.ai-vs-divider span {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ai-bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ai-bar-group { display: flex; flex-direction: column; gap: 6px; }
.ai-bar-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.ai-bar {
    height: 36px;
    background: rgba(15, 23, 42, 0.03);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.06);
}
.ai-bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0;
    display: flex;
    align-items: center;
    padding-left: 16px;
}
.ai-bar-fill.animated {
    width: var(--bar-width);
}
.ai-bar-ai {
    background: var(--gradient-main);
}
.ai-bar-human {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.7), rgba(239, 68, 68, 0.4));
}
.ai-bar-value {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}
.ai-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}
.ai-points { display: flex; flex-direction: column; gap: 24px; }
.ai-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ai-point-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-top: 2px;
}
.ai-point:nth-child(2) .ai-point-icon {
    background: rgba(124, 58, 237, 0.07);
    color: var(--accent-purple);
    border-radius: var(--radius-sm);
}
.ai-point:nth-child(3) .ai-point-icon {
    background: rgba(16, 185, 129, 0.07);
    color: var(--accent-green);
    border-radius: 14px 4px;
}
.ai-point strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.ai-point p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== WHY ANALYSIS ===== */
.why-analysis {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
}
.why-analysis::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.analysis-card {
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.05);
    position: relative;
}
.analysis-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.08);
}
.analysis-icon {
    width: 52px;
    height: 52px;
    margin: 0;
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.07);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}
.analysis-card:nth-child(2) .analysis-icon {
    background: rgba(124, 58, 237, 0.07);
    color: var(--accent-purple);
    border-radius: 50%;
}
.analysis-card:nth-child(3) .analysis-icon {
    background: rgba(16, 185, 129, 0.07);
    color: var(--accent-green);
    border-radius: 14px 4px 14px 4px;
}
.analysis-card:nth-child(4) .analysis-icon {
    background: rgba(245, 158, 11, 0.07);
    color: #f59e0b;
    border-radius: 50%;
}
.analysis-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.analysis-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CAREER ===== */
.career {
    padding: clamp(80px, 10vw, 140px) 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
    position: relative;
    overflow-x: hidden;
}
.career .section-subtitle {
    color: #94a3b8;
}
.career .section-tag {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}
.career-tracks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.career-track {
    background: rgba(15, 23, 42, 0.5);
    border: none;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.career-track:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.track-header {
    padding: 36px 32px 28px;
    position: relative;
}
.track-header-junior {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.08));
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.track-header-senior {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(37, 99, 235, 0.08));
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.track-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.track-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.track-header p {
    color: #94a3b8;
    font-size: 0.95rem;
}
.track-steps {
    padding: 28px 32px;
}
.track-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 24px;
    position: relative;
}
.track-step:last-child { padding-bottom: 0; }
.step-connector {
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: rgba(148, 163, 184, 0.12);
}
.track-step:last-child .step-connector { display: none; }
.step-dot {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    border: 2px solid var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
}
.step-content h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    margin-top: 5px;
}
.step-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}
.track-checklist {
    padding: 0 32px 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding-top: 24px;
}
.track-checklist h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #94a3b8;
}
.track-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.track-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
}
.track-checklist li svg { color: var(--accent-green); flex-shrink: 0; }
.track-cta {
    margin: 24px 32px 32px;
    display: inline-flex;
}

/* ===== TEAM ===== */
.team {
    padding: clamp(80px, 10vw, 140px) 0;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-secondary) calc(100% - 60px), var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}
.team::before {
    content: '';
    position: absolute;
    top: 40%;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.team::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.team-featured {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}
@media (max-width: 1180px) {
    .team-featured {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}
.team-featured .reveal:nth-child(2) { transition-delay: 0.07s; }
.team-featured .reveal:nth-child(3) { transition-delay: 0.14s; }
.team-featured .reveal:nth-child(4) { transition-delay: 0.21s; }
.team-featured .reveal:nth-child(5) { transition-delay: 0.28s; }
.team-featured .reveal:nth-child(6) { transition-delay: 0.35s; }
.team-leader {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: var(--bg-primary);
    border: none;
    border-radius: 32px;
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 8px 28px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-leader:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow:
        0 8px 24px rgba(37, 99, 235, 0.08),
        0 20px 40px rgba(15, 23, 42, 0.1);
}
.team-leader:nth-child(even):hover {
    transform: translateY(-4px) rotate(0.5deg);
}
.team-leader-photo {
    position: relative;
    flex-shrink: 0;
    width: 112px;
    height: 112px;
    margin: 12px auto 0;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(150deg, #e2e8f0 0%, #f8fafc 55%, #f1f5f9 100%);
    box-shadow: 0 0 0 3px var(--bg-primary), 0 0 0 5px rgba(37, 99, 235, 0.18);
}
.team-leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-leader:hover .team-leader-photo img {
    transform: scale(1.06);
}
.team-leader-body {
    padding: 12px 12px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.leader-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--text-primary);
    line-height: 1.25;
    text-align: center;
}
.leader-quote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    flex: 1;
    min-width: 0;
}
.leader-quote::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--gradient-main);
    margin: 0 auto 10px;
}
.leader-quote p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.58;
    font-style: normal;
    text-align: center;
    hyphens: auto;
}
.leader-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.leader-avatar {
    flex-shrink: 0;
}
.leader-avatar-inner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent, var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 0 0 3px white, 0 0 0 5px var(--accent, var(--accent-blue));
}
.leader-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
}
.leader-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    text-align: center;
}
.team-member {
    padding: 24px 16px;
    border-radius: var(--radius-md);
    transition: background 0.3s;
}
.team-member:hover { background: var(--bg-card); }
.member-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent, var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin: 0 auto 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member:hover .member-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}
.team-member h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.team-member span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== PHILOSOPHY ===== */
.philosophy {
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}
.philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0.03;
}
.philosophy::after {
    content: '\201C';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(120px, 20vw, 220px);
    font-family: Georgia, serif;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}
.philosophy-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.philosophy blockquote p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.philosophy blockquote footer {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
    padding: clamp(100px, 12vw, 180px) 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.contact-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.contact-hook {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #f1f5f9;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.contact-email-hero {
    display: block;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.contact-email-hero::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-main);
    margin: 20px auto 0;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-email-hero:hover::after {
    width: 100%;
}
.contact-email-hero:hover {
    transform: scale(1.02);
}
.contact-hint {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 48px;
}
.contact-company {
    font-size: 0.8rem;
    color: #475569;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0;
    border-top: none;
    background: var(--bg-secondary);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.footer-brand {
    text-align: center;
}
.footer-brand .logo {
    justify-content: center;
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 360px;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== JOB DETAIL PAGES — náborový leták (moderní) ===== */
.job-page {
    background: linear-gradient(180deg, #e2ecf6 0%, #d4e4f4 50%, #c8dcee 100%);
}
/* Nav — světlá lišta, čitelné odkazy */
.job-page .navbar {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-subtle), 0 4px 12px rgba(0, 0, 0, 0.04);
}
.job-page .navbar .nav-links:not(.active) .nav-link {
    color: var(--text-secondary);
}
.job-page .navbar .nav-links:not(.active) .nav-link:hover {
    color: var(--text-primary);
}
.job-page .navbar .nav-links:not(.active) .nav-link::after {
    background: var(--gradient-main);
}
.job-page .navbar .navbar-inner:not(:has(.nav-links.active)) .hamburger span {
    background: var(--text-primary);
}
.job-breadcrumb {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 18px;
}
.job-breadcrumb a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.job-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.job-flyer-wrap {
    padding: calc(var(--nav-height) + 20px) 16px 48px;
    max-width: 880px;
    margin: 0 auto;
}
.job-flyer {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 42px) clamp(22px, 4vw, 40px) clamp(32px, 5vw, 48px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 32px 64px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.job-flyer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: min(45%, 320px);
    height: 200px;
    background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.job-page--senior .job-flyer::before {
    background: radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.09) 0%, transparent 70%);
}
.job-flyer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at bottom left, rgba(21, 128, 61, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.job-flyer-title {
    position: relative;
    z-index: 1;
    margin-bottom: clamp(24px, 4vw, 32px);
    padding-bottom: 22px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #15803d 0%, #15803d 18%, rgba(37, 99, 235, 0.2) 18%, rgba(37, 99, 235, 0.08) 100%) 1;
}
.job-flyer-title__kicker {
    display: block;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #166534;
    margin-bottom: 8px;
}
.job-flyer-title__role {
    display: block;
    font-size: clamp(1.5rem, 4.2vw, 2.15rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    background: linear-gradient(120deg, #1d4ed8 0%, #0ea5e9 55%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.job-page--senior .job-flyer-title__role {
    background: linear-gradient(120deg, #6d28d9 0%, #7c3aed 40%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.job-flyer-deco {
    position: absolute;
    top: 16px;
    right: 16px;
    width: min(140px, 32vw);
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}
.job-flyer-section {
    position: relative;
    z-index: 1;
    margin-bottom: clamp(22px, 3.5vw, 28px);
}
.job-flyer-section:last-of-type {
    margin-bottom: 0;
}
.job-flyer-section h2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.35;
}
.job-flyer-section h2 .job-flyer-ico {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(21, 128, 61, 0.12), rgba(21, 128, 61, 0.04));
    color: #15803d;
}
.job-page--senior .job-flyer-section h2 .job-flyer-ico {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.14), rgba(124, 58, 237, 0.05));
    color: #7c3aed;
}
.job-flyer-section p {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}
.job-flyer-section p + p {
    margin-top: 10px;
}
.job-flyer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.job-flyer-list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}
.job-flyer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
}
.job-page--senior .job-flyer-list li::before {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
}
.job-flyer-highlight {
    margin-top: 4px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(37, 99, 235, 0.12);
}
.job-page--senior .job-flyer-highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(99, 102, 241, 0.05));
    border-color: rgba(124, 58, 237, 0.15);
}
.job-flyer-highlight p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #334155;
}
.job-flyer-divider {
    border: none;
    height: 1px;
    margin: 22px 0;
    background: linear-gradient(90deg, transparent, rgba(21, 128, 61, 0.25), transparent);
}
.job-page--senior .job-flyer-divider {
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.22), transparent);
}
.job-flyer-highlight strong {
    color: #0f172a;
}
@media (max-width: 640px) {
    .job-flyer-deco { opacity: 0.35; max-width: 100px; }
}
.job-flyer-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 8px;
    align-items: stretch;
}
@media (min-width: 720px) {
    .job-flyer-split {
        grid-template-columns: 1fr minmax(240px, 38%);
        gap: 26px;
    }
}
.job-flyer-offer h2 {
    font-size: clamp(1.05rem, 2.3vw, 1.18rem);
    font-weight: 900;
    color: #1d4ed8 !important;
    margin-bottom: 14px;
    display: block;
}
.job-page--senior .job-flyer-offer h2 {
    color: #6d28d9 !important;
}
.job-flyer-offer .job-flyer-list {
    gap: 8px;
}
.job-flyer-cta {
    border-radius: 18px;
    padding: 26px 22px;
    background: linear-gradient(165deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
}
.job-flyer-cta::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.job-page--senior .job-flyer-cta {
    background: linear-gradient(165deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.38);
}
.job-flyer-cta > * {
    position: relative;
    z-index: 1;
}
.job-flyer-cta p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.96);
}
.job-flyer-cta .job-flyer-cta-hook {
    font-size: clamp(1.14rem, 2.8vw, 1.38rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 14px;
    color: #fff;
}
.job-flyer-cta p:last-of-type {
    margin-bottom: 16px;
}
.job-flyer-mail {
    display: inline-block;
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 800;
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    word-break: break-all;
}
.job-flyer-mail:hover {
    color: #e0e7ff !important;
}
.job-flyer-cta small {
    display: block;
    margin-top: 14px;
    font-size: 0.75rem;
    opacity: 0.85;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.job-flyer-foot {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
}
.job-backlink {
    margin: 0;
    font-size: 0.88rem;
}
.job-backlink a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.job-backlink a:hover { text-decoration: underline; text-underline-offset: 3px; }
.career-track-toplink {
    display: block;
    color: inherit;
    text-decoration: none;
}
.career-track-toplink:hover .track-header h3,
.career-track-toplink:focus-visible .track-header h3 {
    color: #e2e8f0;
}
.career-track-toplink:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
    border-radius: 32px 32px 0 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .compare-col-center { order: -1; transform: scale(1); }
    .compare-col-center:hover { transform: scale(1); }
    .ai-layout { grid-template-columns: 1fr; gap: 48px; }
    .ai-visual { order: 2; }
    .ai-content { order: 1; }
    .analysis-grid { grid-template-columns: 1fr 1fr; }
    .career-tracks { grid-template-columns: 1fr; }
    .team-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 999;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-links .nav-link {
        font-size: 1.2rem;
        color: var(--text-primary);
    }
    .hamburger { display: flex; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-item:not(:last-child)::after { display: none; }
    .diff-grid { grid-template-columns: 1fr; }
    .diff-card { flex-direction: row; }
    .analysis-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form-wrapper { padding: 28px 20px; }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }
    .hero-title-line {
        white-space: normal;
    }
    .hero-content::before {
        inset: -20px -24px;
    }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .team-featured { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .diff-card { flex-direction: column; gap: 8px; }
    .diff-number { width: auto; text-align: left; }
    .analysis-card { flex-direction: column; gap: 12px; }
}

/* ===== PARTICLE STYLES ===== */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(148, 163, 184, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    margin-top: -4px;
    margin-bottom: -4px;
    padding: 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    position: relative;
    z-index: 1;
}
.wave-dark-to-light {
    background: #1e293b;
}
.wave-dark-to-gray {
    background: #1e293b;
}
.wave-light-to-gray {
    background: var(--bg-primary);
}
.wave-light-to-dark {
    background: #0f172a;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.12);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(15, 23, 42, 0.2); }

/* ===== SELECTION ===== */
::selection {
    background: rgba(37, 99, 235, 0.15);
    color: var(--text-primary);
}
