/*
Theme Name: Wingrow
Theme URI: https://furta.pl
Author: ASARK
Author URI: https://furta.pl
Description: Motyw rekrutacyjny dla ASARK – Fachowiec od Drzwi Furta. Landing page na stanowisko Przedstawiciel Handlowy.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wingrow
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #5F2D91;
    --purple-dark: #4a2272;
    --purple-light: #7B3DB5;
    --purple-pale: #f0e8f8;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-text: #6F6F6F;
    --gray-bg: #F7F7F7;
    --border: #e5e5e5;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* =============================================
   LAYOUT – CONTAINER
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
}

.section-heading {
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
}

.section-heading .accent {
    color: var(--purple);
}

.section-text {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.85;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
}

.btn--primary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.btn--primary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(95, 45, 145, 0.3);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--purple);
}

.btn--outline-purple {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}

.btn--outline-purple:hover {
    background: var(--purple);
    color: var(--white);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    flex-direction: column;
}

.nav__brand img {
    width: 140px;
}

.nav__brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.nav__brand-name span {
    color: var(--purple);
}

.nav__brand-sub {
    font-size: 10px;
    color: var(--gray-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.nav__phone:hover {
    color: var(--purple);
}

/* =============================================
   SECTION 1 – HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

/* Lewa kolumna */
.hero__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 18px;
}

.hero__heading {
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--black);
    margin-bottom: 22px;
}

.hero__heading-accent {
    color: var(--purple);
    display: block;
}

.hero__text {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 42px;
}

.hero__tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.hero__tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
}

.hero__cta-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__details-link {
    font-size: 13px;
    color: var(--black);
    text-decoration: underline;
    text-decoration-color: var(--purple);
    text-underline-offset: 4px;
    transition: var(--transition);
}

.hero__details-link:hover {
    color: var(--purple);
}

/* Prawa kolumna – geometryczne placeholder zdjęcia */
.hero__right {
    position: relative;
    height: 520px;
}

.hero__img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 370px;
    height: 380px;
    overflow: hidden;
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: var(--gray-bg);
}

.hero__img-main img,
.hero__img-main .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero__img-main .img-placeholder {
    background: linear-gradient(135deg, #ede6f5 0%, #d9ccea 60%, #c8b8e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img-main .img-placeholder span {
    font-size: 13px;
    color: var(--purple);
    font-weight: 500;
    writing-mode: vertical-lr;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.hero__img-secondary {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 190px;
    height: 190px;
    overflow: hidden;
    transform: rotate(0deg);
    clip-path: polygon(0% 14%, 86% 0%, 100% 86%, 14% 100%);
    background: var(--gray-bg);
    z-index: 2;
}

.hero__img-secondary img,
.hero__img-secondary .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img-secondary .img-placeholder {
    background: linear-gradient(135deg, #f0e8f8 0%, #e0d0f2 100%);
}

.hero__play-btn {
    position: absolute;
    bottom: 96px;
    right: 196px;
    width: 56px;
    height: 56px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: var(--transition);
}

.hero__play-btn:hover {
    background: var(--purple-dark);
    transform: scale(1.1);
}

.hero__play-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
    margin-left: 3px;
}

.hero__decor-rect {
    position: absolute;
    bottom: 0;
    right: 260px;
    width: 72px;
    height: 72px;
    background: var(--purple);
    z-index: 1;
}

/* Dekoracja tła hero */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--purple-pale);
    clip-path: polygon(14% 0%, 100% 0%, 86% 100%, 0% 100%);
    opacity: 0.4;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}

.hero__scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--black);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero__scroll-mouse::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--black);
    border-radius: 2px;
    animation: scrollDown 1.5s ease infinite;
}

@keyframes scrollDown {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

.hero__scroll-arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(45deg);
}

/* =============================================
   SECTION 2 – FIOLETOWY PAS BENEFITÓW
   ============================================= */
.benefits-bar {
    background: var(--purple);
    padding: 80px 0;
}

.benefits-bar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-bar__left h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 28px;
}

