/* ==========================================================================
   III Prywatne LO — Premium Modern Redesign v2
   Palette: warm beige, soft gray, deep navy, gold accent
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --navy:        #1B2A4A;
    --navy-light:  #2C3E6B;
    --navy-dark:   #0F1A2E;
    --beige:       #F5F0EB;
    --beige-dark:  #E8DFD5;
    --beige-light: #FDFBF9;
    --gray:        #6B7280;
    --gray-light:  #9CA3AF;
    --gray-xlight: #F3F4F6;
    --gray-dark:   #374151;
    --white:       #FFFFFF;
    --accent:      #C9A96E;
    --accent-light:#E8D9B8;
    --accent-glow: rgba(201, 169, 110, 0.15);
    --text:        #1A1A2E;
    --text-light:  #4A5568;
    --shadow-sm:   0 1px 3px rgba(27, 42, 74, 0.06);
    --shadow:      0 4px 24px rgba(27, 42, 74, 0.08);
    --shadow-lg:   0 20px 60px rgba(27, 42, 74, 0.12);
    --shadow-xl:   0 32px 80px rgba(27, 42, 74, 0.18);
    --radius:      16px;
    --radius-sm:   10px;
    --radius-xs:   6px;
    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --font:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-w:       1240px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body { font-family: var(--font); color: var(--text); background: var(--beige-light); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ==========================================================================
   NAVIGATION — Glassmorphism
   ========================================================================== */

.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15, 26, 46, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(15, 26, 46, 0.92);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
}

.nav__brand {
    display: flex; align-items: center; gap: 14px; color: var(--white);
}
.nav__brand-icon {
    width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), #DFC48B);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem; color: var(--navy-dark);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}
.nav__brand-text { font-weight: 700; font-size: 0.92rem; letter-spacing: -0.01em; }
.nav__brand-text small { display: block; font-size: 0.68rem; font-weight: 400; opacity: 0.5; letter-spacing: 0.04em; text-transform: uppercase; }

