/* ===========================================
   GUIDE PAGES CSS
   Wspólne style dla stron informacyjnych/przewodników:
   - jak-dziala-dostep.ejs
   - dostep-zespolowy-przewodnik.ejs
   - inne strony typu guide
   =========================================== */

/* === LAYOUT === */
.guide-page {
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 0 20px;
}

/* === HERO SECTION === */
.guide-hero {
    text-align: center;
    padding: 0.3125rem;
    background: linear-gradient(135deg, #003153 0%, #0B4A73 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 1.875rem;
    box-shadow: 0 4px 20px rgba(0, 49, 83, 0.15);
}

.guide-hero h1 {
    font-size: 48px;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.guide-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* === KEY PRINCIPLE BANNER === */
.guide-key-principle {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
    color: #003153;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 49, 83, 0.08);
    border: 2px solid #0B4A73;
    line-height: 1.6;
}

/* === SECTION BLOCKS === */
.guide-section {
    background: white;
    border-radius: 12px;
    padding: 1.875rem;
    margin-bottom: 1.875rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.guide-section h2 {
    color: #003153;
    font-size: 32px;
    margin-top: 0;
    font-weight: 700;
    padding-bottom: 0.9375rem;
    border-bottom: 3px solid #e3f2fd;
}

.guide-section h3 {
    color: #003153;
    margin: 1.875rem 0 15px 0;
    font-weight: 600;
}

/* === TIMELINE === */
.guide-timeline {
    position: relative;
    padding-left: 2.5rem;
    border-left: 4px solid #27ae60;
    margin: 1.875rem 0;
}

.guide-timeline-item {
    margin-bottom: 1.875rem;
    position: relative;
}

.guide-timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    width: 16px;
    height: 16px;
    background: #27ae60;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #27ae60;
}

.guide-timeline-item h3 {
    color: #003153;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.guide-timeline-item p {
    color: #666;
    margin: 0;
}

/* === COMPARISON TABLE === */
.guide-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 1.875rem 0;
}

.guide-comparison-card {
    border-radius: 12px;
    text-align: center;
}

.guide-comparison-card h3 {
    font-size: 24px;
    margin-bottom: 0.9375rem;
    font-weight: 700;
}

.guide-comparison-card p {
    margin-top: 0.9375rem;
    color: #333;
    line-height: 1.8;
}

/* Comparison card variants */
.guide-comparison-card.bad {
    background: #ffebee;
    border: 2px solid #ef5350;
}

.guide-comparison-card.bad h3 {
    color: #c62828;
}

.guide-comparison-card.good {
    background: #e8f5e9;
    border: 2px solid #27ae60;
}

.guide-comparison-card.good h3 {
    color: #0B4A73;
}

.guide-comparison-card.individual {
    background: #e3f2fd;
    border: 2px solid #2196f3;
}

.guide-comparison-card.individual h3 {
    color: #1976d2;
}

.guide-comparison-card.team {
    background: #e8f5e9;
    border: 2px solid #27ae60;
}

.guide-comparison-card.team h3 {
    color: #27ae60;
}

/* === FEATURE LIST === */
.guide-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.guide-feature-list li::before {
    content: '•';
    color: #0B4A73;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

/* === VISUAL EXAMPLE / CODE EXAMPLE === */
.guide-example {
    background: #f8f9fa;
    padding: 1.875rem;
    border-radius: 12px;
    margin: 1.875rem 0;
    border-left: 6px solid #003153;
}

.guide-example.success {
    border-left-color: #27ae60;
}

.guide-example h4 {
    color: #003153;
    margin-bottom: 0.9375rem;
    font-size: 20px;
    font-weight: 600;
}

.guide-example p {
    margin: 0.625rem 0;
    line-height: 1.6;
}

/* Date/Code boxes */
.guide-box {
    display: inline-block;
    background: white;
    padding: 0.9375rem 1.5625rem;
    border-radius: 8px;
    margin: 0.625rem 0.625rem 0.625rem 0;
    border: 2px solid #27ae60;
    font-weight: 600;
}

.guide-box.dashed {
    border-style: dashed;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: #27ae60;
}

.guide-arrow {
    display: inline-block;
    color: #27ae60;
    font-size: 24px;
    margin: 0 10px;
    vertical-align: middle;
}

/* === ROLES TABLE === */
.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
}

.guide-table th,
.guide-table td {
    padding: 0.9375rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.guide-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #003153;
}

.guide-table tr:hover {
    background: #f8fbff;
}

.guide-table .check {
    color: #27ae60;
    font-weight: bold;
}

.guide-table .cross {
    color: #c62828;
    font-weight: bold;
}

/* === WARNING BOX === */
.guide-warning {
    background: #fff8e1;
    padding: 1.25rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    border-left: 6px solid #f57c00;
}

.guide-warning h4 {
    color: #e65100;
    margin-bottom: 0.625rem;
}

.guide-warning p {
    color: #5d4037;
    margin: 0;
}

/* === FAQ === */
.guide-faq {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 0.9375rem;
    border-left: 4px solid #003153;
}

.guide-faq h4 {
    color: #003153;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.guide-faq p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* === CTA SECTION === */
.guide-cta {
    background: linear-gradient(315deg, #003153 0%, #0B4A73 100%);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.25rem 0;
    box-shadow: 0 4px 20px rgba(0, 49, 83, 0.15);
}

.guide-cta h2 {
    color: white;
    margin-bottom: 1.25rem;
    border-bottom: none;
    padding-bottom: 0;
}

.guide-cta p {
    font-size: 18px;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.guide-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-btn {
    background: white;
    color: #003153;
    padding: 0.75rem 2.5rem;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
}

.guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #f8fbff;
}

.guide-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.guide-btn.outline:hover {
    background: rgba(255,255,255,0.1);
}

.guide-cta-note {
    margin-top: 1.25rem;
    font-size: 14px;
    opacity: 0.95;
}

/* === REGISTER CTA === */
.guide-register-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e3f2fd;
}

.guide-register-cta h2 {
    color: #003153;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
}

.guide-register-cta .btn-primary {
    display: inline-block;
    background: #F39C12;
    color: #fff;
    padding: 0.5rem 11rem;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.guide-register-cta .btn-primary:hover {
    background: #e08e0b;
    transform: translateY(-1px);
}

/* === VALUE PROPOSITION SECTION === */
.guide-value-intro {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.guide-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.guide-value-card {
    background: #f8fbff;
    border: 1px solid #e3f2fd;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.guide-value-card,
.guide-value-card h3,
.guide-value-card p {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.guide-value-card:hover {
    box-shadow: 0 8px 20px rgba(0, 61, 130, 0.15);
    border-color: #0B4A73;
    background: #ffffff;
}

.guide-value-icon {
    width: 52px;
    height: 52px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.guide-value-card h3 {
    color: #003153;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.guide-value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.guide-pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F39C12, #e08e0b);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    vertical-align: middle;
    letter-spacing: 0.3px;
}

.guide-feature-item-content {
    flex: 1;
    min-width: 0;
}

.guide-feature-item-title {
    display: inline-block;
    margin-right: 0.25rem;
    font-weight: 700;
    color: #003153;
}

/* === FAQ ACCORDION === */
.faq-accordion-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #003153;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 2px 8px rgba(0, 49, 83, 0.1);
}

.faq-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.faq-accordion-header h3 {
    color: #003153;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-accordion-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #0B4A73;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-accordion-content {
    padding: 0 1.25rem 1.25rem;
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

.faq-accordion-content p {
    margin: 0.5rem 0;
}

.faq-accordion-content strong {
    color: #213445;
}

.faq-accordion-content ul,
.faq-accordion-content ol {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.faq-accordion-content li {
    margin-bottom: 0.375rem;
    line-height: 1.6;
}

.faq-accordion-content a {
    color: #0B4A73;
    text-decoration: underline;
}

.faq-accordion-content a:hover {
    color: #003153;
}

.guide-animations-enabled .guide-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--guide-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.guide-animations-enabled .guide-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.about-page {
    max-width: 1080px;
}

.about-hero {
    padding: 2.5rem 2rem;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: center;
}

.about-intro-section p:not(.guide-value-intro),
.about-clarity-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.about-clarity-section p:last-child {
    margin-bottom: 0;
}

.about-trust-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f9ff 100%);
    border: 1px solid rgba(11, 74, 115, 0.18);
    box-shadow: 0 18px 42px rgba(0, 49, 83, 0.12);
}

.about-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #003153 0%, #0B4A73 60%, #F39C12 100%);
}

.about-trust-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(11, 74, 115, 0.1);
    color: #003153;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-trust-list {
    display: grid;
    gap: 0.875rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-trust-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.about-trust-list li > span {
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: #0B4A73;
    box-shadow: 0 0 0 5px rgba(11, 74, 115, 0.12);
}

.about-trust-list p {
    color: #213445;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
}

.about-mission-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
}

.about-mission-header {
    position: relative;
    max-width: 820px;
    margin-bottom: 1.75rem;
}

.about-mission-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.875rem;
    border-radius: 999px;
    background: rgba(11, 74, 115, 0.1);
    color: #003153;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-mission-header p {
    color: #4d5f70;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.about-mission-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-mission-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(11, 74, 115, 0.14);
    box-shadow: 0 14px 34px rgba(0, 49, 83, 0.08);
}

.about-mission-card-highlight {
    border-color: rgba(243, 156, 18, 0.36);
    background: linear-gradient(145deg, #fffdf8 0%, #ffffff 100%);
}

.about-mission-card h3 {
    color: #003153;
    font-size: 19px;
    margin: 0 0 0.75rem;
}

.about-mission-card p {
    color: #5c6670;
    line-height: 1.7;
    margin: 0;
}

.about-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-audience-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px solid #e3f2fd;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 49, 83, 0.12);
    border-color: #0B4A73;
}

.about-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: #e3f2fd;
    color: #0B4A73;
}

.about-card-icon svg {
    width: 30px;
    height: 30px;
}

.about-card-icon--wide {
    width: 64px;
}

.about-card-icon--wide svg {
    width: 52px;
    height: 26px;
}

.about-audience-card h3 {
    color: #003153;
    font-size: 19px;
    margin: 0 0 0.75rem;
}

.about-audience-card p {
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.about-audience-card a {
    color: #0B4A73;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-audience-card a:hover,
.about-audience-card a:focus {
    color: #003153;
}

.about-process {
    display: grid;
    gap: 16px;
}

.about-process-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 1.25rem;
    border-radius: 12px;
    background: #f8f9fa;
    border-left: 5px solid #0B4A73;
}

.about-process-item span {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #003153;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
}

.about-process-item h3 {
    margin: 0 0 0.5rem;
    color: #003153;
    font-size: 18px;
}

.about-process-item p {
    margin: 0;
    color: #666;
    line-height: 1.65;
}

.about-principles-grid {
    grid-template-columns: repeat(3, 1fr);
}

.about-clarity-section {
    border-left: 6px solid #F39C12;
}

.about-cta {
    padding: 2rem;
}

.candidate-landing-page {
    max-width: 1180px;
    width: 100%;
    box-sizing: border-box;
}

.candidate-hero,
.candidate-hero *,
.recruiter-hero,
.recruiter-hero * {
    box-sizing: border-box;
}

.candidate-hero {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding: 2.25rem 2.25rem;
    text-align: left;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 49, 83, 0.22);
}

.candidate-hero::before {
    content: '';
    position: absolute;
    top: -110px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.candidate-hero::after,
.recruiter-hero::after {
    content: '';
    position: absolute;
    right: 12%;
    bottom: -95px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.13);
    filter: blur(2px);
}

.candidate-hero > * {
    position: relative;
    z-index: 1;
}

.candidate-hero-layout,
.recruiter-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.78fr);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 34px;
    align-items: center;
}

