:root {
    --azure: #0084d1;
    --azure-light: #3D9AFF;
    --azure-dim: rgba(0, 120, 255, 0.08);
    --azure-dim2: rgba(0, 120, 255, 0.14);
    --azure-dark: #0055CC;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --surface: #EEF3FB;
    --black: #0D1117;
    --ink: #1E2530;
    --gray: #6B7685;
    --gray-light: #A8B4C2;
    --gray-border: #DDE3EB;
    --green: #16A34A;
    --red: #DC2626;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-border);
}

.nav-logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-logo .logo-icon {
    width: 28px;
    height: 28px;
    background: var(--azure);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 800;
}

.nav-logo span {
    color: var(--azure);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-login {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.nav-login:hover {
    color: var(--azure);
}

.nav-cta {
    background: var(--azure);
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 120, 255, 0.25);
}

.nav-cta:hover {
    background: var(--azure-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 120, 255, 0.3);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 6% 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #F0F6FF 0%, #FFFFFF 50%, #F7F9FC 100%);
}

/* Grid dots background */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 120, 255, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 120, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {

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

    50% {
        transform: translateY(-20px) scale(1.04)
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.2);
    color: var(--azure);
    padding: 0.38rem 0.9rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--azure);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 1.3rem;
    color: var(--black);
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--azure);
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 480px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--azure);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 120, 255, 0.3);
}

.btn-primary:hover {
    background: var(--azure-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 120, 255, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--ink);
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    border: 1.5px solid var(--gray-border);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: var(--azure);
    color: var(--azure);
    background: var(--azure-dim);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: fadeUp 0.7s 0.4s ease both;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.8rem;
    color: var(--gray);
}

.trust-text strong {
    color: var(--ink);
}

/* Hero Right — App Preview */
.hero-app-preview {
    position: relative;
    animation: fadeUp 0.8s 0.3s ease both;
}

.app-window {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 20px 64px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-border);
    overflow: hidden;
}

.app-topbar {
    background: var(--off-white);
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-border);
}

.dot-red {
    width: 10px;
    height: 10px;
    background: #FF5F57;
    border-radius: 50%;
}

.dot-yellow {
    width: 10px;
    height: 10px;
    background: #FFBD2E;
    border-radius: 50%;
}

.dot-green {
    width: 10px;
    height: 10px;
    background: #28CA41;
    border-radius: 50%;
}

.app-topbar-title {
    font-size: 0.75rem;
    color: var(--gray);
    margin-left: 0.5rem;
    font-weight: 500;
}

.app-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 340px;
}

.app-sidebar {
    background: var(--off-white);
    border-right: 1px solid var(--gray-border);
    padding: 1rem 0.8rem;
}

.sidebar-section {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-light);
    padding: 0 0.5rem;
    margin: 0.8rem 0 0.4rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.5rem;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.15s;
    margin-bottom: 2px;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: var(--azure-dim);
    color: var(--azure);
}

.sidebar-item .si-icon {
    font-size: 0.85rem;
}

.app-main {
    padding: 1.2rem;
}

.app-ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #EEF6FF, #E8F0FF);
    border: 1px solid rgba(0, 120, 255, 0.2);
    color: var(--azure);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
    animation: pulse-chip 2s ease-in-out infinite;
}

@keyframes pulse-chip {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 120, 255, 0.15)
    }

    50% {
        box-shadow: 0 0 0 4px rgba(0, 120, 255, 0.05)
    }
}

.app-resume-preview {
    background: var(--off-white);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 1rem;
}

.resume-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.resume-title-role {
    font-size: 0.72rem;
    color: var(--azure);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.resume-section {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--azure);
    border-bottom: 1.5px solid var(--azure-dim2);
    padding-bottom: 0.2rem;
    margin: 0.7rem 0 0.4rem;
}

.resume-bar {
    height: 6px;
    background: var(--gray-border);
    border-radius: 100px;
    margin-bottom: 0.35rem;
    overflow: hidden;
}

.resume-bar-fill {
    height: 100%;
    background: var(--azure-dim2);
    border-radius: 100px;
    animation: grow 1.5s ease both;
}

@keyframes grow {
    from {
        width: 0
    }
}

.resume-highlight-bar {
    background: rgba(0, 120, 255, 0.12) !important;
}

.resume-highlight-bar .resume-bar-fill {
    background: var(--azure) !important;
    opacity: 0.4;
}

