/* Shared inner landing pages: training + razgon */

body.inner-page {
    background:
        radial-gradient(circle at 8% 12%, rgba(13, 66, 39, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 92% 8%, rgba(78, 2, 4, 0.05) 0%, transparent 38%),
        #f9ead3;
}

body.inner-page .header {
    background: rgba(249, 234, 211, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(215, 200, 178, 0.55);
}

.nav-brand a.logo {
    text-decoration: none;
    color: #0d4227;
}

.nav-link.active::after {
    width: 100%;
}

.full { width: 100%; justify-content: center; }

.inner-hero {
    position: relative;
    padding: 36px 0 80px;
    overflow: hidden;
}

.inner-hero::before {
    content: attr(data-watermark);
    position: absolute;
    top: 8%;
    right: -4%;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: clamp(5rem, 16vw, 14rem);
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: rgba(13, 66, 39, 0.07);
    pointer-events: none;
    white-space: nowrap;
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.inner-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #033220;
    color: #f9ead3;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-size: 0.82rem;
}

.inner-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    letter-spacing: 0.3px;
    line-height: 0.98;
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    margin: 0 0 22px;
    color: #0c0c0c;
    text-transform: uppercase;
}

.inner-lead {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #3d3d3d;
    max-width: 640px;
    margin: 0 0 16px;
}

.inner-lead--accent {
    font-size: 1.18rem;
    color: #033220;
    font-weight: 600;
}

.inner-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-chip-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 8px;
    padding: 0;
}

.hero-chip-list li {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(13, 66, 39, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #033220;
}

.inner-hero-stack {
    position: relative;
    min-height: 540px;
}

.inner-hero-stack img {
    position: absolute;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(3, 50, 32, 0.22);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.inner-hero-stack img:hover {
    transform: scale(1.03);
    box-shadow: 0 28px 60px rgba(3, 50, 32, 0.28);
}

.inner-hero-stack img:nth-child(1) {
    width: 78%;
    height: 390px;
    top: 0;
    right: 0;
    z-index: 1;
}

.inner-hero-stack img:nth-child(2) {
    width: 58%;
    height: 250px;
    bottom: 18px;
    left: 0;
    z-index: 2;
    border: 7px solid #f9ead3;
}

.inner-hero-stack img:nth-child(3) {
    width: 34%;
    height: 160px;
    top: 42%;
    right: 6%;
    z-index: 3;
    border: 5px solid #f9ead3;
}

.inner-section {
    padding: 88px 0;
    position: relative;
}

.inner-section.alt {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.55) 100%);
}

.inner-section--ink {
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 234, 211, 0.12) 0%, transparent 40%),
        #033220;
    color: #f9ead3;
}

.inner-section--burgundy {
    background:
        radial-gradient(circle at 12% 80%, rgba(249, 234, 211, 0.1) 0%, transparent 42%),
        #4e0204;
    color: #f9ead3;
}

.inner-section .section-header {
    text-align: left;
    margin-bottom: 36px;
}

.inner-section .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.inner-section .section-title::after {
    content: '';
    display: block;
    width: 76px;
    height: 4px;
    background: #033220;
    margin-top: 14px;
    border-radius: 4px;
}

.inner-section--ink .section-title,
.inner-section--burgundy .section-title {
    color: #f9ead3;
}

.inner-section--ink .section-title::after,
.inner-section--burgundy .section-title::after {
    background: #f9ead3;
}

.inner-section .section-subtitle {
    text-align: left;
    margin: 0;
    max-width: 640px;
}

.inner-section--ink .section-subtitle,
.inner-section--burgundy .section-subtitle {
    color: rgba(249, 234, 211, 0.78);
}

.inner-prose {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #3a3a3a;
    max-width: 760px;
}

.inner-section--burgundy .inner-prose {
    color: rgba(249, 234, 211, 0.9);
}

.split-lists {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 22px;
}

.split-card {
    border-radius: 22px;
    padding: 28px 28px 22px;
    box-shadow: 0 18px 40px rgba(3, 50, 32, 0.08);
    position: relative;
    overflow: hidden;
}