.candidate-hero-copy,
.recruiter-hero-copy {
    min-width: 0;
    max-width: 100%;
}

.candidate-hero h1 {
    font-size: 42px;
    max-width: 720px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.1;
    overflow-wrap: break-word;
}

.candidate-hero p {
    max-width: 640px;
    line-height: 1.65;
    margin-left: 0;
    margin-right: 0;
    overflow-wrap: break-word;
}

.candidate-hero-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 1.35rem;
    margin-bottom: 1.15rem;
}

.candidate-hero-proof,
.recruiter-hero-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    max-width: 700px;
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
}

.candidate-hero-proof li,
.recruiter-hero-proof li {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.candidate-hero-proof li::before,
.recruiter-hero-proof li::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #F39C12;
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.18);
    flex: 0 0 auto;
}

.landing-hero-microcopy {
    margin-top: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.6;
}

.landing-hero-panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1.35rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
    color: #213445;
    transform: rotate(1deg);
}

.landing-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(243, 156, 18, 0.13), transparent 36%);
    pointer-events: none;
}

.landing-hero-panel > * {
    position: relative;
    z-index: 1;
}

.landing-panel-topbar {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.landing-panel-topbar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d8e7f2;
}

.landing-panel-topbar span:first-child {
    background: #F39C12;
}

