/* =============================================
   SUBPAGE SHARED STYLES
   ============================================= */

/* Utility classes */
.text-center { text-align: center; }
.centered-narrow { max-width: 640px; margin-left: auto; margin-right: auto; }
.centered-media { display: block; max-width: 800px; width: 100%; margin: 0 auto; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04); }

/* Hero banner for subpages */
.subpage-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 56px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}
.subpage-hero--green {
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
}
.subpage-hero--navy {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}
/* Background image layer */
.subpage-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroImgIn 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
@keyframes heroImgIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}
/* Dark gradient overlay for text readability */
.subpage-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.55) 50%, rgba(15,23,42,0.3) 100%);
}
.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 80%, rgba(16,185,129,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.subpage-hero > .container {
    position: relative;
    z-index: 2;
}
.subpage-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}
.subpage-hero__breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.subpage-hero__breadcrumb a:hover {
    color: #10b981;
}
.subpage-hero__breadcrumb svg {
    opacity: 0.4;
}
.subpage-hero__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(16,185,129,0.15);
    color: #34d399;
    margin-bottom: 16px;
}
.subpage-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}
.subpage-hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
}

/* Subpage sections */
.sub-section {
    padding: 64px 0;
    scroll-margin-top: 84px;
}
.sub-section--white { background: #fff; }
.sub-section--gray {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}
.sub-section--gray::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.sub-section--gray::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.sub-section--gray > .container {
    position: relative;
    z-index: 1;
}
.sub-section--light { background: #f0fdf4; }
.sub-section--navy {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sub-section--navy::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.sub-section--navy::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.sub-section--navy > .container {
    position: relative;
    z-index: 1;
}
.sub-section--navy .sub-block__title { color: #fff; }
.sub-section--navy .sub-block__text { color: rgba(255,255,255,0.75); }

/* Content blocks */
.sub-block {
    max-width: 1190px;
    margin: 0 auto;
}
.sub-block + .sub-block {
    margin-top: 56px;
}
.sub-block__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(16,185,129,0.12);
    color: #059669;
    margin-bottom: 12px;
}
.sub-section--navy .sub-block__badge {
    background: rgba(16,185,129,0.2);
    color: #34d399;
}
.sub-block__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.2;
    display: inline-block;
}
.sub-block__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 12px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-block:hover .sub-block__title::after {
    width: 100px;
}
.sub-section--navy .sub-block__title::after {
    background: linear-gradient(90deg, #34d399, rgba(52,211,153,0.3));
}
.sub-block__text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 24px;
}

/* Full-width hero image within section */
.sub-hero-image {
    max-width: 1190px;
    margin: 0 auto 40px;
    border-radius: 6px;
    overflow: hidden;
}
.sub-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Two-column split layout */
.sub-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1190px;
    margin: 0 auto;
}
.sub-split--reverse .sub-split__content { order: -1; }
.sub-split__image {
    border-radius: 8px;
    overflow: hidden;
}
.sub-split__image img {
    width: 100%;
    height: auto;
    display: block;
}
.sub-split__content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}
.sub-section--navy .sub-split__content h3 { color: #fff; }
.sub-split__content p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 20px;
}
.sub-section--navy .sub-split__content p { color: rgba(255,255,255,0.7); }