.split-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.split-card--no {
    background: linear-gradient(160deg, #5c0a0c 0%, #4e0204 100%);
    color: #f9ead3;
}

.split-card--yes {
    background: linear-gradient(160deg, #0b4a2b 0%, #033220 100%);
    color: #f9ead3;
}

.split-card--no h3,
.split-card--yes h3 { color: inherit; }

.check-list,
.cross-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.check-list li,
.cross-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 1.02rem;
}

.check-list i,
.cross-list i {
    margin-top: 5px;
    width: 22px;
    flex-shrink: 0;
}

.facts-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.fact-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: center;
    box-shadow: 0 16px 36px rgba(3, 50, 32, 0.08);
    border: 1px solid rgba(13, 66, 39, 0.08);
}

.fact-giant {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 4.2rem;
    line-height: 0.85;
    color: #033220;
    letter-spacing: -0.04em;
}

.fact-label {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.fact-value {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #0d4227;
    line-height: 1.2;
    margin-top: 4px;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.session-item {
    background: #fff;
    border-radius: 20px;
    padding: 24px 22px 22px;
    box-shadow: 0 14px 32px rgba(3, 50, 32, 0.07);
    border-top: 5px solid #033220;
    grid-column: span 2;
    min-height: 180px;
}

.session-item:nth-child(4),
.session-item:nth-child(5) {
    grid-column: span 3;
}

.session-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: rgba(13, 66, 39, 0.22);
    line-height: 1;
    margin-bottom: 10px;
}

.session-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.12rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 8px;
    color: #0d4227;
}

.session-item p {
    margin: 0;
    color: #555;
    line-height: 1.65;
}

.soft-note {
    margin-top: 28px;
    display: block;
    background: #033220;
    color: #f9ead3;
    border-radius: 16px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1.05rem;
}

.result-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.result-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    align-items: start;
    background: rgba(249, 234, 211, 0.08);
    border: 1px solid rgba(249, 234, 211, 0.16);
    border-radius: 18px;
    padding: 18px 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.result-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    color: #f9ead3;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.step {
    background: #fff;
    border-radius: 20px;
    padding: 22px 20px 24px;
    box-shadow: 0 16px 34px rgba(3, 50, 32, 0.08);
    min-height: 220px;
    position: relative;
}

.step-index {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: #033220;
    line-height: 1;
    margin-bottom: 12px;
}

.step-time {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(13, 66, 39, 0.1);
    color: #033220;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.step h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 0 8px;
    font-size: 1.12rem;
    color: #0d4227;
}

.step p { margin: 0; color: #555; line-height: 1.65; }

.audience-grid,
.show-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.audience-card,
.show-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 24px 22px;
    box-shadow: 0 14px 32px rgba(3, 50, 32, 0.07);
    position: relative;
    overflow: hidden;
}

.show-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #033220;
}

.audience-card h3,
.show-card h3 {
    font-family: 'Oswald', sans-serif;
    margin: 0 0 10px;
    color: #0d4227;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 1.15rem;
}

.show-card h3 { padding-left: 10px; }
.show-card p { padding-left: 10px; }

.audience-card p,
.show-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1.02rem;
}

.audience-card:last-child {
    grid-column: 1 / -1;
}

.quote-block {
    margin-top: 28px;
    padding: 36px 40px;
    border-radius: 22px;
    background: rgba(249, 234, 211, 0.12);
    border: 1px solid rgba(249, 234, 211, 0.2);
}

.quote-block p {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #f9ead3;
}

.media-placeholder {
    position: relative;
    margin: 36px 0 0;
    border-radius: 22px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 22px 48px rgba(3, 50, 32, 0.16);
}

.media-placeholder img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.45s ease;
}

.media-placeholder:hover img {
    transform: scale(1.04);
}

.media-placeholder__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(3, 50, 32, 0.08), rgba(3, 50, 32, 0.62));
    pointer-events: none;
}

.media-placeholder__overlay i { font-size: 3rem; margin-bottom: 6px; }
.media-placeholder__overlay span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.media-placeholder__overlay small { opacity: 0.85; }

.photo-collage {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 190px 190px;
    gap: 12px;
}

.photo-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 24px rgba(3, 50, 32, 0.12);
}