.landing-panel-badge {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(11, 74, 115, 0.1);
    color: #003153;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.landing-panel-title {
    margin: 1rem 0 0.85rem;
    color: #003153;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.landing-panel-meta,
.landing-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.landing-panel-meta span,
.landing-panel-tags span {
    display: inline-flex;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #f3f9ff;
    color: #0B4A73;
    font-size: 12px;
    font-weight: 700;
}

.landing-panel-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 0.8rem 0;
    border-top: 1px solid #e3f2fd;
    font-size: 13px;
}

.landing-panel-row span {
    color: #6b7785;
}

.landing-panel-row strong {
    color: #003153;
    text-align: right;
}

.landing-search-preview {
    padding: 0.9rem 1rem;
    margin: 1rem 0;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e3f2fd;
}

.landing-search-preview span {
    display: block;
    margin-bottom: 0.25rem;
    color: #6b7785;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-search-preview strong {
    color: #003153;
    font-size: 18px;
}

.recruiter-panel-slider {
    position: relative;
    display: grid;
    min-height: 238px;
}

.recruiter-panel-slide {
    position: relative;
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(18px, 0, 0) scale(0.985);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.72s;
    pointer-events: none;
    will-change: opacity, transform;
}

.recruiter-panel-slide-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
    pointer-events: auto;
}

.recruiter-contact-preview {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 0.95rem 1rem;
    margin: 1rem 0;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e3f2fd;
}

.recruiter-contact-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #003153;
    color: #fff;
    font-weight: 800;
}

.recruiter-contact-preview strong {
    display: block;
    color: #003153;
    font-size: 15px;
    margin-bottom: 0.2rem;
}

.recruiter-contact-preview p {
    color: #5c6670;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.recruiter-panel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 0.35rem 0 0.75rem;
}

.recruiter-panel-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8e7f2;
    transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.42s ease;
}

.recruiter-panel-dots .recruiter-panel-dot-active {
    width: 22px;
    border-radius: 999px;
    background: #F39C12;
}

.landing-panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 0.25rem;
    border-radius: 10px;
    background: #003153;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-panel-link:hover,
.landing-panel-link:focus {
    background: #0B4A73;
    box-shadow: 0 12px 28px rgba(0, 49, 83, 0.18);
    transform: translateY(-2px);
}

.landing-panel-link:focus-visible {
    outline: 3px solid #F39C12;
    outline-offset: 3px;
}

.landing-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: -0.75rem 0 1.875rem;
}

.landing-proof-strip article {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(11, 74, 115, 0.12);
    box-shadow: 0 14px 34px rgba(0, 49, 83, 0.08);
}

.landing-proof-strip article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #003153 0%, #0B4A73 65%, #F39C12 100%);
}

.landing-proof-strip span {
    display: block;
    margin-bottom: 0.35rem;
    color: #003153;
    font-size: 15px;
    font-weight: 800;
}

.landing-proof-strip p {
    color: #5c6670;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.candidate-primary-btn,
.candidate-secondary-btn,
.candidate-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.candidate-primary-btn {
    background: #fff;
    color: #003153;
    border: 2px solid #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.candidate-secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.86);
}

.candidate-primary-btn:hover,
.candidate-primary-btn:focus,
.candidate-secondary-btn:hover,
.candidate-secondary-btn:focus,
.candidate-card-btn:hover,
.candidate-card-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 49, 83, 0.18);
}