/* Feature grid — numbered cards with single accent */
.sub-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1190px;
    margin: 0 auto;
    counter-reset: feature-counter;
}
.sub-feature {
    counter-increment: feature-counter;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px 28px;
    flex: 1 1 280px;
    min-width: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
                transform 0.6s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.4s cubic-bezier(0.4,0,0.2,1),
                border-color 0.4s;
}
.sub-feature.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Left accent stripe — animates on hover */
.sub-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #10b981, #34d399);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-feature:hover::before {
    transform: scaleY(1);
}
/* Counter number — large faded in top-right */
.sub-feature::after {
    content: counter(feature-counter, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.06);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
}
.sub-feature:hover::after {
    color: rgba(16, 185, 129, 0.13);
}
/* Hover lift */
.sub-feature.visible:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(16, 185, 129, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
}
/* Navy section overrides */
.sub-section--navy .sub-feature {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}
.sub-section--navy .sub-feature::before {
    background: linear-gradient(180deg, #34d399, #10b981);
}
.sub-section--navy .sub-feature::after {
    color: rgba(52, 211, 153, 0.08);
}
.sub-section--navy .sub-feature:hover::after {
    color: rgba(52, 211, 153, 0.16);
}
.sub-section--navy .sub-feature.visible:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    border-color: rgba(52, 211, 153, 0.2);
}
/* Icon */
.sub-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    transition: background 0.35s, color 0.35s, transform 0.35s;
}
.sub-feature:hover .sub-feature__icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    transform: scale(1.05);
}
.sub-section--navy .sub-feature__icon {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
}
.sub-section--navy .sub-feature:hover .sub-feature__icon {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #fff;
}
/* Title & Text */
.sub-feature__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.sub-section--navy .sub-feature__title { color: #fff; }
.sub-feature__text {
    font-size: 1rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}
.sub-section--navy .sub-feature__text { color: rgba(255,255,255,0.7); }

/* Feature list — glass cards with numbering */
.sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    counter-reset: sub-list-counter;
}
.sub-list li {
    counter-increment: sub-list-counter;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: #334155;
    line-height: 1.65;
    padding: 24px 24px 24px 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
                transform 0.6s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
                background 0.3s ease;
}
.sub-list li.visible {
    opacity: 1;
    transform: translateY(0);
}
.sub-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.92);
}
/* Left gradient accent bar */
.sub-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #10b981 0%, #34d399 100%);
    border-radius: 3px 0 0 3px;
    transition: width 0.3s ease;
}
.sub-list li:hover::after {
    width: 4px;
}
/* Numbered counter badge */
.sub-list li::before {
    content: counter(sub-list-counter, decimal-leading-zero);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(52,211,153,0.08) 100%);
    color: #059669;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.sub-list li:hover::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    transform: scale(1.08);
}
/* Navy variant */
.sub-section--navy .sub-list li {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.sub-section--navy .sub-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(16,185,129,0.06);
}
.sub-section--navy .sub-list li::after {
    background: linear-gradient(180deg, #34d399 0%, rgba(52,211,153,0.3) 100%);
}
.sub-section--navy .sub-list li::before {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}
.sub-section--navy .sub-list li:hover::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

/* Related products grid — horizontal cards */
.sub-related {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1190px;
    margin: 0 auto;
}
/* Center last card when odd number of items in 2-col grid */
.sub-related__card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    margin: 0 auto;
}
.sub-related__card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #f8fafc;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 6px;
    padding: 24px 28px;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sub-related__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-left-color: #10b981;
}
.sub-related__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: rgba(16,185,129,0.12);
    color: #059669;
}
.sub-related__body {
    flex: 1;
    min-width: 0;
}
.sub-related__card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}
.sub-related__card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}
.sub-related__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(16,185,129,0.1);
    color: #059669;
    align-self: center;
    margin-left: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s, transform 0.25s, background 0.2s;
}
.sub-related__card:hover .sub-related__arrow {
    opacity: 1;
    transform: translateX(0);
    background: #10b981;
    color: #fff;
}
@media (hover: none) {
    .sub-related__arrow { opacity: 1; transform: translateX(0); }
}

/* CTA section */
.sub-cta {
    text-align: center;
    padding: 64px 0;
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
}
.sub-cta__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}
.sub-cta__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
}
.sub-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #10b981;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.sub-cta__btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Back to top / back link */
.sub-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    margin-top: 24px;
    transition: color 0.2s;
}
.sub-back:hover { color: #059669; }

/* Clickable card in index.html */
a.card--clickable,
a.security-card--clickable,
a.support-card--clickable {
    text-decoration: none;
    color: inherit;
}
a.security-card--clickable,
a.support-card--clickable {
    display: block;
}
.card--clickable,
.security-card--clickable,
.support-card--clickable {
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}
.card--clickable:hover,
.security-card--clickable:hover,
.support-card--clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.card--clickable .card__arrow,
.security-card--clickable .card__arrow,
.support-card--clickable .card__arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16,185,129,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    transition: background 0.2s, transform 0.2s;
}
.card--clickable:hover .card__arrow,
.security-card--clickable:hover .card__arrow,
.support-card--clickable:hover .card__arrow {
    background: #10b981;
    color: #fff;
    transform: translateX(2px);
}
/* Security cards on navy bg */
a.security-card--clickable h3,
a.security-card--clickable p {
    color: inherit;
}
a.security-card--clickable .card__arrow {
    background: rgba(16,185,129,0.15);
    color: #34d399;
}