.photo-collage img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 32px rgba(3, 50, 32, 0.18);
}

.photo-collage .tile-a { grid-row: 1 / span 2; }

.collage-label {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
}

.people-swiper,
.reviews-swiper {
    overflow: hidden;
    padding: 8px 4px 48px;
}

.people-card {
    height: auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(3, 50, 32, 0.12);
}

.people-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
    display: block;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.people-card img:hover { transform: scale(1.04); }

.people-card__body {
    padding: 16px 16px 20px;
    border-top: 4px solid #033220;
    background: #f9ead3;
}

.people-card__body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.18rem;
    letter-spacing: 0.4px;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.people-card__body p {
    margin: 0;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.6;
}

.people-note {
    margin-top: 4px;
    color: #333;
    font-weight: 600;
    max-width: 780px;
    font-size: 1.08rem;
    line-height: 1.7;
}

.review-placeholder {
    min-height: 300px;
    border-radius: 18px;
    border: 2px dashed rgba(13, 66, 39, 0.28);
    background:
        linear-gradient(180deg, #fff 0%, #f9ead3 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 24px;
    color: #0d4227;
    box-shadow: 0 12px 28px rgba(3, 50, 32, 0.08);
}

.review-placeholder i { font-size: 1.8rem; }
.review-placeholder span {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.review-placeholder small { color: #6b7280; }

.inner-cta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.signup-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    align-items: stretch;
}

.signup-contacts {
    background: #033220;
    color: #f9ead3;
    border-radius: 22px;
    padding: 32px 28px;
}

.signup-contacts h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #f9ead3;
    font-size: 1.4rem;
}

.signup-contacts-text { margin: 0 0 18px; color: rgba(249, 234, 211, 0.82); }

.signup-contacts-list { display: grid; gap: 10px; }

.signup-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(249, 234, 211, 0.12);
    border: 1px solid rgba(249, 234, 211, 0.18);
    text-decoration: none;
    color: #f9ead3;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.signup-contact:hover {
    transform: translateX(4px);
    background: rgba(249, 234, 211, 0.2);
}

.contact-form {
    background: #ffffff;
    padding: 36px;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(3, 50, 32, 0.1);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    margin-bottom: 10px;
    color: #0d4227;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f9f9f9;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d4227;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 66, 39, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-hint {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #0d4227;
    font-weight: 700;
}

.swiper-pagination-bullet-active {
    background: #0d4227;
}

.inner-page .photo-modal .modal-content img {
    max-width: min(1100px, calc(100vw - 80px));
}

@media (max-width: 1024px) {
    .inner-hero-grid,
    .split-lists,
    .audience-grid,
    .show-grid,
    .signup-layout,
    .facts-row,
    .steps {
        grid-template-columns: 1fr;
    }

    .session-grid { grid-template-columns: 1fr 1fr; }
    .session-item,
    .session-item:nth-child(4),
    .session-item:nth-child(5) { grid-column: span 1; }

    .inner-hero-stack {
        min-height: 420px;
        order: -1;
    }

    .photo-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 150px 150px;
    }

    .photo-collage .tile-a {
        grid-column: 1 / span 2;
        grid-row: auto;
        height: 220px;
    }
}

@media (max-width: 640px) {
    .inner-hero { padding: 20px 0 48px; }
    .inner-section { padding: 56px 0; }
    .contact-form { padding: 22px; }
    .form-row { grid-template-columns: 1fr; }
    .session-grid { grid-template-columns: 1fr; }
    .media-placeholder img { height: 240px; }
    .people-card img { height: 280px; }
    .photo-collage { grid-template-columns: 1fr; grid-template-rows: none; }
    .photo-collage .tile-a { grid-column: auto; height: 200px; }
    .photo-collage img { height: 180px; }
    .inner-hero-stack { min-height: 360px; }
    .inner-hero-stack img:nth-child(1) { height: 250px; }
    .inner-hero-stack img:nth-child(2) { height: 160px; }
    .inner-hero-stack img:nth-child(3) { display: none; }
    .fact-giant { font-size: 3.2rem; }
    .result-list li { grid-template-columns: 48px 1fr; }
}
