/* ===== JOB SATISFACTION ARTICLE — job-satisfaction.css ===== */

/* --- Design-system tokens --- */
:root {
    --primary-500: #1662ed;
    --primary-600: #1251c5;
    --primary-700: #0e3f9e;
    --primary-50: rgba(22,98,237,.06);
    --ink-900: #0b1534;
    --ink-800: #101d42;
    --ink-700: #162350;
    --gray-50: #f8f9fb;
    --gray-100: #f0f1f4;
    --gray-200: #dfe1e8;
    --gray-500: #6b7194;
    --gray-600: #5a607a;
    --gray-900: #111827;
    --white: #ffffff;
    --gradient-dark: linear-gradient(160deg, #0b1534 0%, #101d42 40%, #162350 100%);
    --gradient-primary: linear-gradient(135deg, #1662ed 0%, #1e3a8a 100%);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-3xl: 32px;
    --shadow-soft: 0 1px 3px rgba(11,21,52,.06);
    --shadow-card: 0 4px 24px rgba(11,21,52,.08);
    --shadow-lg: 0 8px 40px rgba(11,21,52,.1);
    --shadow-blue: 0 8px 32px rgba(22,98,237,.25);
    --shadow-glow: 0 0 48px rgba(22,98,237,.15);
    --ease-out: cubic-bezier(.22,1,.36,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

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

body.article-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink-900);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ===== HEADER OVERRIDES ===== */
.wdt-topbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100000;
    background: #031543;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}
.topbar-inner {
    width: min(1280px, calc(100% - 2rem));
    min-height: 42px;
    margin-inline: auto;
    display: flex;
    align-items: center;
}
.wdt-topbar-contact { width: 100%; justify-content: space-between; }
.wdt-topbar-contact-item { color: #d7e3ff; font-size: 13px; text-decoration: none; }
.header-inner {
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
    min-height: 84px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.frogg-header {
    top: 42px;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}
.article-page .wdt-nav-menu .elementor-nav-menu > li > a { color: var(--ink-900) !important; }
.article-page .wdt-nav-menu .elementor-nav-menu > li:hover > a,
.article-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > a { color: #fff !important; }
.article-page .wdt-nav-menu .elementor-nav-menu > li:hover > a::before,
.article-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > a::before { opacity: 1 !important; }
.article-page .wdt-nav-menu .elementor-nav-menu--dropdown { background: #fff !important; border: 1px solid rgba(18,104,251,.15) !important; box-shadow: 0 10px 40px rgba(0,0,0,.1) !important; }
.article-page .wdt-nav-menu .elementor-nav-menu--dropdown a { color: var(--ink-900) !important; }
.article-page .wdt-nav-menu .elementor-nav-menu--dropdown a:hover { color: #fff !important; }
.article-page .frogg-btn-outline .elementor-button { border-color: var(--primary-500) !important; color: var(--primary-500) !important; }
.article-page .wdt-toggle-line { background: var(--ink-900) !important; }
.brand img { height: 44px; width: auto; }
.wdt-nav-menu .elementor-nav-menu { margin: 0; padding: 0; list-style: none; }
.wdt-nav-menu .elementor-nav-menu > li { position: relative; }
.wdt-nav-menu .elementor-nav-menu--dropdown {
    position: absolute; top: calc(100% + 10px); left: 0;
    min-width: 260px; list-style: none; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: 0.25s ease;
}
.wdt-nav-menu .menu-item-has-children:hover .elementor-nav-menu--dropdown,
.wdt-nav-menu .menu-item-has-children:focus-within .elementor-nav-menu--dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .elementor-button { display: inline-flex; align-items: center; justify-content: center; }

/* ===== UTILITIES ===== */
.eyebrow {
    display: inline-block;
    font-size: .85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--primary-500);
    margin-bottom: 10px;
}
.eyebrow--dark { color: rgba(255,255,255,.65); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-header p { font-size: 1.08rem; color: var(--gray-600); line-height: 1.7; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.65); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    padding: 14px 32px; border-radius: 50px; text-decoration: none;
    transition: all .3s var(--ease-out); cursor: pointer;
    border: 2px solid transparent;
}
.btn-hero-primary { background: var(--gradient-primary); color: var(--white); box-shadow: var(--shadow-blue); font-size: 1.05rem; padding: 16px 40px; }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(22,98,237,.4); }
.btn-hero-outline { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.2); backdrop-filter: blur(4px); font-size: 1.05rem; padding: 16px 40px; }
.btn-hero-outline:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ARTICLE HERO — DARK ===== */
.article-hero { position: relative; padding: 200px 0 140px; overflow: hidden; }
.article-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,20,50,.78), rgba(10,20,50,.88)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
    z-index: 0;
}
.article-hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 80%, rgba(22,98,237,.14) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 80% 20%, rgba(30,58,138,.1) 0%, transparent 60%);
}
.article-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle 1.5px at 15% 25%, rgba(255,255,255,.08) 0%, transparent 100%),
        radial-gradient(circle 1px at 75% 65%, rgba(255,255,255,.06) 0%, transparent 100%),
        radial-gradient(circle 1px at 45% 85%, rgba(255,255,255,.05) 0%, transparent 100%);
}
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px);
    z-index: 0; pointer-events: none;
    animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb--1 { width: 300px; height: 300px; background: rgba(22,98,237,.1); top: 15%; right: -5%; }