/* Floating home button */
.home-fab {
    position: fixed;
    bottom: 88px;
    left: 24px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(16,185,129,0.35);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    pointer-events: none;
}
.home-fab.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.home-fab:hover {
    background: #059669;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(16,185,129,0.45);
}

/* Number counter animation */
.sub-stat {
    text-align: center;
    padding: 24px 16px;
}
.sub-stat__number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 8px;
}
.sub-section--navy .sub-stat__number {
    color: #34d399;
}
.sub-stat__label {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}
.sub-section--navy .sub-stat__label {
    color: rgba(255,255,255,0.8);
}
.sub-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1190px;
    margin: 0 auto;
}

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */
.sub-testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.sub-testimonial__quote {
    position: relative;
    padding: 0 20px;
}
.sub-testimonial__icon {
    color: #d1fae5;
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
}
.sub-section--navy .sub-testimonial__icon {
    color: rgba(52,211,153,0.25);
}
.sub-testimonial__quote blockquote {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.75;
    color: #334155;
    font-style: italic;
    margin: 0 0 28px;
    quotes: "\201E" "\201D";
}
.sub-testimonial__quote blockquote::before {
    content: open-quote;
    font-size: 1.2em;
    color: #10b981;
    font-weight: 700;
}
.sub-testimonial__quote blockquote::after {
    content: close-quote;
    font-size: 1.2em;
    color: #10b981;
    font-weight: 700;
}
.sub-section--navy .sub-testimonial__quote blockquote {
    color: rgba(255,255,255,0.85);
}
.sub-testimonial__author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.sub-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.sub-testimonial__author strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
}
.sub-section--navy .sub-testimonial__author strong {
    color: #fff;
}
.sub-testimonial__author span {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-align: left;
}
.sub-section--navy .sub-testimonial__author span {
    color: rgba(255,255,255,0.55);
}