.app-score-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {

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

    50% {
        transform: translateY(-6px)
    }
}

.score-num {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--azure);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.score-label {
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
}

.app-ai-bubble {
    position: absolute;
    bottom: -1rem;
    left: -1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    max-width: 200px;
    animation: float-badge 3.5s ease-in-out infinite reverse;
}

.ai-bubble-head {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.ai-bubble-icon {
    width: 18px;
    height: 18px;
    background: var(--azure);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #fff;
}

.ai-bubble-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ink);
}

.ai-bubble-text {
    font-size: 0.68rem;
    color: var(--gray);
    line-height: 1.5;
}

.ai-bubble-text span {
    color: var(--azure);
    font-weight: 600;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--azure);
    padding: 1.8rem 6%;
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.strip-stat {
    text-align: center;
}

.strip-num {
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    letter-spacing: -1px;
}

.strip-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.1rem;
}

/* ── SECTION SHARED ── */
section {
    padding: 100px 6%;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--azure);
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--azure);
}

.section-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    font-weight: 400;
    max-width: 500px;
}

/* ── WHY ATS ── */
#why {
    background: var(--off-white);
}

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

.why-image-wrap {
    position: relative;
}

.cv-illustration {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.cv-illustration::before {
    content: 'ATS SCANNER';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--azure);
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.2);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
}

.scan-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--azure), transparent);
    margin-bottom: 1.5rem;
    animation: scan 2.5s ease-in-out infinite;
}

@keyframes scan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(220px);
        opacity: 0;
    }
}

.cv-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.cv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cv-dot.green {
    background: var(--green);
}

.cv-dot.blue {
    background: var(--azure);
}

.cv-bar {
    height: 8px;
    border-radius: 100px;
    background: var(--surface);
    flex: 1;
    overflow: hidden;
}

.cv-bar-fill {
    height: 100%;
    border-radius: 100px;
    animation: grow 1.5s ease both;
}

.score-circle {
    margin: 1.5rem auto 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(var(--azure) 0% 88%, var(--surface) 88%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--white);
    border-radius: 50%;
}

.score-text {
    position: relative;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--azure);
}

.why-floating-card {
    position: absolute;
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    font-size: 0.82rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.why-floating-card.card-tl {
    top: -1.5rem;
    left: -1.5rem;
    animation: float-badge 3s ease-in-out infinite;
}

.why-floating-card.card-br {
    bottom: -1.5rem;
    right: -1.5rem;
    animation: float-badge 3.5s ease-in-out infinite reverse;
}

.card-icon {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.card-label {
    color: var(--gray);
    font-size: 0.68rem;
}

.card-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.why-points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    width: 38px;
    height: 38px;
    background: var(--azure-dim);
    border: 1.5px solid rgba(0, 120, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--ink);
}

.point-text p {
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ── FEATURES ── */
#features {
    background: var(--white);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header .section-sub {
    margin: 0 auto;
}

.features-header .section-title {
    margin: 0 auto 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 18px;
    padding: 2rem 1.8rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--azure);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    border-radius: 0 0 18px 18px;
}

.feature-card:hover {
    border-color: rgba(0, 120, 255, 0.25);
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 120, 255, 0.08);
    transform: translateY(-3px);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--azure-dim);
    border: 1.5px solid rgba(0, 120, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--ink);
}

.feature-card p {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.7;
}

.feature-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--azure);
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.15);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    font-weight: 600;
}

/* ── COMPARISON ── */
#comparison {
    background: var(--off-white);
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 880px;
    margin: 0 auto;
}

.cv-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--gray-border);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cv-card.good {
    border-color: var(--azure);
    box-shadow: 0 8px 40px rgba(0, 120, 255, 0.12);
}

.cv-card-header {
    padding: 0.9rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-bottom: 1px solid var(--gray-border);
}

.cv-card.bad .cv-card-header {
    background: #FFF5F5;
}

.cv-card.good .cv-card-header {
    background: var(--azure-dim);
}

.cv-card p, .cv-card li  {
    font-size: 0.80rem;
}