.hero-orb--2 { width: 200px; height: 200px; background: rgba(30,58,138,.08); bottom: 10%; left: 5%; animation-delay: -6s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(20px,-25px) scale(1.04); }
    66% { transform: translate(-15px,15px) scale(0.96); }
}
.article-hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 780px; }
.breadcrumb-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .88rem; font-weight: 500;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color .3s;
}
.breadcrumb-link:hover { color: rgba(255,255,255,.85); }
.article-meta-row {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px; flex-wrap: wrap;
}
.article-category-badge {
    display: inline-flex; align-items: center;
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: rgba(96,165,250,.95);
    background: rgba(96,165,250,.12);
    border: 1px solid rgba(96,165,250,.2);
    padding: 5px 16px; border-radius: 50px;
}
.article-reading-time {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .82rem; font-weight: 500;
    color: rgba(255,255,255,.45);
}
.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800; line-height: 1.12;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.82) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 620px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== ARTICLE INTRO — LIGHT ===== */
.article-intro { padding: 100px 0; background: var(--white); }
.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}
.intro-image-accent {
    position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(22,98,237,.08) 0%, transparent 50%);
    pointer-events: none;
}
.intro-text h2 {
    font-size: 2rem; font-weight: 800;
    line-height: 1.2; margin-bottom: 20px;
    color: var(--ink-900);
}
.intro-text p {
    font-size: 1.05rem; color: var(--gray-600);
    line-height: 1.7; margin-bottom: 16px;
}
.intro-stats {
    display: flex; gap: 32px;
    margin-top: 32px; padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}
