/* === БАЗОВЫЕ СТИЛИ === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F8F6F1;
    color: #0B132B;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

:root {
    --cream: #F8F6F1;
    --navy: #0B132B;
    --navy-light: #1C2541;
    --gold: #C5A059;
    --gold-light: #E2D1B3;
    --slate: #4A5568;
    --white: #FFFFFF;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: normal;
}

/* === КОНТЕЙНЕР === */
.container {
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* === ШАПКА === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(248, 246, 241, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11, 19, 43, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.nav {
    display: none;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--navy);
}

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

.btn-nav {
    background-color: var(--navy);
    color: var(--cream);
    padding: 10px 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.btn-nav:hover {
    background-color: var(--navy-light);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 50%;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    top: 10%;
    right: -200px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    left: -150px;
    border-color: rgba(197, 160, 89, 0.08);
}

.hero-line-1 {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.2), transparent);
    left: 50%;
    top: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-accent-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.05;
    margin-bottom: 0;
    color: var(--navy);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 80px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 100px;
    }
}

.hero-highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-right {
    padding-top: 40px;
}

.hero-text {
    font-size: 17px;
    color: var(--slate);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 100%;
}

.hero-text-accent {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 80px;
    font-size: 18px;
}

.hero-italic {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--navy);
    color: var(--cream);
    padding: 20px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--navy-light);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(11, 19, 43, 0.1);
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-stat-number {
    font-size: 40px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--slate);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* === ПРЕИМУЩЕСТВА === */