.nav__links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav__links a {
    color: rgba(255,255,255,0.7); padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 0.86rem; font-weight: 500; transition: all 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav__cta {
    background: linear-gradient(135deg, var(--accent), #DFC48B) !important;
    color: var(--navy-dark) !important; font-weight: 700 !important;
    padding: 10px 22px !important; margin-left: 8px;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201, 169, 110, 0.35); }

.nav__mobile-toggle {
    display: none; background: none; border: none; color: #fff;
    cursor: pointer; padding: 8px; width: 44px; height: 44px;
}
.nav__mobile-toggle svg { width: 24px; height: 24px; }

/* ==========================================================================
   HERO — Immersive
   ========================================================================== */

.hero {
    position: relative; overflow: hidden;
    padding: 160px 0 120px;
    background: var(--navy-dark);
    color: var(--white);
}

/* Animated gradient orbs */
.hero__bg {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero__orb--1 {
    width: 600px; height: 600px; top: -20%; right: -10%;
    background: radial-gradient(circle, rgba(201,169,110,0.3), transparent 70%);
}
.hero__orb--2 {
    width: 500px; height: 500px; bottom: -30%; left: -15%;
    background: radial-gradient(circle, rgba(44,62,107,0.5), transparent 70%);
    animation-delay: -7s;
}
.hero__orb--3 {
    width: 300px; height: 300px; top: 40%; left: 40%;
    background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Grid pattern overlay */
.hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center;
}

.hero__badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.2);
    color: var(--accent); padding: 8px 20px; border-radius: 100px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero__badge-dot {
    width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero__title {
    font-size: clamp(2.8rem, 4.5vw, 4rem); font-weight: 800;
    line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #E8D9B8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.12rem; color: rgba(255,255,255,0.55); line-height: 1.8;
    margin-bottom: 40px; max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats { display: flex; gap: 48px; }
.hero__stat {
    position: relative; padding-left: 20px;
}
.hero__stat::before {
    content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
    width: 3px; border-radius: 3px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}
.hero__stat-number {
    font-size: 2rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__stat-label {
    font-size: 0.76rem; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px;
}

/* Hero visual — card stack */
.hero__visual { position: relative; }
.hero__card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px; padding: 40px; backdrop-filter: blur(20px);
    position: relative;
}
.hero__card::before {
    content: ''; position: absolute; inset: -1px; border-radius: 25px; padding: 1px;
    background: linear-gradient(135deg, rgba(201,169,110,0.3), transparent 50%, rgba(255,255,255,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
}
.hero__card-title {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
}
.hero__card-title svg { color: var(--accent); }
.hero__card-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.hero__card-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.hero__card-check {
    width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
    background: rgba(201,169,110,0.15); display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.hero__card-check svg { width: 12px; height: 12px; color: var(--accent); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 14px; font-weight: 700;
    font-size: 0.92rem; border: none; cursor: pointer;
    transition: all 0.3s var(--ease); letter-spacing: -0.01em;
    position: relative; overflow: hidden;
}
.btn--primary {
    background: linear-gradient(135deg, var(--accent), #DFC48B);
    color: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,169,110,0.4);
}
.btn--primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2));
    opacity: 0; transition: opacity 0.3s;
}
.btn--primary:hover::after { opacity: 1; }

.btn--glass {
    background: rgba(255,255,255,0.06); color: var(--white);
    border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(10px);
}
.btn--glass:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn--navy {
    background: var(--navy); color: var(--white);
    box-shadow: 0 4px 20px rgba(27,42,74,0.2);
}
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn--outline-dark {
    background: transparent; color: var(--navy);
    border: 2px solid var(--beige-dark);
}
.btn--outline-dark:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   RECRUITMENT BANNER — Floating
   ========================================================================== */

.recruitment {
    position: relative; z-index: 10; margin-top: -60px; padding: 0 28px;
}
.recruitment__inner {
    max-width: var(--max-w); margin: 0 auto;
    background: var(--white); border-radius: 24px;
    padding: 40px 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(201,169,110,0.1);
    position: relative; overflow: hidden;
}
.recruitment__inner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--navy), var(--accent));
}
.recruitment__icon {
    width: 56px; height: 56px; min-width: 56px;
    background: var(--accent-glow); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
}
.recruitment__icon svg { width: 28px; height: 28px; color: var(--accent); }
.recruitment__text h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.recruitment__text p { color: var(--gray); font-size: 0.92rem; margin-top: 4px; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section { padding: 120px 0; }
.section--beige { background: var(--beige); }
.section--white { background: var(--white); }
.section--navy { background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); }

.section__header { text-align: center; margin-bottom: 72px; }
.section__label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
    background: var(--accent-glow); padding: 6px 16px; border-radius: 100px;
}
.section--navy .section__label { background: rgba(201,169,110,0.1); }

.section__title {
    font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 800;
    color: var(--navy); letter-spacing: -0.03em; line-height: 1.15;
}
.section--navy .section__title { color: var(--white); }

.section__subtitle {
    font-size: 1.08rem; color: var(--gray); max-width: 580px;
    margin: 18px auto 0; line-height: 1.75;
}
.section--navy .section__subtitle { color: rgba(255,255,255,0.5); }

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__content {}
.about__text { margin-top: 24px; }
.about__text p {
    margin-bottom: 20px; color: var(--text-light); font-size: 1.02rem; line-height: 1.8;
}
.about__text p:first-child {
    font-size: 1.15rem; color: var(--text); font-weight: 500; line-height: 1.7;
}

.about__visual {
    position: relative;
}
.about__image-main {
    width: 100%; aspect-ratio: 4/3; border-radius: 24px; overflow: hidden;
    background: linear-gradient(135deg, var(--beige-dark), var(--beige));
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
}
.about__image-main svg { width: 80px; height: 80px; color: var(--accent); opacity: 0.3; }

.about__float-card {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--white); border-radius: 20px; padding: 24px 28px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--beige-dark);
    display: flex; align-items: center; gap: 16px;
}
.about__float-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #DFC48B);
    display: flex; align-items: center; justify-content: center;
}
.about__float-icon svg { width: 24px; height: 24px; color: var(--navy-dark); }
.about__float-number { font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.about__float-label { font-size: 0.78rem; color: var(--gray); font-weight: 500; }

/* ==========================================================================
   FEATURES — Bento grid
   ========================================================================== */

.features__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
/* First two cards are large */
.feature-card:nth-child(1),
.feature-card:nth-child(2) {
    grid-column: span 2;
}

.feature-card {
    background: var(--white); border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px; padding: 36px;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,0.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--beige); display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; transition: all 0.4s var(--ease);
}
.feature-card:hover .feature-card__icon {
    background: var(--accent-glow);
}
.feature-card__icon svg { width: 24px; height: 24px; color: var(--navy); }