/* Showcase visual section */
.sub-showcase-section {
    position: relative;
    padding: 72px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f4c3a 100%);
    overflow: hidden;
}
.sub-showcase-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
    top: -120px; right: -100px;
    pointer-events: none;
}
.sub-showcase-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    pointer-events: none;
}
.sub-showcase-inner {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}
.sub-showcase-inner--reverse { flex-direction: row-reverse; }
.sub-showcase-content {
    flex: 0 0 320px;
    max-width: 320px;
}
.sub-showcase-content__badge {
    display: inline-block;
    padding: 5px 14px; border-radius: 999px;
    background: rgba(16,185,129,0.2); color: #34d399;
    font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.sub-showcase-content__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800; color: #fff;
    line-height: 1.2; margin: 0 0 12px;
}
.sub-showcase-content__title span { color: #34d399; }
.sub-showcase-content__desc {
    font-size: 0.92rem; color: rgba(255,255,255,0.6);
    line-height: 1.65; margin: 0;
}
.sub-showcase-media {
    flex: 1; min-width: 0;
    text-align: center;
    position: relative;
}
.sub-showcase-media__img {
    max-width: 100%;
    max-height: 500px;
    width: auto; height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}
/* Floating decorative ring */
.sub-showcase-media__ring {
    position: absolute;
    border: 2px solid rgba(16,185,129,0.2);
    border-radius: 50%;
    pointer-events: none;
}
.sub-showcase-media__ring--1 {
    width: 200px; height: 200px;
    top: -40px; right: -30px;
}
.sub-showcase-media__ring--2 {
    width: 120px; height: 120px;
    bottom: -20px; left: -20px;
    border-color: rgba(59,130,246,0.2);
}
/* Floating dot accent */
.sub-showcase-media__dot {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #10b981;
    pointer-events: none;
    opacity: 0.6;
}
.sub-showcase-media__dot--1 { top: 20px; left: 10%; }
.sub-showcase-media__dot--2 { bottom: 30px; right: 8%; width: 8px; height: 8px; background: #3b82f6; }
.sub-showcase-media__dot--3 { top: 50%; right: -10px; width: 6px; height: 6px; background: #34d399; }

/* Responsive */
@media (max-width: 768px) {
    .sub-showcase-section { padding: 48px 0; }
    .sub-showcase-inner {
        flex-direction: column !important; gap: 28px; text-align: center;
    }
    .sub-showcase-content { flex: none; max-width: 100%; }
    .sub-showcase-media__ring { display: none; }
    .sub-showcase-media__dot { display: none; }
}

/* Legacy simple showcase (fallback) */
.sub-showcase {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.sub-showcase__img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

/* Multiple testimonials carousel/grid */
.sub-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
    gap: 24px;
    max-width: 1190px;
    margin: 0 auto;
}
.sub-testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 32px;
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}
.sub-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.sub-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 0 0 3px 3px;
}
.sub-section--navy .sub-testimonial-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}
.sub-section--navy .sub-testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.sub-testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    color: #fbbf24;
}
.sub-testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin: 0 0 20px;
}
.sub-section--navy .sub-testimonial-card blockquote {
    color: rgba(255,255,255,0.75);
}
.sub-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}
.sub-section--navy .sub-testimonial-card__author {
    border-top-color: rgba(255,255,255,0.08);
}
.sub-testimonial-card__author .sub-testimonial__avatar {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
}
.sub-testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}
.sub-section--navy .sub-testimonial-card__author strong {
    color: #fff;
}
.sub-testimonial-card__author span {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* =============================================
   ECOSYSTEM HIGHLIGHT SECTION
   ============================================= */
.sub-ecosystem {
    max-width: 1190px;
    margin: 0 auto;
}
.sub-ecosystem__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.sub-ecosystem__node {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.sub-ecosystem__node:hover {
    background: rgba(16,185,129,0.15);
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16,185,129,0.15);
}
.sub-ecosystem__node--active {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
    font-weight: 700;
}
.sub-ecosystem__node--active:hover {
    background: #059669;
    border-color: #059669;
}
.sub-section--navy .sub-ecosystem__node {
    background: rgba(16,185,129,0.12);
    border-color: rgba(52,211,153,0.25);
    color: #34d399;
}
.sub-section--navy .sub-ecosystem__node:hover {
    background: rgba(16,185,129,0.2);
    border-color: #34d399;
}
.sub-section--navy .sub-ecosystem__node--active {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}
.sub-ecosystem__arrow {
    color: #cbd5e1;
    flex-shrink: 0;
}
.sub-section--navy .sub-ecosystem__arrow {
    color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .subpage-hero { padding: 110px 0 40px; min-height: 320px; }
    .sub-section { padding: 48px 0; }
    .sub-split { grid-template-columns: 1fr; gap: 32px; }
    .sub-split--reverse .sub-split__content { order: 0; }
    .sub-features { gap: 20px; }
    .sub-feature { flex: 0 0 100%; max-width: none; }
    .sub-feature::after { font-size: 2.5rem; top: 12px; right: 16px; }
    .sub-list { grid-template-columns: 1fr; gap: 14px; }
    .sub-list li {
        padding: 18px 16px 18px 20px;
        gap: 12px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.92);
    }
    .sub-list li::before {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.82rem;
    }
    .sub-section--gray::before,
    .sub-section--gray::after,
    .sub-section--navy::before,
    .sub-section--navy::after {
        display: none;
    }
    .sub-related { grid-template-columns: 1fr; }
    .sub-related__card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
    .sub-cta { padding: 48px 0; }
    .sub-testimonials-grid { grid-template-columns: 1fr; }
    .sub-ecosystem__flow { gap: 8px; }
    .sub-ecosystem__node { padding: 10px 14px; font-size: 0.82rem; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   PARTNERS PAGE
   ============================================= */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.partner-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.partner-card__logo {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(59,130,246,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #059669;
}
.partner-card__logo svg {
    width: 72px;
    height: 72px;
}
.partner-card__logo img {
    max-width: 128px;
    max-height: 128px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}
.partner-card__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.partner-card__desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .partner-card { padding: 24px 16px; }
    .partner-card__logo { width: 120px; height: 120px; }
    .partner-card__logo img { max-width: 96px; max-height: 96px; }
}
@media (max-width: 480px) {
    .partners-grid { grid-template-columns: 1fr; }
    .partner-card__logo { width: 100px; height: 100px; }
    .partner-card__logo img { max-width: 80px; max-height: 80px; }
}

/* Authorized partners grid */
.auth-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 20px;
    margin-top: 40px;
}
.auth-partner {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.auth-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.auth-partner__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.auth-partner__location {
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
    margin: 0 0 6px;
}
.auth-partner__address,
.auth-partner__phone {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 4px;
    line-height: 1.5;
}
.auth-partner__phone a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.auth-partner__phone a:hover {
    color: #10b981;
}
.auth-partner__cert {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: rgba(16,185,129,0.1);
    color: #059669;
}
.auth-partners__note {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}
.auth-partners__note a {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.auth-partners__note a:hover {
    color: #10b981;
}
@media (max-width: 768px) {
    .auth-partners-grid { grid-template-columns: 1fr; }
    .auth-partner { padding: 20px; }
}

/* =============================================
   CAREERS PAGE (praca.html)
   ============================================= */

/* Recruitment steps timeline */
.recruit-steps {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}
.recruit-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #10b981 0%, #059669 100%);
}
.recruit-step {
    display: flex;
    gap: 24px;
    padding-bottom: 32px;
    position: relative;
}
.recruit-step:last-child {
    padding-bottom: 0;
}
.recruit-step__number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(16,185,129,0.25);
}
.recruit-step__content {
    flex: 1;
    padding-top: 8px;
}
.recruit-step__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}
.recruit-step__desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}
.recruit-step__desc a {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
}
.recruit-step__desc a:hover {
    color: #10b981;
}