.advantages {
    padding: 80px 0;
    border-top: 1px solid rgba(11, 19, 43, 0.1);
    border-bottom: 1px solid rgba(11, 19, 43, 0.1);
    background-color: rgba(255, 255, 255, 0.5);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-number {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.advantage-text {
    font-size: 14px;
    color: var(--slate);
}

/* === ПРОЦЕСС === */
.process {
    padding: 128px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-badge {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process h2 {
    font-size: 36px;
    color: var(--navy);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .process h2 {
        font-size: 60px;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.process-step {
    text-align: center;
}

.process-number {
    font-size: 80px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1;
}

@media (min-width: 768px) {
    .process-number {
        font-size: 100px;
    }
}

.process-step h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--slate);
}

/* === ВЛЮБИТЬСЯ В СТРАНУ === */
.love-country {
    padding: 128px 0;
    background-color: var(--navy);
    color: var(--cream);
    text-align: center;
}

.love-country-content {
    max-width: 700px;
    margin: 0 auto;
}

.love-country h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .love-country h2 {
        font-size: 56px;
    }
}

.love-country-text {
    color: rgba(248, 246, 241, 0.7);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.love-country-text:last-of-type {
    margin-bottom: 48px;
}

.love-country-text-small {
    font-size: 16px;
    font-style: italic;
    color: rgba(248, 246, 241, 0.5);
}

.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 20px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-light);
}

/* === ПРОГРАММЫ === */
.programs {
    padding: 128px 0;
}

.programs-header {
    text-align: center;
    margin-bottom: 80px;
}

.programs-badge {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.programs h2 {
    font-size: 36px;
    color: var(--navy);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .programs h2 {
        font-size: 60px;
    }
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    border: 1px solid rgba(11, 19, 43, 0.1);
    padding: 40px;
    transition: all 0.5s ease;
}

.program-card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    background-color: var(--white);
}

.program-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 16px;
}

.program-card p {
    color: var(--slate);
    font-weight: 300;
    line-height: 1.6;
}

/* === ОТ ВИЗЫ ДО ЖИЗНИ === */
.journey {
    padding: 128px 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(11, 19, 43, 0.1);
    border-bottom: 1px solid rgba(11, 19, 43, 0.1);
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey h2 {
    font-size: 36px;
    color: var(--navy);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .journey h2 {
        font-size: 48px;
    }
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 80px;
    }
}

.journey-item {
    display: flex;
    gap: 24px;
}

.journey-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.journey-icon span {
    color: var(--gold);
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.journey-item h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
}

.journey-item p {
    color: var(--slate);
    font-weight: 300;
}

/* === FAQ === */
.faq {
    padding: 128px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-badge {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq h2 {
    font-size: 36px;
    color: var(--navy);
}

@media (min-width: 768px) {
    .faq h2 {
        font-size: 48px;
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(11, 19, 43, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span {
    font-size: 20px;
    color: var(--navy);
    padding-right: 32px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.faq-icon {
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 24px;
    color: var(--slate);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
}

/* === ОТЗЫВЫ === */
.reviews {
    padding: 128px 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(11, 19, 43, 0.1);
    border-bottom: 1px solid rgba(11, 19, 43, 0.1);
}

.reviews-header {
    text-align: center;
    margin-bottom: 80px;
}

.reviews-badge {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.reviews h2 {
    font-size: 36px;
    color: var(--navy);
}

@media (min-width: 768px) {
    .reviews h2 {
        font-size: 48px;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.review-card {
    background-color: var(--cream);
    padding: 32px;
    border: 1px solid rgba(11, 19, 43, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.review-name {
    font-weight: 600;
    color: var(--navy);
}

.review-type {
    font-size: 12px;
    color: var(--slate);
}

.review-text {
    color: var(--slate);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

/* === КОНТАКТЫ === */
.contact {
    padding: 128px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .contact-info h2 {
        font-size: 48px;
    }
}

.contact-text {
    color: var(--slate);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 48px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-link {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
}

/* === ФОРМА === */
.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--slate);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(11, 19, 43, 0.2);
    outline: none;
    color: var(--navy);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-bottom-color: var(--gold);
}

.btn-submit {
    width: 100%;
    background-color: var(--navy);
    color: var(--cream);
    padding: 20px;
    border: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 32px;
}

.btn-submit:hover {
    background-color: var(--navy-light);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message {
    display: none;
    text-align: center;
    padding: 24px;
}

.success-message.show {
    display: block;
}

.success-message h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 8px;
}

.success-message p {
    color: var(--slate);
    font-size: 14px;
}

.form-note {
    font-size: 12px;
    color: rgba(74, 85, 104, 0.6);
    text-align: center;
    padding-top: 16px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 8px;
}

.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.form-consent label {
    font-size: 12px;
    color: var(--slate);
    line-height: 1.5;
    cursor: pointer;
}

.form-consent a {
    color: var(--gold);
    text-decoration: underline;
}

.form-consent a:hover {
    opacity: 0.8;
}

/* === ПОДВАЛ === */
.footer {
    background-color: var(--navy);
    color: var(--cream);
    padding: 48px 0 24px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.footer-text {
    color: rgba(248, 246, 241, 0.6);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

.footer-title {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(248, 246, 241, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(248, 246, 241, 0.1);
    padding-top: 16px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
    }
}

.footer-copyright {
    color: rgba(248, 246, 241, 0.5);
    font-size: 12px;
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-separator {
    color: rgba(248, 246, 241, 0.3);
    font-size: 12px;
}

.footer-legal-link {
    color: rgba(248, 246, 241, 0.5);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--gold);
}

/* === COOKIES === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--navy);
    color: var(--cream);
    padding: 20px;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cookie-text {
    font-size: 14px;
    color: rgba(248, 246, 241, 0.85);
    line-height: 1.5;
    max-width: 700px;
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-btn-accept {
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 28px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn-accept:hover {
    background-color: var(--gold-light);
}

/* === СТРАНИЦЫ ПОЛИТИК === */
.policy-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.policy-page h1 {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .policy-page h1 {
        font-size: 52px;
    }
}

.policy-updated {
    color: var(--slate);
    font-size: 14px;
    margin-bottom: 48px;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.policy-section h3 {
    font-size: 18px;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-section p,
.policy-section li {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    padding-left: 24px;
    position: relative;
}

.policy-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.policy-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    padding: 12px 24px;
    border: 1px solid var(--navy);
    transition: all 0.3s ease;
    margin-top: 40px;
}

.policy-back:hover {
    background-color: var(--navy);
    color: var(--cream);
}

/* === ИКОНКИ МЕССЕНДЖЕРОВ В ПОДВАЛЕ === */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* === УМЕНЬШЕННЫЙ ОТСТУП В ПОДВАЛЕ === */
.footer-bottom {
    border-top: 1px solid rgba(248, 246, 241, 0.1);
    padding-top: 16px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* === БОЛЬШОЙ ОТСТУП ПЕРЕД "БЕРЁМ НА СЕБЯ ВСЁ" === */
.hero-text-accent {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 18px;
}