.cv-card li  { 
    margin-left: 1rem;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cv-card.bad .status-dot {
    background: var(--red);
}

.cv-card.good .status-dot {
    background: var(--azure);
}

.cv-card-header span {
    font-size: 0.83rem;
    font-weight: 600;
}

.cv-card-body {
    padding: 1.4rem;
}

.cv-mock-name {
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.cv-mock.bad .cv-mock-name {
    font-size: 1.6rem;
    color: #9CA3AF;
}

.cv-mock.good .cv-mock-name {
    font-size: 1.2rem;
    color: var(--ink);
}

.cv-mock-contact {
    font-size: 0.72rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.cv-section-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0.8rem 0 0.4rem;
    padding-bottom: 0.25rem;
}

.cv-mock.bad .cv-section-title {
    color: var(--gray-light);
    border-bottom: 1px solid var(--gray-border);
}

.cv-mock.good .cv-section-title {
    color: var(--azure);
    border-bottom: 1.5px solid rgba(0, 120, 255, 0.2);
}

.cv-line {
    height: 7px;
    border-radius: 4px;
    background: var(--surface);
    margin-bottom: 0.4rem;
}

.cv-line.short {
    width: 55%;
}

.cv-line.med {
    width: 78%;
}

.cv-line.full {
    width: 100%;
}

.cv-line.ai-highlight {
    background: rgba(0, 120, 255, 0.15);
}

.cv-issue {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--red);
    margin-top: 0.4rem;
}

.cv-good-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--green);
    margin-top: 0.35rem;
}

.cv-score-bar {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-border);
}

.cv-score-label {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 0.35rem;
}

.cv-score-track {
    height: 6px;
    background: var(--surface);
    border-radius: 100px;
    overflow: hidden;
}

.cv-score-fill {
    height: 100%;
    border-radius: 100px;
    animation: grow 1.5s 0.5s ease both;
}

.cv-card.bad .cv-score-fill {
    width: 18%;
    background: var(--red);
}

.cv-card.good .cv-score-fill {
    width: 96%;
    background: var(--azure);
}

.cv-score-num {
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.cv-card.bad .cv-score-num {
    color: var(--red);
}

.cv-card.good .cv-score-num {
    color: var(--azure);
}

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.2);
    color: var(--azure);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-top: 0.35rem;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--white);
}

.testi-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testi-card {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.25s;
    position: relative;
}

.testi-card:hover {
    border-color: rgba(0, 120, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 120, 255, 0.08);
}

.testi-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.testi-text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.testi-divider {
    height: 1px;
    background: var(--gray-border);
    margin-bottom: 1.2rem;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink);
}

.testi-role {
    font-size: 0.72rem;
    color: var(--gray);
}

.testi-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--azure);
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
}

/* ── PRICING ── */
#pricing {
    background: var(--off-white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: var(--azure);
    border-color: var(--azure);
    box-shadow: 0 8px 40px rgba(0, 120, 255, 0.3);
    color: #fff;
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.9rem;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
}