/* Job apply box */
.job-apply-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 28px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
    border: 1px solid #d1fae5;
    border-radius: 6px;
}
.job-apply-box__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.job-apply-box__content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.job-apply-box__content p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}
.job-apply-box__content a {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
}
.job-apply-box__content a:hover {
    color: #10b981;
}

/* RODO note */
.job-rodo-note {
    max-width: 800px;
    margin: 32px auto 0;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}
.job-rodo-note h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.job-rodo-note p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 8px;
}
.job-rodo-note p:last-child {
    margin-bottom: 0;
}
.job-rodo-note em {
    color: #475569;
}
.job-rodo-note__iod {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
}
.job-rodo-note__iod a {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .recruit-steps::before { left: 19px; }
    .recruit-step { gap: 16px; }
    .recruit-step__number { width: 40px; height: 40px; min-width: 40px; font-size: 0.95rem; }
    .recruit-step__content { padding-top: 4px; }
    .job-apply-box { flex-direction: column; text-align: center; align-items: center; }
}

/* =============================================
   EDUCATION / TRAINING PAGE (szkolenia.html)
   ============================================= */

/* Stats bar */
.edu-stats {
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
    padding: 32px 0;
}
.edu-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1190px;
    margin: 0 auto;
}
.edu-stat {
    text-align: center;
}
.edu-stat__number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #34d399;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.edu-stat__label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Content section */
.edu-content {
    padding: 56px 0 64px;
    background: #f8fafc;
}

/* Filter tabs */
.edu-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.edu-tab {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}
.edu-tab:hover {
    border-color: #10b981;
    color: #059669;
}
.edu-tab--active {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

/* Section with header */
.edu-section {
    margin-bottom: 48px;
}
.edu-section__header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}
.edu-section__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 6px;
    background: rgba(16,185,129,0.1);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
}
.edu-section__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}
.edu-section__desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Group titles (legacy) */
.edu-group__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 16px;
    padding: 0;
}
.edu-group__title svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Accordion groups */
.edu-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.edu-accordion:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.edu-accordion__header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
    transition: background 0.2s;
}
.edu-accordion__header:hover {
    background: #f8fafc;
}
.edu-accordion__header > svg:first-child {
    color: #10b981;
    flex-shrink: 0;
}
.edu-accordion__header > span:first-of-type {
    flex: 1;
}
.edu-accordion__count {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
}
.edu-accordion__chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s ease;
}
.edu-accordion--open .edu-accordion__chevron {
    transform: rotate(180deg);
}
.edu-accordion--open .edu-accordion__header {
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
}
.edu-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.edu-accordion--open .edu-accordion__body {
    max-height: 2000px;
}
.edu-accordion__body .edu-grid {
    padding: 20px 24px 24px;
    margin-bottom: 0;
}