.benefits-bar__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.benefits-bar__icons {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-item__icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-item__text {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* =============================================
   SECTION 3 – CO OFERUJEMY?
   ============================================= */
.what-we-offer {
    padding: 100px 0;
    background: var(--white);
}

.what-we-offer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}

.what-we-offer__top-right {
    padding-bottom: 4px;
}

.what-we-offer__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.offer-card {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.offer-card:hover {
    background: var(--purple-pale);
}

.offer-card__num {
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.offer-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.offer-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.offer-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
}

/* =============================================
   SECTION 4 – TWOJE ZADANIA
   ============================================= */
.your-tasks {
    padding: 100px 0;
    background: var(--gray-bg);
}

.your-tasks .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.your-tasks__image {
    position: relative;
}

.your-tasks__img-wrap {
    position: relative;
    padding-bottom: 115%;
    overflow: hidden;
    background: #d9ccea;
}

.your-tasks__img-wrap img,
.your-tasks__img-wrap .img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.your-tasks__img-wrap .img-placeholder {
    background: linear-gradient(160deg, #e8ddf5 0%, #c8b8e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.your-tasks__img-wrap .img-placeholder span {
    font-size: 12px;
    color: var(--purple);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.your-tasks__img-decor {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 80px;
    height: 80px;
    background: var(--purple);
    z-index: 2;
}

.task-list {
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.task-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    line-height: 1.5;
}

.task-list li .plus-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    flex-shrink: 0;
}

.task-list li .plus-icon svg {
    width: 10px;
    height: 10px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 2.5;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.section-link:hover {
    gap: 14px;
}

.section-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 2;
}

/* =============================================
   SECTION 5 – KOGO SZUKAMY?
   ============================================= */
.who-we-seek {
    padding: 100px 0;
    background: var(--white);
}

.who-we-seek .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.req-list {
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
}

.req-list li .plus-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.req-list li .plus-icon svg {
    width: 10px;
    height: 10px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 2.5;
}

.nice-to-have {
    margin-top: 40px;
    padding: 28px 32px;
    border-left: 4px solid var(--purple);
    background: var(--gray-bg);
}

.nice-to-have__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
    display: block;
}

.nice-to-have .req-list {
    margin-top: 0;
}

/* =============================================
   SECTION 6 – JAK WYGLĄDA PRACA?
   ============================================= */
.how-work {
    padding: 100px 0;
    background: var(--gray-bg);
}

.how-work__intro {
    max-width: 660px;
    margin: 0 auto 64px;
    text-align: center;
}

.how-work__intro .section-heading {
    margin-bottom: 16px;
}

.how-work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

.work-col {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
}

.work-col__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.work-col__icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.work-col__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.work-col__text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* =============================================
   SECTION 7 – BENEFITY
   ============================================= */
.full-benefits {
    padding: 100px 0;
    background: var(--white);
}

.full-benefits__intro {
    text-align: center;
    margin-bottom: 64px;
}

.full-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-card__icon {
    background: var(--purple-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(95, 45, 145, 0.25);
}

.benefit-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

/* =============================================
   SECTION 8 – O NAS
   ============================================= */
.about-us {
    padding: 100px 0;
    background: var(--gray-bg);
}

.about-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-us__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-top: 40px;
}

.stat-box {
    background: var(--white);
    padding: 28px 24px;
}

.stat-box__num {
    font-size: 36px;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box__label {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
}

.about-us__right {
    position: relative;
    padding: 40px;
    background: var(--white);
}

.about-us__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--purple);
}

.about-us__quote {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--purple);
}

.about-us__text {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.85;
}

/* =============================================
   SECTION 9 – PROCES REKRUTACJI
   ============================================= */
.recruitment-process {
    padding: 100px 0;
    background: var(--white);
}

.recruitment-process__intro {
    text-align: center;
    margin-bottom: 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Linia łącząca kroki */
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 1px);
    right: calc(12.5% + 1px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.process-step__num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-text);
    transition: var(--transition);
    position: relative;
}

.process-step.active .process-step__num,
.process-step:hover .process-step__num {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.process-step__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.process-step__text {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* =============================================
   SECTION 10 – FORMULARZ APLIKACYJNY
   ============================================= */
.application-form {
    padding: 100px 0;
    background: var(--purple);
    position: relative;
    overflow: hidden;
}

/* Dekoracje tła formularza */
.application-form::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    clip-path: polygon(14% 0%, 100% 0%, 86% 100%, 0% 100%);
}

.application-form::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    clip-path: polygon(0% 14%, 86% 0%, 100% 86%, 14% 100%);
}

.application-form .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.form-intro__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 14px;
}