.candidate-primary-btn:hover,
.candidate-primary-btn:focus {
    background: #f8fbff;
}

.candidate-secondary-btn:hover,
.candidate-secondary-btn:focus {
    background: rgba(255, 255, 255, 0.12);
}

.candidate-primary-btn:focus-visible,
.candidate-secondary-btn:focus-visible,
.candidate-card-btn:focus-visible {
    outline: 3px solid #F39C12;
    outline-offset: 3px;
}

.candidate-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
}

.candidate-intro-section p:not(.guide-value-intro) {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.candidate-trust-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f9ff 100%);
    border: 1px solid rgba(11, 74, 115, 0.18);
    box-shadow: 0 18px 42px rgba(0, 49, 83, 0.12);
}

.candidate-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #003153 0%, #0B4A73 62%, #F39C12 100%);
}

.candidate-trust-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(11, 74, 115, 0.1);
    color: #003153;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.candidate-trust-list {
    display: grid;
    gap: 0.875rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.candidate-trust-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.candidate-trust-list li > span {
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: #0B4A73;
    box-shadow: 0 0 0 5px rgba(11, 74, 115, 0.12);
}

.candidate-trust-list p {
    color: #213445;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
}

.candidate-action-section {
    padding: 1.875rem;
    margin-bottom: 1.875rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid rgba(11, 74, 115, 0.14);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.candidate-action-section h2 {
    color: #003153;
    font-size: 32px;
    margin-top: 0;
    font-weight: 700;
    padding-bottom: 0.9375rem;
    border-bottom: 3px solid #e3f2fd;
}

.candidate-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.candidate-action-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(11, 74, 115, 0.14);
    box-shadow: 0 14px 34px rgba(0, 49, 83, 0.08);
}

.candidate-action-card-highlight {
    border-color: rgba(243, 156, 18, 0.36);
    background: linear-gradient(145deg, #fffdf8 0%, #ffffff 100%);
}

.candidate-action-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #003153;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.candidate-action-card h3,
.candidate-process-card h3,
.candidate-safety-grid h3 {
    color: #003153;
    margin: 0 0 0.75rem;
    font-size: 19px;
}

.candidate-action-card p,
.candidate-process-card p,
.candidate-safety-grid p {
    color: #5c6670;
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.candidate-card-btn {
    width: 100%;
    background: #f8fbff;
    color: #003153;
    border: 2px solid rgba(11, 74, 115, 0.2);
}

.candidate-card-btn-primary {
    background: #003153;
    color: #fff;
    border-color: #003153;
}

.candidate-card-btn:hover,
.candidate-card-btn:focus {
    background: #eaf4fb;
    border-color: #0B4A73;
}

.candidate-card-btn-primary:hover,
.candidate-card-btn-primary:focus {
    background: #0B4A73;
    border-color: #0B4A73;
}

.candidate-benefits-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.candidate-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.candidate-benefit-card,
.candidate-faq-card,
.recruiter-flow-card,
.recruiter-faq-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 74, 115, 0.14);
    box-shadow: 0 12px 30px rgba(0, 49, 83, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.candidate-benefit-card:hover,
.candidate-faq-card:hover,
.recruiter-flow-card:hover,
.recruiter-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 49, 83, 0.12);
    border-color: rgba(11, 74, 115, 0.32);
}

.candidate-benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: #e3f2fd;
    color: #0B4A73;
}

.candidate-benefit-icon svg {
    width: 30px;
    height: 30px;
}

.candidate-benefit-card h3,
.candidate-faq-card h3,
.recruiter-flow-card h3,
.recruiter-faq-card h3 {
    color: #003153;
    margin: 0 0 0.75rem;
    font-size: 19px;
}

.candidate-benefit-card p,
.candidate-faq-card p,
.recruiter-flow-card p,
.recruiter-faq-card p {
    color: #5c6670;
    line-height: 1.7;
    margin: 0;
}

.candidate-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.candidate-process-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px solid #e3f2fd;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.candidate-process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 49, 83, 0.12);
    border-color: #0B4A73;
}

.candidate-process-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: #e3f2fd;
    color: #0B4A73;
}

.candidate-process-icon svg {
    width: 30px;
    height: 30px;
}

.candidate-safety-section {
    border-left: 6px solid #F39C12;
}

.candidate-safety-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.candidate-safety-grid article {
    padding: 1.35rem;
    border-radius: 12px;
    background: #f8f9fa;
}

.candidate-faq-section,
.recruiter-faq-section {
    background: linear-gradient(145deg, #f8fbff 0%, #ffffff 100%);
}

.candidate-faq-grid,
.recruiter-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.candidate-final-cta {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 49, 83, 0.2);
}

.candidate-final-cta::before,
.recruiter-final-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.landing-cta-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.recruiter-landing-page {
    max-width: 1180px;
    width: 100%;
    box-sizing: border-box;
}

.recruiter-hero {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding: 2.25rem 2.25rem;
    text-align: left;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 49, 83, 0.22);
}

.recruiter-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.recruiter-hero > * {
    position: relative;
    z-index: 1;
}

.recruiter-hero h1 {
    font-size: 42px;
    max-width: 720px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.1;
    overflow-wrap: break-word;
}

.recruiter-hero p {
    max-width: 640px;
    line-height: 1.65;
    margin-left: 0;
    margin-right: 0;
    overflow-wrap: break-word;
}

.recruiter-hero-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 1.35rem;
    margin-bottom: 1.15rem;
}