/* Card grid */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    margin-bottom: 8px;
}

/* Training card */
.edu-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 24px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.edu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

/* Featured card */
.edu-card--featured {
    border-color: #10b981;
    border-width: 2px;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

/* Video card */
.edu-card--video {
    text-align: center;
    padding-top: 32px;
}

/* Play button */
.edu-card__play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(16,185,129,0.3);
    transition: transform 0.2s;
    position: relative;
}
.edu-card__play::after {
    content: 'Obejrzyj skrót';
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1e293b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.edu-card--video:hover .edu-card__play::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.edu-card--video:hover .edu-card__play {
    transform: scale(1.1);
}

/* Badge */
.edu-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.edu-card__badge--online {
    background: rgba(59,130,246,0.1);
    color: #2563eb;
}
.edu-card__badge--stacjo {
    background: rgba(168,85,247,0.1);
    color: #7c3aed;
}
.edu-card__badge--new {
    background: rgba(245,158,11,0.12);
    color: #d97706;
}

/* Card content */
.edu-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.35;
}
.edu-card__desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 14px;
}
.edu-card__meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}
.edu-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.edu-card__price {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #059669;
}

/* Info bar */
.edu-info {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 40px 0;
}
.edu-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1190px;
    margin: 0 auto;
}
.edu-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.edu-info__item svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}
.edu-info__item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.edu-info__item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .edu-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .edu-stats { padding: 24px 0; }
    .edu-stat__number { font-size: 1.8rem; }
    .edu-content { padding: 40px 0 48px; }
    .edu-tabs { gap: 6px; }
    .edu-tab { padding: 8px 16px; font-size: 0.82rem; }
    .edu-section__header { flex-direction: column; gap: 12px; }
    .edu-grid { grid-template-columns: 1fr; }
    .edu-info__grid { grid-template-columns: 1fr; gap: 24px; }
    .edu-accordion__header { padding: 14px 16px; font-size: 0.95rem; gap: 10px; }
    .edu-accordion__body .edu-grid { padding: 16px 16px 20px; }
    .edu-accordion__count { display: none; }
}
@media (max-width: 480px) {
    .edu-stats__grid { grid-template-columns: 1fr; }
}

/* =============================================
   CAREERS PAGE — PREMIUM REDESIGN (praca.html)
   ============================================= */

/* ---- Hero — full viewport ---- */
.career-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.career-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    animation: careerHeroBgIn 1.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes careerHeroBgIn {
    from { transform: scale(1.08); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.career-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6,78,59,0.85) 0%, rgba(15,23,42,0.88) 60%, rgba(15,23,42,0.92) 100%),
        linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
    z-index: 1;
}

/* Floating particles */
.career-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.career-hero__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(52,211,153,0.4);
    border-radius: 50%;
    animation: careerParticle 12s linear infinite;
}
.career-hero__particles span:nth-child(1) { left: 15%; animation-delay: 0s; animation-duration: 14s; }
.career-hero__particles span:nth-child(2) { left: 35%; animation-delay: 2s; animation-duration: 11s; width: 3px; height: 3px; }
.career-hero__particles span:nth-child(3) { left: 55%; animation-delay: 4s; animation-duration: 16s; width: 5px; height: 5px; }
.career-hero__particles span:nth-child(4) { left: 72%; animation-delay: 1s; animation-duration: 13s; }
.career-hero__particles span:nth-child(5) { left: 88%; animation-delay: 3s; animation-duration: 15s; width: 3px; height: 3px; }
.career-hero__particles span:nth-child(6) { left: 45%; animation-delay: 5s; animation-duration: 18s; width: 6px; height: 6px; background: rgba(59,130,246,0.25); }
@keyframes careerParticle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.career-hero__content {
    position: relative;
    z-index: 3;
    padding: 160px 0 120px;
    max-width: 680px;
}
.career-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.career-hero__breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.career-hero__breadcrumb a:hover { color: #34d399; }
.career-hero__breadcrumb svg { opacity: 0.4; }
.career-hero__badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(16,185,129,0.2);
    color: #34d399;
    margin-bottom: 20px;
    border: 1px solid rgba(52,211,153,0.25);
    animation: careerBadgeIn 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}