.pricing-plan {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pricing-card:not(.featured) .pricing-plan {
    color: var(--azure);
}

.pricing-card.featured .pricing-plan {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 0.6rem;
    display: inline-block;
}

.pricing-rb {
    font-size: 1.4rem;
}

.pricing-period {
    font-size: 0.78rem;
    margin-bottom: 1.2rem;
}

.pricing-card:not(.featured) .pricing-period {
    color: var(--gray);
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
}

.pricing-card:not(.featured) .pricing-desc {
    color: var(--gray);
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-divider {
    height: 1px;
    margin-bottom: 1.5rem;
}

.pricing-card:not(.featured) .pricing-divider {
    background: var(--gray-border);
}

.pricing-card.featured .pricing-divider {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.pricing-card:not(.featured) .pricing-features li {
    color: var(--ink);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card:not(.featured) .check-icon {
    background: var(--azure-dim);
    color: var(--azure);
}

.pricing-card.featured .check-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.pricing-btn.outline {
    border: 1.5px solid var(--gray-border);
    color: var(--ink);
    background: transparent;
}

.pricing-btn.outline:hover {
    border-color: var(--azure);
    color: var(--azure);
    background: var(--azure-dim);
}

.pricing-btn.solid {
    background: var(--white);
    color: var(--azure);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pricing-btn.solid:hover {
    background: var(--off-white);
    transform: translateY(-1px);
}

/* ── CTA BANNER ── */
.cta-banner {
    margin: 0 6% 6rem;
    background: linear-gradient(135deg, var(--azure) 0%, #0055CC 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
    position: relative;
}

.cta-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
}

.cta-banner .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--azure);
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 3.5rem 6% 2rem;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
    background: var(--azure);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 800;
}

.footer-logo span {
    color: var(--azure-light);
}

.footer-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-contact {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--azure-light);
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* WA Float */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    background: #25D366;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.25s;
    animation: fadeUp 1s 1s ease both;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-app-preview {
        display: none;
    }

    .why-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .testi-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .stats-strip {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .cta-banner {
        margin: 0 4% 4rem;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 600px) {

    .features-grid,
    .testi-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ── JD FORM MOCKUP ── */
.jd-form {
    padding: 1.2rem 1.4rem 1rem;
}

.jd-form-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--azure);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.jd-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.jd-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.jd-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.jd-input {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 7px;
    padding: 0.4rem 0.65rem;
    font-size: 0.78rem;
    color: var(--ink);
    font-weight: 500;
}

.jd-input-muted {
    color: var(--gray);
}

.jd-input-active {
    border-color: var(--azure);
    background: #EEF6FF;
    color: var(--azure);
}

.jd-textarea {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 7px;
    padding: 0.5rem 0.65rem;
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.5;
    min-height: 56px;
}

.jd-generate-btn {
    background: var(--azure);
    color: #fff;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 120, 255, 0.3);
    margin-bottom: 0.9rem;
    animation: btn-glow 2.5s ease-in-out infinite;
}

@keyframes btn-glow {

    0%,
    100% {
        box-shadow: 0 3px 12px rgba(0, 120, 255, 0.3)
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 120, 255, 0.55)
    }
}

.jd-btn-icon {
    font-size: 0.85rem;
    animation: spin-star 3s linear infinite;
}

@keyframes spin-star {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.jd-result {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 8px;
    padding: 0.8rem 0.9rem;
}

.jd-result-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--azure);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.jd-result-line {
    height: 7px;
    border-radius: 100px;
    background: rgba(0, 120, 255, 0.15);
    margin-bottom: 0.4rem;
    animation: grow 1.5s ease both;
}

.jd-rl-full {
    width: 100%;
    animation-delay: 0.2s;
}

.jd-rl-med {
    width: 78%;
    animation-delay: 0.4s;
}

.jd-rl-short {
    width: 55%;
    animation-delay: 0.6s;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ── ARTICLE / SINGLE POST ── */
.article-hero {
    padding: 120px 6% 60px;
    background: linear-gradient(160deg, #F0F6FF 0%, #FFFFFF 60%);
    border-bottom: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 120, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.article-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--azure);
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.15);
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.article-category:hover {
    background: var(--azure-dim2);
    border-color: rgba(0, 120, 255, 0.3);
}

.article-meta-dot {
    width: 3px;
    height: 3px;
    background: var(--gray-light);
    border-radius: 50%;
}

.article-read-time {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}

.article-date {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}

.article-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 1.2rem;
    animation: fadeUp 0.6s ease both;
    text-align: center;
}

.article-hero-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--azure);
    letter-spacing: -1px;
}

.article-excerpt {
    font-size: 1.08rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 640px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.article-author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-border);
    animation: fadeUp 0.6s 0.2s ease both;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}

.author-role {
    font-size: 0.72rem;
    color: var(--gray);
    margin-top: 1px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-border);
    background: var(--white);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: var(--azure);
    color: var(--azure);
    background: var(--azure-dim);
}

/* ── ARTICLE LAYOUT WRAPPER ── */
/*
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 6% 100px;
    align-items: start;
}
*/

.article-layout {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 6% 100px;
}

/* ── ARTICLE BODY ── */
.article-body {
    min-width: 0;
}

.article-featured-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--gray-border);
    background: var(--surface);
    aspect-ratio: 16 / 9;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--ink);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.article-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    line-height: 1.2;
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--black);
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}

.article-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 1.5rem 0 0.5rem;
}

.article-content a {
    color: var(--azure);
    text-decoration: underline;
    text-decoration-color: rgba(0, 120, 255, 0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

.article-content a:hover {
    text-decoration-color: var(--azure);
}

.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.article-content ul li::marker {
    color: var(--azure);
}

.article-content ol li::marker {
    color: var(--azure);
    font-weight: 700;
}

.article-content strong {
    font-weight: 700;
    color: var(--black);
}

.article-content em {
    font-style: italic;
    color: var(--gray);
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--azure);
    background: var(--azure-dim);
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    font-size: 1.08rem;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--azure-dark);
    margin: 0;
    line-height: 1.7;
}

