/* =========================================================================
   Hero block: 2-column layout
   ========================================================================= */

.br-page {
    background: var(--color-white);
    font-family: var(--font-gotham);
}

.br-wrap {
    width: 100%;
    max-width: 1502px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.br-block {
    padding: 4rem 0;
    width: 100%;
    box-sizing: border-box;
}

.br-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}
.br-col-left  { flex: 0 0 33.333%; min-width: 0; }
.br-col-right { flex: 1; min-width: 0; text-align: left; }
.br-col-right .br-text,
.br-col-right .br-gold,
.br-col-right .br-h3,
.br-col-right .br-list,
.br-col-right .br-list li,
.br-col-right .br-services,
.br-col-right .br-services li,
.br-col-right .br-list-num { text-align: left; }

.br-title {
    font-family: var(--font-gotham);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin: 0 0 12px;
    line-height: 1.2;
}
.br-subtitle {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-gold);
    margin: 0;
    line-height: 1.35;
}

.br-text {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.45;
    margin: 0 0 10px;
}
.br-text:last-child { margin-bottom: 0; }

.br-h3 {
    font-family: var(--font-gotham);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin: 18px 0 6px;
    line-height: 1.3;
}

.br-list { list-style: none; padding: 0; margin: 0 0 12px; }
.br-list li {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.45;
    margin-bottom: 3px;
}
ol.br-list li { font-weight: 500; }
.br-list-num {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-charcoal);
}

.br-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.br-services li {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.45;
    margin-bottom: 3px;
}

.br-gold {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1.45;
    margin: 18px 0 0;
}

@media (max-width: 991px) {
    .br-row { flex-direction: column; gap: 28px; }
    .br-col-left, .br-col-right { flex: none; width: 100%; }
    .br-title { font-size: 34px; }
    .br-services { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .br-block { padding: 2.5rem 0; }
    .br-title { font-size: 28px; }
    .br-subtitle { font-size: 18px; }
    .br-h3 { font-size: 18px; }
    .br-text, .br-list li, .br-services li, .br-list-num { font-size: 17px; }
}


/* =========================================================================
   "You may also be interested in" — related-services cards (1:1 с live .pb-also-*)
   ========================================================================= */

.pb-also-section {
    padding: 4rem 0;
    width: 100%;
    background: var(--color-white);
    box-sizing: border-box;
}
.pb-also-container {
    max-width: 1502px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.pb-also-title {
    font-family: var(--font-gotham);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin: 0 0 1.5rem;
    line-height: 1.3;
    text-align: left;
}
.pb-also-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pb-also-card {
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    color: #343739;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}
.pb-also-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.pb-also-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}
.pb-also-icon img { width: 60px; height: 60px; display: block; object-fit: contain; }
.pb-also-card h3 {
    font-family: var(--font-gotham);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    color: #343739;
    margin: 0 0 15px;
    text-align: left;
}
.pb-also-link {
    color: var(--color-gold);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}
.pb-also-card:hover .pb-also-link { gap: 10px; }

@media (max-width: 991px) {
    .pb-also-grid { grid-template-columns: 1fr; }
    .pb-also-title { font-size: 24px; }
}
@media (max-width: 575px) {
    .pb-also-card { padding: 30px 20px; }
    .pb-also-card h3 { font-size: 18px; }
    .pb-also-icon, .pb-also-icon img { width: 50px; height: 50px; }
}


/* =========================================================================
   Scroll-reveal helper (общий, для журн. карточек и др.)
   ========================================================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.active { opacity: 1; transform: translateY(0); }
.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }
.scroll-reveal-delay-5 { transition-delay: 0.5s; }
.scroll-reveal-delay-6 { transition-delay: 0.6s; }
.scroll-reveal-delay-7 { transition-delay: 0.7s; }


/* =========================================================================
   Journey section — "Your Path with GARANT"
   ========================================================================= */

.cs-journey-section {
    background: var(--color-white);
    padding: 80px 0;
    color: #343739;
    width: 100%;
    box-sizing: border-box;
}
.cs-journey-container {
    max-width: 1502px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.cs-journey-title {
    text-align: center;
    font-family: var(--font-gotham);
    font-size: 50px;
    font-weight: 500;
    color: #343739;
    margin-bottom: 60px;
}

.cs-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    justify-items: center;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.cs-journey-row-2 {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}
.cs-journey-row-2 .cs-journey-step { flex: 0 0 auto; width: 100%; max-width: 360px; }
.cs-journey-step { position: relative; display: flex; flex-direction: column; align-items: center; }

.cs-step-number {
    width: 50px; height: 50px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gotham);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}
.cs-step-card {
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    width: 100%;
    max-width: 360px;
    height: 248px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
.cs-step-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.cs-step-card.active { background: var(--color-gold); color: var(--color-white); }
.cs-step-card.active h3,
.cs-step-card.active p { color: var(--color-white); }
.cs-step-card h3 {
    font-family: var(--font-gotham);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: #343739;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}
.cs-step-card p {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    text-align: center;
    width: 100%;
    margin: 0;
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .cs-step-card { max-width: 340px; height: 235px; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .cs-step-card { max-width: 320px; height: 230px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .cs-journey-title { font-size: 40px; margin-bottom: 50px; }
    .cs-journey-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .cs-journey-row-2 { flex-wrap: wrap; gap: 25px; }
    .cs-journey-row-2 .cs-journey-step { max-width: calc((100% - 50px) / 3); flex: 0 0 calc((100% - 50px) / 3); }
    .cs-step-card { height: 220px; }
    .cs-step-card h3 { font-size: 22px; }
    .cs-step-number { width: 55px; height: 55px; font-size: 22px; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cs-journey-section { padding: 60px 0; }
    .cs-journey-title { font-size: 30px; margin-bottom: 40px; }
    .cs-journey-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .cs-journey-row-2 { flex-wrap: wrap; gap: 25px; }
    .cs-journey-row-2 .cs-journey-step { max-width: calc(50% - 12.5px); flex: 0 0 calc(50% - 12.5px); }
    .cs-step-card { height: 200px; }
    .cs-step-card h3 { font-size: 19px; }
    .cs-step-card p { font-size: 14px; }
}
@media (max-width: 767px) {
    .cs-journey-section { padding: 50px 0; }
    .cs-journey-title { font-size: 26px; margin-bottom: 30px; }
    .cs-journey-grid { grid-template-columns: 1fr; gap: 25px; }
    .cs-journey-row-2 { flex-direction: column; align-items: center; gap: 25px; }
    .cs-step-card { height: auto; min-height: 180px; }
    .cs-step-card h3 { font-size: 20px; }
    .cs-step-card p { font-size: 14px; }
}


/* =========================================================================
   Embedded video section
   ========================================================================= */

.br-video-section {
    padding: 4rem 0;
    width: 100%;
    background: var(--color-white);
    box-sizing: border-box;
}
.br-video-container {
    max-width: 1502px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.br-video-wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 1128px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.br-video-wrap::before { content: ""; display: block; padding-top: 59.93%; }
.br-video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