@keyframes careerBadgeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.career-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
    animation: careerTitleIn 0.9s cubic-bezier(0.4,0,0.2,1) 0.5s both;
}
.career-hero__title span {
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes careerTitleIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.career-hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 560px;
    animation: careerDescIn 0.9s cubic-bezier(0.4,0,0.2,1) 0.7s both;
}
@keyframes careerDescIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.career-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: careerDescIn 0.9s cubic-bezier(0.4,0,0.2,1) 0.9s both;
}
.career-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.career-hero__btn--primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.career-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16,185,129,0.45);
}
.career-hero__btn--ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.career-hero__btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* Scroll hint */
.career-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: careerScrollBounce 2.5s ease-in-out infinite;
}
@keyframes careerScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---- Stats bar ---- */
.career-stats {
    background: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.career-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52,211,153,0.4), transparent);
}
.career-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.career-stats__item {
    position: relative;
}
.career-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.career-stats__number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #34d399;
    line-height: 1;
    display: inline;
}
.career-stats__suffix {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #34d399;
    opacity: 0.7;
}
.career-stats__label {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    line-height: 1.4;
}

/* ---- Perks grid ---- */
.career-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1190px;
    margin: 0 auto;
}
.career-perk {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
}
.career-perk::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.career-perk:hover::before {
    transform: scaleX(1);
}
.career-perk:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 0 0 1px rgba(16,185,129,0.08);
}
.career-perk__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    margin-bottom: 18px;
}
.career-perk h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.career-perk p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ---- Parallax divider ---- */
.career-parallax {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.career-parallax__bg {
    position: absolute;
    inset: -60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.7) saturate(0.8);
}
.career-parallax__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6,78,59,0.7) 0%, rgba(15,23,42,0.75) 100%);
    z-index: 1;
}
.career-parallax__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
}
.career-parallax__quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin: 0 0 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    quotes: "\201E" "\201D";
}
.career-parallax__quote::before {
    content: open-quote;
    color: #34d399;
    font-size: 1.3em;
}
.career-parallax__quote::after {
    content: close-quote;
    color: #34d399;
    font-size: 1.3em;
}
.career-parallax__author {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.04em;
}

/* ---- Culture split ---- */
.career-culture {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1190px;
    margin: 0 auto;
}
.career-culture__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.career-culture__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.career-culture__image:hover img {
    transform: scale(1.03);
}
.career-culture__image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.career-culture__content {
    max-width: 520px;
}
.career-culture__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.career-culture__highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.career-culture__highlight-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(16,185,129,0.3);
}
.career-culture__highlight strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}
.career-culture__highlight span {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
}