.recruiter-primary-btn,
.recruiter-secondary-btn,
.recruiter-access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.recruiter-primary-btn {
    background: #fff;
    color: #003153;
    border: 2px solid #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.recruiter-secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.86);
}

.recruiter-primary-btn:hover,
.recruiter-primary-btn:focus,
.recruiter-secondary-btn:hover,
.recruiter-secondary-btn:focus,
.recruiter-access-btn:hover,
.recruiter-access-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 49, 83, 0.18);
}

.recruiter-primary-btn:hover,
.recruiter-primary-btn:focus {
    background: #f8fbff;
}

.recruiter-secondary-btn:hover,
.recruiter-secondary-btn:focus {
    background: rgba(255, 255, 255, 0.12);
}

.recruiter-primary-btn:focus-visible,
.recruiter-secondary-btn:focus-visible,
.recruiter-access-btn:focus-visible {
    outline: 3px solid #F39C12;
    outline-offset: 3px;
}

.recruiter-intro-grid,
.recruiter-access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
}

.recruiter-intro-section p:not(.guide-value-intro),
.recruiter-access-section p:not(.guide-value-intro) {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.recruiter-trust-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f9ff 100%);
    border: 1px solid rgba(11, 74, 115, 0.18);
    box-shadow: 0 18px 42px rgba(0, 49, 83, 0.12);
}

.recruiter-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #003153 0%, #0B4A73 62%, #F39C12 100%);
}

.recruiter-trust-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(11, 74, 115, 0.1);
    color: #003153;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.recruiter-trust-list {
    display: grid;
    gap: 0.875rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recruiter-trust-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.recruiter-trust-list li > span {
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: #0B4A73;
    box-shadow: 0 0 0 5px rgba(11, 74, 115, 0.12);
}

.recruiter-trust-list p {
    color: #213445;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
}

.recruiter-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.recruiter-benefit-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fbff;
    border: 1px solid #e3f2fd;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.recruiter-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 49, 83, 0.12);
    border-color: #0B4A73;
}

.recruiter-benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: #e3f2fd;
    color: #0B4A73;
}

.recruiter-benefit-icon svg {
    width: 30px;
    height: 30px;
}

.recruiter-benefit-card h3,
.recruiter-access-section h2 {
    color: #003153;
}

.recruiter-benefit-card h3 {
    margin: 0 0 0.75rem;
    font-size: 19px;
}

.recruiter-benefit-card p {
    color: #5c6670;
    line-height: 1.7;
    margin: 0;
}

.recruiter-flow-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.recruiter-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.recruiter-flow-card span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #003153;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 0 0 7px rgba(11, 74, 115, 0.1);
}