.form-intro__heading {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-intro__text {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

.form-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-perk {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.form-perk__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

/* Właściwy formularz */
.form-wrap {
    background: var(--white);
    padding: 48px;
}

.form-wrap__heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group label .required {
    color: var(--purple);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    font-family: inherit;
    color: var(--black);
    background: var(--white);
    border: 1.5px solid var(--border);
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--purple);
}

.form-control::placeholder {
    color: #b0b0b0;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Upload CV */
.file-upload {
    position: relative;
}

.file-upload__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload__label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1.5px dashed var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload__label:hover {
    border-color: var(--purple);
    background: var(--purple-pale);
}

.file-upload__icon {
    width: 36px;
    height: 36px;
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.file-upload__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.5;
}

.file-upload__text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.file-upload__text span {
    font-size: 12px;
    color: var(--gray-text);
}

.file-upload__selected {
    display: none;
    font-size: 13px;
    color: var(--purple);
    font-weight: 500;
    margin-top: 8px;
}

/* Radio buttons – Tak / Nie */
.radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.radio-option {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option__box {
    display: inline-block;
    padding: 11px 32px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.radio-option input[type="radio"]:checked + .radio-option__box {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
}

.radio-option:hover .radio-option__box {
    border-color: var(--purple);
}

/* RODO */
.form-rodo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-rodo input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--purple);
    cursor: pointer;
}

.form-rodo label {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.6;
    cursor: pointer;
}

.form-rodo label span {
    color: var(--purple);
}

.form-submit .btn {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 13px;
}

/* Komunikat po wysłaniu */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    background: var(--purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 2;
}

.form-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 14px;
    color: var(--gray-text);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 48px 0;
    background: var(--black);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.footer__brand span {
    color: var(--purple-light);
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.footer__info p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer__info p strong {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.footer__legal {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: right;
}

/* =============================================
   RESPONSYWNOŚĆ – TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 64px;
    }

    .hero__right {
        height: 320px;
        order: -1;
    }

    .hero__img-main {
        width: 100%;
        height: 100%;
        clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .hero__img-secondary {
        display: none;
    }

    .hero__play-btn {
        display: none;
    }

    .hero__decor-rect {
        display: none;
    }

    .hero::before {
        display: none;
    }

    .benefits-bar .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-bar__cta {
        border: none;
        padding: 0;
        align-items: flex-start;
    }

    .what-we-offer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .what-we-offer__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card:nth-child(2n) {
        border-right: none;
    }

    .offer-card:nth-child(n+5) {
        border-bottom: none;
    }

    .your-tasks .container,
    .who-we-seek .container,
    .about-us .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-work__grid {
        grid-template-columns: 1fr;
    }

    .full-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .application-form .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        text-align: center;
    }
}

/* =============================================
   RESPONSYWNOŚĆ – MOBILE (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0 48px;
    }

    .hero__right {
        height: 240px;
    }

    .hero__cta-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .benefits-bar {
        padding: 60px 0;
    }

    .what-we-offer,
    .your-tasks,
    .who-we-seek,
    .how-work,
    .full-benefits,
    .about-us,
    .recruitment-process {
        padding: 64px 0;
    }

    .what-we-offer__cards {
        grid-template-columns: 1fr;
    }

    .offer-card {
        border-right: none;
    }

    .offer-card:last-child {
        border-bottom: none;
    }

    .full-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-us__stats {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .application-form {
        padding: 64px 0;
    }

    .form-wrap {
        padding: 28px 20px;
    }

    .nav__phone {
        display: none;
    }

    .footer .container {
        gap: 16px;
    }
}

/* =============================================
   STRONA DZIĘKUJEMY
   ============================================= */
.thankyou-hero {
    padding: 140px 0 100px;
    background: var(--white);
    text-align: center;
    position: relative;
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--purple);
}

.thankyou-hero__inner {
    max-width: 660px;
    margin: 0 auto;
}

.thankyou-hero__icon {
    width: 88px;
    height: 88px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thankyou-hero__icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thankyou-hero__heading {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--black);
    margin-bottom: 24px;
}

.thankyou-hero__text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.85;
    margin-bottom: 36px;
}

.thankyou-hero__text strong {
    color: var(--black);
    font-weight: 700;
}

.thankyou-hero__tags {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.thankyou-next {
    padding: 100px 0;
    background: var(--gray-bg);
}

.thankyou-next__intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.process-step__num--done {
    background: var(--purple) !important;
    border-color: var(--purple) !important;
}

.process-step__num--done svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thankyou-back {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.thankyou-back .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.thankyou-back__text {
    font-size: 16px;
    color: var(--gray-text);
}

.thankyou-back__phone {
    color: var(--purple);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--purple);
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .thankyou-hero {
        padding: 100px 0 60px;
    }

    .thankyou-next {
        padding: 64px 0;
    }

    .thankyou-back {
        padding: 60px 0;
    }
}

/* =============================================
   ANIMACJE WEJŚCIA
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