/* ---- Tech section ---- */
.career-tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1190px;
    margin: 0 auto;
}
.career-tech__text {
    max-width: 520px;
}
.career-tech__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.career-tech__tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(16,185,129,0.12);
    color: #34d399;
    border: 1px solid rgba(52,211,153,0.2);
    transition: all 0.25s;
}
.career-tech__tag:hover {
    background: rgba(16,185,129,0.25);
    transform: translateY(-2px);
}
.career-tech__image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    position: relative;
}
.career-tech__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Timeline (rekrutacja) ---- */
.career-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.career-timeline__line {
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #10b981, #059669, rgba(5,150,105,0.2));
}
.career-timeline__step {
    display: flex;
    gap: 24px;
    padding-bottom: 28px;
    position: relative;
}
.career-timeline__step:last-child {
    padding-bottom: 0;
}
.career-timeline__dot {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(16,185,129,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.career-timeline__step:hover .career-timeline__dot {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(16,185,129,0.4);
}
.career-timeline__dot span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}
.career-timeline__card {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px 28px;
    transition: all 0.3s;
}
.career-timeline__step:hover .career-timeline__card {
    border-color: #a7f3d0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.career-timeline__card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}
.career-timeline__card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}
.career-timeline__card a {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
}
.career-timeline__card a:hover {
    color: #10b981;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .career-perks { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .career-hero { min-height: 85vh; }
    .career-hero__content { padding: 120px 0 80px; }
    .career-hero__scroll-hint { display: none; }
    .career-stats { padding: 28px 0; }
    .career-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .career-stats__item:not(:last-child)::after { display: none; }
    .career-stats__number { font-size: 2rem; }
    .career-stats__suffix { font-size: 1.4rem; }
    .career-stats__label { font-size: 0.82rem; }
    .career-perks { grid-template-columns: 1fr; gap: 16px; }
    .career-perk { padding: 24px 20px; }
    .career-culture { grid-template-columns: 1fr; gap: 32px; }
    .career-culture__content { max-width: 100%; }
    .career-tech { grid-template-columns: 1fr; gap: 32px; }
    .career-tech__text { max-width: 100%; }
    .career-parallax__bg { background-attachment: scroll; }
    .career-parallax { min-height: 260px; }
    .career-parallax__content { padding: 48px 16px; }
    .career-parallax__quote { font-size: clamp(1.1rem, 4vw, 1.6rem); }
    .career-timeline__line { left: 19px; }
    .career-timeline__step { gap: 14px; }
    .career-timeline__dot { width: 40px; height: 40px; min-width: 40px; }
    .career-timeline__dot span { font-size: 0.95rem; }
    .career-timeline__card { padding: 18px 16px; }
    .career-timeline__card h3 { font-size: 0.98rem; }
    .career-timeline__card p { font-size: 0.88rem; }
    .job-apply-box { flex-direction: column; text-align: center; align-items: center; padding: 24px 20px; }
    .job-rodo-note { padding: 20px 16px; }
    .job-rodo-note p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .career-hero { min-height: 80vh; }
    .career-hero__content { padding: 100px 0 60px; }
    .career-hero__title { font-size: 1.8rem; }
    .career-hero__desc { font-size: 0.95rem; margin-bottom: 24px; }
    .career-hero__actions { flex-direction: column; }
    .career-hero__btn { justify-content: center; width: 100%; }
    .career-stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .career-stats__number { font-size: 1.7rem; }
    .career-perk { padding: 20px 16px; }
    .career-perk h3 { font-size: 1rem; }
    .career-perk p { font-size: 0.88rem; }
    .career-tech__tag { padding: 6px 14px; font-size: 0.8rem; }
    .career-culture__highlight strong { font-size: 0.9rem; }
    .career-culture__highlight span { font-size: 0.84rem; }
}
/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .sub-list li {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .sub-feature {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.35s, border-color 0.35s;
    }
    .sub-feature::before {
        transform: scaleY(1);
        transition: none;
    }
    .sub-block__title::after {
        transition: none;
    }
}

/* =============================================
   VIDEO FACADE (YouTube embed)
   ============================================= */
.video-facade {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #000;
    z-index: 1;
}
.video-facade__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}
.video-facade:hover .video-facade__thumb {
    transform: scale(1.03);
    filter: brightness(0.8);
}
.video-facade__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.25s ease, opacity 0.25s;
    opacity: 0.9;
}
.video-facade:hover .video-facade__play {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
}
.video-facade__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-facade--playing {
    cursor: default;
}

/* =============================================
   PHONE MOCKUP SECTION (smartKARTA)
   ============================================= */
.smartkarta-phone-mockup {
    max-width: 700px;
    margin: 40px auto 0;
}
.smartkarta-phone-mockup__img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .video-facade {
        border-radius: 10px;
    }
    .smartkarta-phone-mockup {
        max-width: 90%;
        margin-top: 28px;
    }
}

/* Landscape phones / small tablets */
@media (max-width: 600px) {
    .subpage-hero__title { font-size: 1.6rem; }
    .subpage-hero__desc { font-size: 0.95rem; }
    .sub-block__title { font-size: 1.3rem; }
    .sub-cta__title { font-size: 1.4rem; }
    .sub-cta__btn { padding: 16px 28px; font-size: 0.95rem; }
    .sub-related { gap: 16px; }
}

/* iOS parallax fix */
@supports (-webkit-touch-callout: none) {
    .career-parallax__bg { background-attachment: scroll; }
}