.intro-stat { text-align: center; }
.intro-stat-num {
    display: block; font-size: 2rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.intro-stat-label {
    font-size: .82rem; font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase; letter-spacing: .04em;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-section { padding: 0 0 80px; background: #f8fafc; }
.toc-card {
    max-width: 780px; margin: 0 auto;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    transition: box-shadow .35s var(--ease-out);
}
.toc-card:hover { box-shadow: var(--shadow-card); }
.toc-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px; color: var(--ink-900);
}
.toc-header h3 { font-size: 1.1rem; font-weight: 700; }
.toc-list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.toc-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: var(--radius-md);
    text-decoration: none; color: var(--ink-900);
    font-size: .95rem; font-weight: 500;
    transition: all .25s var(--ease-out);
}
.toc-item:hover { background: rgba(22,98,237,.06); color: var(--primary-500); }
.toc-item.active { background: rgba(22,98,237,.08); color: var(--primary-500); }
.toc-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    font-size: .72rem; font-weight: 800;
    border-radius: 50%;
    background: rgba(22,98,237,.08);
    color: var(--primary-500);
    flex-shrink: 0;
    transition: all .25s var(--ease-out);
}
.toc-item:hover .toc-num { background: var(--gradient-primary); color: #fff; }

/* ===== 6 FACTORS SECTION — DARK ===== */
.steps-section { position: relative; padding: 120px 0; overflow: hidden; }
.steps-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,20,50,.92), rgba(10,20,50,.95)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    z-index: 0;
}
.steps-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 700px 700px at 10% 90%, rgba(22,98,237,.12) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 90% 10%, rgba(30,58,138,.1) 0%, transparent 60%),
        radial-gradient(ellipse 300px 300px at 50% 50%, rgba(22,98,237,.04) 0%, transparent 50%);
}
.steps-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle 1px at 20% 15%, rgba(255,255,255,.08) 0%, transparent 100%),
        radial-gradient(circle 1px at 80% 75%, rgba(255,255,255,.06) 0%, transparent 100%),
        radial-gradient(circle 1px at 55% 40%, rgba(255,255,255,.05) 0%, transparent 100%);
}
.steps-orb {
    position: absolute; border-radius: 50%; filter: blur(90px);
    z-index: 0; pointer-events: none;
    animation: orbFloat 16s ease-in-out infinite;
}
.steps-orb--1 { width: 350px; height: 350px; background: rgba(22,98,237,.1); top: 5%; left: -8%; animation-delay: -2s; }
.steps-orb--2 { width: 260px; height: 260px; background: rgba(30,58,138,.08); bottom: 10%; right: -4%; animation-delay: -7s; }
.steps-orb--3 { width: 180px; height: 180px; background: rgba(22,98,237,.06); top: 55%; left: 50%; animation-delay: -12s; }
.steps-section .container { position: relative; z-index: 1; }

/* Progress bar */
.steps-progress { max-width: 400px; margin: -20px auto 56px; }
.steps-progress-track {
    height: 3px; background: rgba(255,255,255,.08);
    border-radius: 3px; overflow: hidden;
}
.steps-progress-fill {
    width: 0%; height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width .4s var(--ease-out);
    box-shadow: 0 0 12px rgba(22,98,237,.4);
}

/* Timeline */
.steps-timeline { max-width: 880px; margin: 0 auto; }