.feature-card__title {
    font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;
    line-height: 1.35; letter-spacing: -0.01em;
}
.feature-card__desc {
    font-size: 0.88rem; color: var(--gray); line-height: 1.65;
}

/* ==========================================================================
   NEWS
   ========================================================================== */

.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.news-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.news-card__image {
    height: 220px; overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
}
.news-card__image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,26,46,0.7), transparent 60%);
}
.news-card__image svg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 48px; height: 48px; color: var(--accent); opacity: 0.3;
}

.news-card__body { padding: 28px; }
.news-card__date {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent); background: var(--accent-glow);
    padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.news-card__title {
    font-size: 1.1rem; font-weight: 700; color: var(--navy);
    margin-bottom: 10px; line-height: 1.4; letter-spacing: -0.01em;
}
.news-card__excerpt {
    font-size: 0.88rem; color: var(--gray); line-height: 1.65;
}
.news-card__link {
    display: inline-block; margin-top: 16px; font-size: 0.85rem;
    font-weight: 700; color: var(--accent); transition: all 0.25s var(--ease);
}
.news-card:hover .news-card__link { color: var(--navy); transform: translateX(4px); }
a.news-card { color: inherit; text-decoration: none; display: block; }

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }

.contact__info-item {
    display: flex; gap: 18px; margin-bottom: 32px;
    padding: 24px; background: var(--white); border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s var(--ease);
}
.contact__info-item:hover {
    box-shadow: var(--shadow); transform: translateX(4px);
}
.contact__info-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: var(--accent-glow); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.contact__info-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact__info-label {
    font-size: 0.76rem; color: var(--gray-light);
    text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}
.contact__info-value {
    font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-top: 4px;
}

.contact__form-wrapper {
    background: var(--white); border-radius: 24px; padding: 40px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
}
.contact__form-title {
    font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 8px;
}
.contact__form-subtitle {
    font-size: 0.9rem; color: var(--gray); margin-bottom: 28px;
}
.contact__form { display: flex; flex-direction: column; gap: 18px; }

.form-group label {
    display: block; font-size: 0.82rem; font-weight: 700;
    color: var(--gray-dark); margin-bottom: 8px; letter-spacing: 0.02em;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 15px 20px;
    border: 2px solid var(--beige-dark); border-radius: 14px;
    font-family: var(--font); font-size: 0.95rem; color: var(--text);
    background: var(--beige-light); transition: all 0.25s var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--navy); background: var(--white);
    box-shadow: 0 0 0 4px rgba(27,42,74,0.06);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-light); }

/* ==========================================================================
   FOOTER — Dark elegant
   ========================================================================== */

.footer {
    background: var(--navy-dark); color: rgba(255,255,255,0.6);
    padding: 80px 0 40px; position: relative; overflow: hidden;
}
.footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.05), transparent 70%);
}

.footer__grid {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.footer__brand {
    font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 16px;
}
.footer__desc { font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all 0.3s var(--ease);
}
.footer__social a:hover { background: var(--accent); color: var(--navy-dark); transform: translateY(-2px); }
.footer__social a svg { width: 18px; height: 18px; }

.footer__title {
    font-size: 0.78rem; font-weight: 700; color: var(--white);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.9rem; transition: all 0.25s; }
.footer__links a:hover { color: var(--accent); transform: translateX(4px); display: inline-block; }

.footer__contact-item {
    display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.88rem;
    align-items: flex-start;
}
.footer__contact-icon svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }

.footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px; font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   PAGE HERO (subpages)
   ========================================================================== */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
    line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
}
.page-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #E8D9B8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero__subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 520px; margin: 0 auto;
}

/* ==========================================================================
   CONTENT BLOCKS
   ========================================================================== */