.article-content blockquote cite {
    display: block;
    font-size: 0.78rem;
    font-style: normal;
    color: var(--gray);
    margin-top: 0.6rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.article-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    background: var(--surface);
    border: 1px solid var(--gray-border);
    color: var(--azure-dark);
    padding: 0.15em 0.45em;
    border-radius: 5px;
}

.article-content pre {
    background: var(--ink);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.06);
}

.article-content pre code {
    background: transparent;
    border: none;
    color: #e2e8f0;
    padding: 0;
    font-size: 0.88rem;
    line-height: 1.7;
}

.article-content hr {
    border: none;
    border-top: 1.5px solid var(--gray-border);
    margin: 2.5rem 0;
}

.article-content img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--gray-border);
    margin: 1.5rem 0;
    display: block;
}

.article-content figure {
    margin: 2rem 0;
}

.article-content figcaption {
    font-size: 0.78rem;
    color: var(--gray);
    text-align: center;
    margin-top: 0.6rem;
}

/* Callout / tip box */
.article-callout {
    display: flex;
    gap: 1rem;
    background: var(--azure-dim);
    border: 1px solid rgba(0, 120, 255, 0.18);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin: 2rem 0;
}

.article-callout-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.article-callout-text {
    font-size: 0.88rem;
    color: var(--azure-dark);
    line-height: 1.7;
}

.article-callout-text strong {
    color: var(--azure-dark);
    font-weight: 700;
}

/* ── ARTICLE FOOTER ── */
.article-footer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1.5px solid var(--gray-border);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.article-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--surface);
    border: 1px solid var(--gray-border);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
}

.article-tag:hover {
    color: var(--azure);
    border-color: rgba(0, 120, 255, 0.3);
    background: var(--azure-dim);
}

.article-author-card {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 16px;
    padding: 1.8rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.article-author-card .author-avatar {
    width: 56px;
    height: 56px;
    font-size: 1rem;
    border: 2.5px solid var(--gray-border);
    flex-shrink: 0;
}

.author-card-info .author-name {
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

.author-card-info .author-role {
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
}

.author-bio {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ── RELATED POSTS ── */
.related-posts {
    margin-top: 1rem;
}

.related-posts h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.related-card {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.22s;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    border-color: rgba(0, 120, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 120, 255, 0.08);
}

.related-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--surface);
    overflow: hidden;
}

.related-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.related-card:hover .related-card-thumb img {
    transform: scale(1.04);
}

.related-card-body {
    padding: 1rem 1.1rem;
    flex: 1;
}

.related-card-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--azure);
    margin-bottom: 0.35rem;
}

.related-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.related-card-date {
    font-size: 0.72rem;
    color: var(--gray);
}

/* ── ARTICLE SIDEBAR ── */
.article-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: 16px;
    padding: 1.4rem;
}

.sidebar-widget-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-border);
}

/* Table of Contents */
.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.toc-item a {
    display: block;
    font-size: 0.82rem;
    color: var(--gray);
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 7px;
    border-left: 2px solid transparent;
    transition: all 0.18s;
    line-height: 1.4;
}

.toc-item a:hover,
.toc-item.active a {
    color: var(--azure);
    background: var(--azure-dim);
    border-left-color: var(--azure);
}

.toc-item.toc-h3 a {
    padding-left: 1.2rem;
    font-size: 0.78rem;
}

/* Progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-border);
    z-index: 200;
}

.reading-progress-fill {
    height: 100%;
    background: var(--azure);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* CTA widget in sidebar */
.sidebar-cta {
    background: var(--azure);
    border-radius: 16px;
    padding: 1.4rem;
    text-align: center;
    border: none;
}

.sidebar-cta-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.sidebar-cta-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-cta-btn {
    display: block;
    background: #fff;
    color: var(--azure);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.sidebar-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ── RESPONSIVE: ARTICLE ── */
@media (max-width: 960px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 40px 6% 80px;
    }

    .article-sidebar {
        position: static;
    }

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

@media (max-width: 600px) {
    .article-hero-title {
        letter-spacing: -1px;
    }

    .article-author-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-author-card {
        flex-direction: column;
    }
}