/* Step Card */
.step-card { margin-bottom: 0; }
.step-card-inner {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 32px;
}
.step-number-col {
    display: flex; flex-direction: column; align-items: center;
}
.step-number {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(22,98,237,.12);
    border: 2px solid rgba(22,98,237,.25);
    flex-shrink: 0;
    transition: all .5s var(--ease-out);
}
.step-number span {
    font-size: 1rem; font-weight: 800;
    color: rgba(96,165,250,.9);
    transition: color .5s var(--ease-out);
}
.step-number--final {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(22,98,237,.35);
}
.step-number--final span { color: #fff; }
.step-card.revealed .step-number {
    animation: numberPop .5s var(--ease-bounce) forwards;
}
@keyframes numberPop {
    0% { transform: scale(0.6); opacity: 0.3; }
    100% { transform: scale(1); opacity: 1; }
}
.step-line {
    width: 2px; flex: 1;
    background: linear-gradient(180deg, rgba(22,98,237,.3) 0%, rgba(22,98,237,.06) 100%);
    margin: 8px 0; min-height: 40px;
}

/* Step content */
.step-content {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    margin-bottom: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.step-content::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity .4s;
    animation: shimmerBorder 3s linear infinite paused;
}
.step-content::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(22,98,237,.04) 0%, transparent 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}
.step-card:hover .step-content {
    background: rgba(255,255,255,.06);
    border-color: rgba(22,98,237,.2);
    box-shadow: 0 8px 40px rgba(22,98,237,.12), inset 0 1px 0 rgba(255,255,255,.05);
    transform: translateX(4px);
}
.step-card:hover .step-content::before { opacity: 1; animation-play-state: running; }
.step-card:hover .step-content::after { opacity: 1; }
.step-card:hover .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(22,98,237,.35);
}
.step-card:hover .step-number span { color: #fff; }
@keyframes shimmerBorder {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.step-icon-badge {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(22,98,237,.1);
    color: rgba(96,165,250,.9);
    margin-bottom: 18px;
    transition: all .35s var(--ease-out);
}
.step-card:hover .step-icon-badge { background: rgba(22,98,237,.18); color: #93bbff; }
.step-content h3 {
    font-size: 1.4rem; font-weight: 800;
    color: var(--white);
    margin-bottom: 10px; line-height: 1.3;
    position: relative; z-index: 1;
}
.step-highlight {
    display: inline-block;
    font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    color: rgba(96,165,250,.85);
    background: rgba(96,165,250,.1);
    border: 1px solid rgba(96,165,250,.15);
    padding: 4px 14px; border-radius: 50px;
    margin-bottom: 18px;
    position: relative; z-index: 1;
}
.step-content p {
    font-size: 1.02rem; color: rgba(255,255,255,.65);
    line-height: 1.72; margin-bottom: 14px;
    position: relative; z-index: 1;
}
.step-tip {
    display: flex; align-items: flex-start; gap: 12px;
    margin-top: 20px; padding: 16px 20px;
    background: rgba(22,98,237,.08);
    border: 1px solid rgba(22,98,237,.15);
    border-radius: var(--radius-md);
    position: relative; z-index: 1;
}
.step-tip svg { flex-shrink: 0; color: rgba(96,165,250,.9); margin-top: 2px; }
.step-tip span { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.step-tip strong { color: rgba(96,165,250,.95); }

/* Step 6 — comparison card */
.step-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-top: 24px; padding: 28px 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    position: relative; z-index: 1;
}
.comparison-col h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.comparison-col ul { list-style: none; padding: 0; }
.comparison-col li {
    font-size: .92rem; color: rgba(255,255,255,.6);
    padding: 6px 0; padding-left: 18px;
    position: relative; line-height: 1.5;
}
.comparison-col li::before {
    content: '';
    position: absolute; left: 0; top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary-500);
}
.comparison-divider { display: flex; align-items: center; justify-content: center; }
.comparison-divider span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(22,98,237,.15);
    border: 1px solid rgba(22,98,237,.25);
    font-size: .72rem; font-weight: 800;
    color: rgba(96,165,250,.9);
    letter-spacing: .04em;
}

/* ===== CTA DUAL-CARD BANNER ===== */
.about-cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 960px;
    margin: 0 auto;
    gap: 24px;
    padding: 60px 24px;
}
.cta-col {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, background .4s, border-color .4s;
}
.cta-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    background: #ffffff;
    border-color: var(--gray-200);
}
.cta-col h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0 0 12px; transition: color .4s; }
.cta-col:hover h3 { color: var(--gray-900); }
.cta-col p { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 20px; transition: color .4s; }
.cta-col:hover p { color: var(--gray-500); }
.cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #1e3a8a;
    padding: 12px 28px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: .95rem;
    transition: transform .2s, box-shadow .2s, background .3s, color .3s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,98,237,.35); }