.recruiter-access-section {
    border-left: 6px solid #F39C12;
    background: linear-gradient(145deg, #ffffff 0%, #fffaf0 100%);
}

.recruiter-access-btn {
    width: 100%;
    background: #003153;
    color: #fff;
    border: 2px solid #003153;
}

.recruiter-access-btn:hover,
.recruiter-access-btn:focus {
    background: #0B4A73;
    border-color: #0B4A73;
}

.recruiter-final-cta {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 49, 83, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .guide-animations-enabled .guide-reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }

    .candidate-primary-btn,
    .candidate-secondary-btn,
    .candidate-card-btn,
    .candidate-process-card,
    .candidate-benefit-card,
    .candidate-faq-card,
    .landing-panel-link,
    .landing-proof-strip article,
    .recruiter-panel-slide,
    .recruiter-panel-dots span,
    .recruiter-primary-btn,
    .recruiter-secondary-btn,
    .recruiter-access-btn,
    .recruiter-benefit-card,
    .recruiter-flow-card,
    .recruiter-faq-card {
        transition: none;
    }

    .candidate-primary-btn:hover,
    .candidate-primary-btn:focus,
    .candidate-secondary-btn:hover,
    .candidate-secondary-btn:focus,
    .candidate-card-btn:hover,
    .candidate-card-btn:focus,
    .candidate-process-card:hover,
    .candidate-benefit-card:hover,
    .candidate-faq-card:hover,
    .landing-panel-link:hover,
    .landing-panel-link:focus,
    .recruiter-primary-btn:hover,
    .recruiter-primary-btn:focus,
    .recruiter-secondary-btn:hover,
    .recruiter-secondary-btn:focus,
    .recruiter-access-btn:hover,
    .recruiter-access-btn:focus,
    .recruiter-benefit-card:hover,
    .recruiter-flow-card:hover,
    .recruiter-faq-card:hover {
        transform: none;
    }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .guide-page {
        margin: 1.875rem auto;
    }

    .guide-hero h1 {
        font-size: 40px;
    }

    .guide-hero p {
        font-size: 18px;
    }

    .guide-key-principle {
        padding: 1.125rem 1.25rem;
        font-size: 18px;
    }

    .guide-section {
        padding: 1.625rem;
    }

    .guide-section h2 {
        font-size: 28px;
    }

    .guide-comparison-card h3 {
        font-size: 20px;
    }

    .guide-example h4 {
        font-size: 18px;
    }

    .guide-cta h2 {
        font-size: 28px;
    }

    .guide-register-cta h2 {
        font-size: 22px;
    }

    .guide-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-value-intro {
        font-size: 17px;
    }

    .about-hero {
        padding: 2rem 1.5rem;
    }

    .about-intro-grid {
        grid-template-columns: minmax(0, 1fr) 240px;
        gap: 22px;
    }

    .about-audience-grid,
    .about-mission-grid,
    .about-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .candidate-hero {
        padding: 1.75rem 1.5rem;
    }

    .candidate-hero-layout,
    .recruiter-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
        gap: 24px;
    }

    .candidate-hero h1,
    .recruiter-hero h1 {
        font-size: 36px;
    }

    .landing-hero-panel {
        padding: 1.15rem;
    }

    .landing-panel-title {
        font-size: 20px;
    }

    .recruiter-panel-slider {
        min-height: 224px;
    }

    .candidate-intro-grid {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 22px;
    }

    .recruiter-hero {
        padding: 1.75rem 1.5rem;
    }

    .recruiter-intro-grid,
    .recruiter-access-grid {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 22px;
    }

    .candidate-action-section h2 {
        font-size: 28px;
    }

    .candidate-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .candidate-benefits-grid,
    .candidate-faq-grid,
    .recruiter-benefits-grid,
    .recruiter-flow-grid,
    .recruiter-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .guide-page {
        margin: 1.25rem auto;
        padding: 0 15px;
    }
    
    .guide-hero h1 {
        font-size: 28px;
        margin-bottom: 0.9375rem;
    }
    
    .guide-hero p {
        font-size: 16px;
    }
    
    .guide-key-principle {
        padding: 1.125rem 1rem;
        font-size: 16px;
        margin-bottom: 1.25rem;
    }

    .guide-section {
        padding: 1.25rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .guide-section h2 {
        font-size: 24px;
        margin-bottom: 1.25rem;
    }

    .guide-section h3 {
        margin: 1.25rem 0 12px 0;
    }
    
    .guide-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guide-comparison-card h3 {
        font-size: 18px;
    }

    .guide-comparison-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .guide-example {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }

    .guide-example h4 {
        font-size: 16px;
    }

    .guide-example p {
        font-size: 0.95rem;
    }
    
    .guide-box {
        padding: 0.625rem 0.9375rem;
        font-size: 14px;
        display: block;
        margin: 0.625rem 0;
    }
    
    .guide-arrow {
        display: block;
        text-align: center;
        margin: 0.3125rem 0;
    }
    
    .guide-table {
        font-size: 14px;
    }
    
    .guide-table th,
    .guide-table td {
        padding: 0.625rem 0.5rem;
    }

    .guide-feature-list li {
        font-size: 15px;
        padding: 0.625rem 0;
    }

    .guide-feature-item-title {
        margin-right: 0.1875rem;
    }

    .guide-feature-list li::before {
        font-size: 24px;
    }

    .faq-accordion-header {
        padding: 1rem 1.125rem;
    }

    .faq-accordion-header h3 {
        font-size: 16px;
    }

    .faq-accordion-content {
        padding: 0 1.125rem 1.125rem;
        font-size: 14px;
    }

    .guide-faq {
        padding: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .guide-faq h4 {
        font-size: 1rem;
    }

    .guide-faq p {
        font-size: 0.95rem;
    }

    .guide-warning {
        padding: 0.9375rem;
    }

    .guide-cta h2 {
        font-size: 24px;
        margin-bottom: 0.9375rem;
    }

    .guide-cta p {
        font-size: 16px;
        margin-bottom: 0.9375rem;
    }
    
    .guide-btn {
        padding: 0.75rem 2rem;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .guide-cta-buttons {
        flex-direction: column;
    }

    .guide-cta-note {
        font-size: 13px;
    }
    
    .guide-timeline {
        padding-left: 1.875rem;
        margin: 1.25rem 0;
    }
    
    .guide-timeline-item::before {
        left: -36px;
        width: 12px;
        height: 12px;
    }

    .guide-timeline-item {
        margin-bottom: 1.5625rem;
    }

    .guide-timeline-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .guide-timeline-item p {
        font-size: 0.9rem;
    }

    .guide-info-modal .modal-content {
        padding: 1.5rem;
        margin: 0 15px;
    }

    .guide-info-modal .modal-content h3 {
        font-size: 20px;
    }

    .guide-info-modal .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 15px;
    }

    .guide-register-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .guide-register-cta h2 {
        font-size: 20px;
    }

    .guide-register-cta .btn-primary {
        padding: 0.625rem 2rem;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }

    .guide-value-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .guide-value-intro {
        font-size: 16px;
        margin-bottom: 1.25rem;
    }

    .guide-value-card {
        padding: 1.25rem 1rem;
    }

    .about-hero {
        padding: 1.5rem 1rem;
    }

    .about-eyebrow {
        font-size: 11px;
        margin-bottom: 0.75rem;
    }

    .about-intro-grid,
    .about-audience-grid,
    .about-mission-grid,
    .about-principles-grid {
        grid-template-columns: 1fr;
    }

    .about-mission-header {
        margin-bottom: 1.25rem;
    }

    .about-mission-card {
        padding: 1.25rem;
    }

    .about-trust-card {
        padding: 1.25rem;
    }

    .about-trust-list {
        gap: 0.75rem;
    }

    .about-audience-card {
        padding: 1.25rem;
    }

    .about-process-item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 1rem;
    }

    .about-process-item span {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .about-cta {
        padding: 1.5rem 1rem;
    }

    .candidate-hero {
        padding: 1.25rem 1rem;
        text-align: center;
    }

    .candidate-hero-layout,
    .recruiter-hero-layout {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
        gap: 18px;
    }

    .candidate-hero h1,
    .candidate-hero p,
    .recruiter-hero h1,
    .recruiter-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .candidate-hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0.95rem;
    }

    .candidate-hero-proof,
    .recruiter-hero-proof {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .candidate-hero-proof li,
    .recruiter-hero-proof li {
        justify-content: center;
        width: 100%;
    }

    .landing-hero-panel {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        text-align: left;
        transform: none;
    }

    .landing-proof-strip {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: -0.25rem;
        margin-bottom: 1.25rem;
    }

    .candidate-primary-btn,
    .candidate-secondary-btn,
    .candidate-card-btn {
        width: 100%;
        min-height: 42px;
        padding: 0.65rem 1.15rem;
        font-size: 14px;
    }

    .candidate-intro-grid,
    .candidate-action-grid,
    .candidate-benefits-grid,
    .candidate-process-grid,
    .candidate-safety-grid,
    .candidate-faq-grid {
        grid-template-columns: 1fr;
    }

    .candidate-action-section {
        padding: 1.25rem 1rem;
        margin-bottom: 1.25rem;
    }

    .candidate-action-section h2 {
        font-size: 24px;
        margin-bottom: 1.25rem;
    }

    .candidate-action-card,
    .candidate-benefit-card,
    .candidate-process-card,
    .candidate-trust-card,
    .candidate-faq-card {
        padding: 1.25rem;
    }

    .candidate-safety-grid article {
        padding: 1.125rem;
    }

    .candidate-final-cta {
        padding: 1.35rem 1rem;
    }

    .recruiter-final-cta {
        padding: 1.35rem 1rem;
    }

    .recruiter-hero {
        padding: 1.25rem 1rem;
        text-align: center;
    }

    .recruiter-hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0.95rem;
    }

    .candidate-primary-btn,
    .candidate-secondary-btn,
    .candidate-card-btn,
    .recruiter-primary-btn,
    .recruiter-secondary-btn,
    .recruiter-access-btn {
        width: 100%;
        max-width: 100%;
        min-height: 42px;
    }

    .candidate-intro-grid,
    .candidate-safety-grid,
    .recruiter-intro-grid,
    .recruiter-access-grid,
    .recruiter-flow-grid,
    .recruiter-faq-grid {
        grid-template-columns: 1fr;
    }

    .candidate-process-grid,
    .candidate-benefits-grid,
    .candidate-faq-grid {
        grid-template-columns: 1fr;
    }

    .recruiter-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .guide-page {
        margin: 0.9375rem auto;
        padding: 0 12px;
    }

    .guide-hero {
        border-radius: 6px;
    }

    .guide-hero h1 {
        font-size: 26px;
    }

    .guide-hero p {
        font-size: 15px;
    }

    .guide-key-principle {
        padding: 1rem 0.875rem;
        font-size: 15px;
        border-radius: 6px;
    }

    .guide-section {
        padding: 1.125rem 0.875rem;
        border-radius: 10px;
    }

    .guide-section h2 {
        font-size: 22px;
        padding-bottom: 0.75rem;
    }

    .guide-comparison-card {
        border-radius: 10px;
    }

    .guide-example {
        padding: 1.125rem;
        border-radius: 10px;
    }

    .guide-box {
        padding: 0.5rem 0.75rem;
        font-size: 14px;
        border-radius: 6px;
    }

    .guide-box.dashed {
        font-size: 15px;
    }

    .guide-timeline {
        padding-left: 1.5625rem;
        border-left-width: 3px;
    }

    .guide-timeline-item::before {
        left: -30px;
        width: 10px;
        height: 10px;
        border-width: 3px;
    }

    .guide-cta h2 {
        font-size: 22px;
    }

    .guide-btn {
        padding: 0.75rem 2rem;
        font-size: 15px;
    }

    .guide-value-card h3 {
        font-size: 16px;
    }

    .guide-value-icon {
        width: 46px;
        height: 46px;
    }

    .guide-value-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-card-icon {
        width: 46px;
        height: 46px;
    }

    .about-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .about-card-icon--wide {
        width: 56px;
    }

    .about-card-icon--wide svg {
        width: 46px;
        height: 23px;
    }

    .about-audience-card h3,
    .about-process-item h3 {
        font-size: 17px;
    }

    .candidate-hero {
        padding: 1.25rem 0.875rem;
        border-radius: 14px;
    }

    .recruiter-hero {
        padding: 1.25rem 0.875rem;
        border-radius: 14px;
    }

    .landing-hero-panel {
        max-width: 100%;
        border-radius: 16px;
        padding: 1rem;
    }

    .landing-panel-row {
        display: block;
    }

    .landing-panel-row strong {
        display: block;
        margin-top: 0.25rem;
        text-align: left;
    }

    .candidate-action-section {
        padding: 1.125rem 0.875rem;
        border-radius: 10px;
    }

    .candidate-action-section h2 {
        font-size: 22px;
        padding-bottom: 0.75rem;
    }

    .candidate-action-card,
    .candidate-benefit-card,
    .candidate-process-card,
    .candidate-trust-card,
    .candidate-safety-grid article,
    .candidate-faq-card,
    .landing-proof-strip article,
    .recruiter-flow-card,
    .recruiter-faq-card {
        border-radius: 10px;
    }

    .candidate-process-icon {
        width: 46px;
        height: 46px;
    }

    .candidate-process-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .guide-page {
        margin: 0.625rem auto;
        padding: 0 10px;
    }
    
    .guide-hero h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .recruiter-hero h1 {
        font-size: 22px;
    }

    .guide-hero p {
        font-size: 14px;
    }

    .guide-key-principle {
        padding: 0.875rem 0.75rem;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .guide-section {
        padding: 1rem 0.75rem;
    }
    
    .guide-section h2 {
        font-size: 20px;
        margin-bottom: 1.125rem;
    }

    .guide-section h3 {
        font-size: 1rem;
    }

    .guide-comparison-card h3 {
        font-size: 16px;
    }

    .guide-comparison-card p {
        font-size: 0.9rem;
    }

    .guide-example {
        padding: 1rem;
    }

    .guide-example h4 {
        font-size: 15px;
    }

    .guide-example p {
        font-size: 0.9rem;
    }

    .guide-info-modal .modal-content {
        padding: 1rem;
        margin: 0 10px;
        max-width: 300px;
        border-radius: 8px;
    }

    .guide-info-modal .modal-content h3 {
        font-size: 16px;
        margin-bottom: 0.5rem;
    }

    .guide-info-modal .modal-content p {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .guide-info-modal .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 13px;
        min-width: 80px;
    }
    
    .guide-feature-list li {
        font-size: 14px;
        gap: 10px;
    }

    .guide-feature-item-title {
        display: block;
        margin-right: 0;
        margin-bottom: 0.125rem;
    }

    .guide-feature-list li::before {
        font-size: 20px;
    }
    
    .faq-accordion-header {
        padding: 0.875rem 0.9375rem;
        gap: 10px;
    }

    .faq-accordion-header h3 {
        font-size: 15px;
    }

    .faq-accordion-icon {
        width: 20px;
        height: 20px;
    }

    .faq-accordion-content {
        padding: 0 0.9375rem 0.9375rem;
        font-size: 14px;
    }

    .guide-faq {
        padding: 0.9375rem;
    }

    .guide-faq h4 {
        font-size: 0.95rem;
    }

    .guide-faq p {
        font-size: 0.9rem;
    }

    .guide-table th,
    .guide-table td {
        padding: 0.5rem 0.375rem;
        font-size: 13px;
    }

    .guide-warning {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .guide-warning h4 {
        font-size: 0.95rem;
    }

    .guide-timeline-item h3 {
        font-size: 0.95rem;
    }

    .guide-timeline-item p {
        font-size: 0.85rem;
    }

    .guide-info-modal .modal-content {
        padding: 1.25rem;
        margin: 0 12px;
        max-width: 340px;
    }

    .guide-info-modal .modal-content h3 {
        font-size: 18px;
        margin-bottom: 0.75rem;
    }

    .guide-info-modal .modal-content p {
        font-size: 14px;
        margin-bottom: 1.25rem;
    }

    .guide-info-modal .btn-primary {
        padding: 0.625rem 1.125rem;
        font-size: 14px;
    }

    .guide-cta h2 {
        font-size: 20px;
    }

    .guide-cta p {
        font-size: 14px;
    }

    .guide-btn {
        padding: 0.625rem 1.25rem;
        font-size: 14px;
    }

    .guide-cta-note {
        font-size: 12px;
    }

    .guide-register-cta h2 {
        font-size: 18px;
    }

    .guide-register-cta .btn-primary {
        padding: 0.625rem 1.5rem;
        font-size: 15px;
    }

    .guide-value-card {
        padding: 1rem 0.875rem;
    }

    .guide-value-card h3 {
        font-size: 15px;
    }

    .guide-value-card p {
        font-size: 13px;
    }

    .guide-value-intro {
        font-size: 15px;
    }

    .guide-value-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.75rem;
    }

    .guide-value-icon svg {
        width: 24px;
        height: 24px;
    }

    .guide-pro-badge {
        font-size: 10px;
        padding: 1px 5px;
    }

    .about-hero {
        padding: 1.25rem 0.75rem;
    }

    .about-intro-section p:not(.guide-value-intro),
    .about-clarity-section p,
    .about-mission-header p,
    .about-mission-card p,
    .about-audience-card p,
    .about-process-item p {
        font-size: 14px;
        line-height: 1.65;
    }

    .about-trust-card,
    .about-mission-card,
    .about-audience-card,
    .about-process-item {
        border-radius: 10px;
    }

    .about-process-item {
        grid-template-columns: 1fr;
    }

    .candidate-hero,
    .recruiter-hero {
        padding: 1rem 0.75rem;
    }

    .candidate-hero-actions {
        margin-top: 1.25rem;
    }

    .candidate-primary-btn,
    .candidate-secondary-btn,
    .candidate-card-btn,
    .recruiter-primary-btn,
    .recruiter-secondary-btn,
    .recruiter-access-btn {
        min-height: 44px;
        padding: 0.625rem 1rem;
        font-size: 14px;
    }

    .candidate-intro-section p:not(.guide-value-intro),
    .candidate-action-card p,
    .candidate-process-card p,
    .candidate-safety-grid p {
        font-size: 14px;
        line-height: 1.65;
    }

    .candidate-action-section h2 {
        font-size: 20px;
        margin-bottom: 1.125rem;
    }

    .candidate-action-card,
    .candidate-process-card,
    .candidate-trust-card {
        padding: 1rem 0.875rem;
    }

    .candidate-action-card h3,
    .candidate-process-card h3,
    .candidate-safety-grid h3 {
        font-size: 16px;
    }

    .candidate-action-number {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .candidate-process-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.75rem;
    }

    .candidate-process-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   MODAL INFORMACYJNY (jak-dziala-dostep.ejs)
   ============================================ */
.guide-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-info-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.guide-info-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-width: 400px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    margin: 0 20px;
}

.guide-info-modal .modal-content h3 {
    color: #003153;
    margin-bottom: 1rem;
}

.guide-info-modal .modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.guide-info-modal .btn-primary {
    background: #003153;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 100px;
}

.guide-info-modal .btn-primary:hover {
    background: #0B4A73;
}