.content-block { font-size: 1.05rem; line-height: 1.85; color: var(--text-light); }
.content-block p { margin-bottom: 20px; }
.content-block strong { color: var(--navy); font-weight: 700; }

/* ==========================================================================
   STEPS (recruitment)
   ========================================================================== */

.steps { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.step {
    display: flex; gap: 28px; padding: 32px 0;
    border-bottom: 1px solid var(--beige-dark);
    align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step__number {
    width: 52px; height: 52px; min-width: 52px;
    background: linear-gradient(135deg, var(--accent), #DFC48B);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; color: var(--navy-dark);
    box-shadow: 0 4px 16px rgba(201,169,110,0.25);
}
.step__content h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.step__content p {
    font-size: 0.95rem; color: var(--gray); line-height: 1.65;
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .page-hero__title { font-size: 1.8rem; }
    .step { gap: 18px; padding: 24px 0; }
    .step__number { width: 44px; height: 44px; min-width: 44px; font-size: 1rem; border-radius: 12px; }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Stagger children */
.stagger-children > * {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.6s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   CMS EDIT INDICATORS
   ========================================================================== */
body.cms-edit [data-editable] { position: relative; }
body.cms-edit [data-editable]:hover {
    outline: 2px dashed var(--accent); outline-offset: 6px; cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__subtitle { margin: 0 auto 40px; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { display: none; }
    .about__grid { grid-template-columns: 1fr; gap: 48px; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .features__grid .feature-card:nth-child(1),
    .features__grid .feature-card:nth-child(2) { grid-column: span 1; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .recruitment__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav__links {
        display: none !important;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;
        background: #0F1A2E;
        flex-direction: column;
        padding: 24px 20px;
        gap: 4px;
        overflow-y: auto;
        list-style: none;
    }
    .nav__links.open {
        display: flex !important;
    }
    .nav__links li {
        list-style: none;
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .nav__links a {
        font-size: 1.1rem !important;
        padding: 16px 20px !important;
        display: block !important;
        color: rgba(255,255,255,0.85) !important;
        border-radius: 12px !important;
        background: transparent !important;
        border: none !important;
        margin: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
    .nav__links a:hover,
    .nav__links a.active {
        background: rgba(255,255,255,0.1) !important;
        color: #fff !important;
    }
    .nav__links a.nav__cta {
        background: linear-gradient(135deg, var(--accent), #DFC48B) !important;
        color: #0F1A2E !important;
        margin-top: 12px !important;
        text-align: center;
        font-weight: 700 !important;
    }
    .nav__mobile-toggle { display: flex; align-items: center; justify-content: center; }

    .hero { padding: 110px 0 80px; }
    .hero__inner { gap: 40px; }
    .hero__title { font-size: 2rem; word-break: break-word; }
    .hero__subtitle { font-size: 0.95rem; }
    .hero__badge { font-size: 0.7rem; padding: 6px 14px; }
    .hero__actions { flex-direction: column; gap: 12px; }
    .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
    .hero__stats { flex-direction: column; gap: 20px; }
    .hero__stat-number { font-size: 1.6rem; }

    .recruitment { margin-top: -40px; padding: 0 20px; }
    .recruitment__inner { padding: 28px 24px; flex-direction: column; text-align: center; gap: 20px; }
    .recruitment__inner > div:first-child { flex-direction: column; gap: 16px; }
    .recruitment__text h3 { font-size: 1.1rem; }
    .recruitment__inner .btn { width: 100%; justify-content: center; }

    .section { padding: 72px 0; }
    .section__header { margin-bottom: 48px; }
    .section__title { font-size: 1.7rem; }
    .section__subtitle { font-size: 0.95rem; }

    .about__grid { gap: 40px; }
    .about__content .section__title { font-size: 1.6rem; }
    .about__float-card { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-flex; }

    .features__grid { grid-template-columns: 1fr; }
    .feature-card { padding: 28px; }

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

    .contact__grid { grid-template-columns: 1fr; gap: 32px; }
    .contact__form-wrapper { padding: 28px; }
    .contact__info-item { padding: 18px; }

    .footer { padding: 56px 0 32px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 1.7rem; }
    .hero__stat-number { font-size: 1.4rem; }
    .btn { padding: 13px 24px; font-size: 0.88rem; }
}