.cta-col:hover .cta-btn { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); color: #fff; }
.cta-btn .btn-arrow { transition: transform .2s; }
.cta-btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== RELATED RESOURCES  ===== */
.related-section { padding: 100px 0; background: var(--white); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-card {
    position: relative; background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    display: flex; flex-direction: column;
    transition: all .35s var(--ease-out);
}
.related-card::after {
    content: '';
    position: absolute; bottom: 0; left: 24px; right: 24px;
    height: 3px; border-radius: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity .35s var(--ease-out);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.related-card:hover::after { opacity: 1; }
.related-tag {
    display: inline-block;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--primary-500);
    background: rgba(22,98,237,.08);
    padding: 4px 14px; border-radius: 50px;
    margin-bottom: 18px; width: fit-content;
}
.related-card h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.35; margin-bottom: 12px; color: var(--ink-900); }
.related-card p { font-size: .95rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.related-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .92rem; font-weight: 600;
    color: var(--primary-500); text-decoration: none;
    transition: color .2s;
}
.related-link svg { transition: transform .3s var(--ease-out); }
.related-link:hover { color: var(--primary-700); }
.related-link:hover svg { transform: translateX(4px); }

/* ===== CONTACT CARDS ===== */
.contact-section { padding: 100px 0; background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card {
    position: relative; background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px; text-align: center;
    transition: all .35s var(--ease-out);
}
.contact-card::after {
    content: '';
    position: absolute; bottom: 0; left: 24px; right: 24px;
    height: 3px; border-radius: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity .35s var(--ease-out);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.contact-card:hover::after { opacity: 1; }
.contact-card-icon {
    width: 60px; height: 60px;
    background: rgba(22,98,237,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-500);
    transition: all .35s var(--ease-out);
}
.contact-card:hover .contact-card-icon { background: var(--gradient-primary); color: var(--white); }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.contact-card p { font-size: .95rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 4px; }
.contact-card a { color: var(--primary-500); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-section .section-header h2 { color: #fff; }
.contact-section .section-header p { color: rgba(255,255,255,.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .wdt-topbar { display: none; }
    .frogg-header { top: 0; }
    .header-actions { display: none; }
    .wdt-nav-menu { display: none !important; }
    .wdt-mobile-toggle { display: flex !important; }
    .container { padding: 0 28px; }
    .article-hero { padding: 160px 0 80px; }
    .hero-content h1 { font-size: 2.4rem; }
    .article-intro,
    .steps-section,
    .related-section,
    .contact-section { padding: 72px 0; }
    .intro-layout { grid-template-columns: 1fr; gap: 40px; }
    .toc-list { grid-template-columns: 1fr; }
    .step-card-inner { grid-template-columns: 56px 1fr; gap: 0 24px; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-orb, .steps-orb { display: none; }
    .step-comparison { grid-template-columns: 1fr; gap: 16px; }
    .comparison-divider { justify-content: flex-start; }
    .about-cta-banner { padding: 48px 24px; }
}

@media (max-width: 767px) {
    .header-inner { min-height: 74px; }
    .brand img { height: 36px; }
    .container { padding: 0 20px; }
    .article-hero { padding: 130px 0 64px; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn-hero-primary,
    .btn-hero-outline { font-size: .95rem; padding: 14px 28px; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.8rem; }
    .article-intro,
    .steps-section,
    .related-section,
    .contact-section { padding: 56px 0; }
    .intro-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    .intro-stat { text-align: left; }
    .toc-card { padding: 28px 24px; }
    .step-card-inner { grid-template-columns: 1fr; gap: 0; }
    .step-number-col { flex-direction: row; gap: 12px; align-items: center; margin-bottom: 16px; }
    .step-line { width: auto; height: 2px; flex: 1; min-height: unset; margin: 0; background: linear-gradient(90deg, rgba(22,98,237,.3) 0%, rgba(22,98,237,.06) 100%); }
    .step-content { padding: 28px 24px; margin-bottom: 24px; }
    .step-content h3 { font-size: 1.2rem; }
    .related-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .step-comparison { padding: 20px 18px; }
    .about-cta-banner {
        grid-template-columns: 1fr;
        padding: 40px 16px;
    }
    .cta-col { padding: 28px 24px; }
}