/* Reset and base styles */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gold: #c5a572;
    --color-gold-light: #d4b68a;
    --color-gold-dark: #a88b5e;
    --color-silver: #e8e8e8;
    --color-silver-light: #b8b8b8;
    --color-silver-dark: #5a5a5a;
    --color-green-dark: #1e2a24;
    --color-wood: #3a2e24;
    --color-stone: #4a3e35;
    --color-text: #e0dcd5;
    --color-text-muted: #a8a39c;
    --font-logo-2: 'Cormorant Garamond', serif;
    --font-logo: 'Raleway', sans-serif;
    --font-main: 'Montserrat', sans-serif;
    font-family: 'Cinzel', serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-black);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-logo);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-silver);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 1rem auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-logo);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-silver);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-img {
    height: 70px;
    width: auto;
    /* Это делает изображение золотым цветом #c6a15b */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-silver);
}

.nav-cta {
    background: var(--color-silver);
    color: var(--color-black) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--color-silver-light);
    color: var(--color-black) !important;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--color-silver);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    max-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    background-size: cover, 50px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 100px;
}

.hero-title {
    font-size: 3.0rem;
    line-height: 1.2;
    margin-bottom: 100px;
    color: var(--color-text);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/static/images/hero_bg.png') center/cover;
    padding: 50px 30px;
    border-radius: 3px;
    box-shadow:
        0 15px 25px -10px rgba(0,0,0,0.5);
            /* Внутреннее размытие */
}


.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 100px;
    max-width: 600px;
}

/* Buttons */
/* .btn-img {
    display: inline-block;
    width: 300px;
    height: 100px;
    background-image: url('/static/images/btn_1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
}

.btn-img:focus {
    outline: none;
} */
.btn-img {
    width: 300px;
    height: auto;

}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 7px;
    text-transform: uppercase;
    font-size: 1.2rem;


}

/* Кнопка в форме дощечки с металлическим блеском */
.btn-metal {
    display: inline-block;
    position: relative;
    color: transparent;
    font-weight: 1000;
    text-transform: uppercase;

    /* Верхний слой - то, что будет вырезаться */
    background: linear-gradient(105deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.45) 40%);
        rgba(255, 255, 255, 0.55) 100%);
    -webkit-background-clip: text;
    background-clip: text;

    /* Остальные стили */
    border-radius: 8px 8px 12px 12px;
    box-shadow: 0 5px 0 #3a3a3a,
                0 8px 15px rgba(0, 0, 0, 0.5),
                inset 0 2px 8px rgba(255, 255, 220, 0.4),
                inset 0 -2px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Нижний слой - то, что видно внутри букв */
.btn-metal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/btn_bg.png') center/cover;
    z-index: -1; /* Помещаем под текст */
}
/* Эффект луча при наведении */
.btn-metal:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 1s ease;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.btn-metal:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('/static/images/btn_bg.png') center/cover;
    color: #f3f3f3;
    cursor: pointer;
}

/* Эффект нажатия */
.btn-metal:active {
    transform: translateY(4px);
    box-shadow:
        0 1px 0 #3a3a3a,
        0 5px 12px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 255, 220, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.6);
}

.rivet-1,
.rivet-2,
.rivet-3,
.rivet-4 {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle at 40% 40%, #9B9D9E, #FCFCFC);
    border-radius: 50%;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
                url('/static/images/bolt.png') center/cover;

    z-index: 2;
}

.btn-metal:hover .rivet-1,
.btn-metal:hover .rivet-2,
.btn-metal:hover .rivet-3,
.btn-metal:hover .rivet-4 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url('/static/images/bolt.png') center/cover;
}

.rivet-1 {
    bottom: 6px;
    left: 6px;
}

.rivet-2 {
    top: 6px;
    right: 6px;
}

.rivet-3 {
    top: 6px;
    left: 6px;
}

.rivet-4 {
    bottom: 6px;
    right: 6px;
}

/* Button Submit */

.form-submit .btn-img {
    display: inline-block;
    width: 300px; /* Замените на реальную ширину вашего изображения */
    height: 100px; /* Замените на реальную высоту вашего изображения */
    background-image: url('/static/images/btn_1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    background-color: transparent;
}

/* Для состояний */
.form-submit .btn-img:hover {
    opacity: 0.9;
}

.form-submit .btn-img:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-submit .btn-img:active {
    transform: translateY(1px);
}


/* For Whom Section */
.for-whom {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(197, 165, 114, 0.05);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-silver);
    background: rgba(197, 165, 114, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-silver);
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.profile-box {
    background: rgba(197, 165, 114, 0.1);
    padding: 2rem;
    border-left: 4px solid var(--color-gold);
    margin-top: 2rem;
}

.gold-text {
    color: var(--color-silver);
    font-weight: 400;
}

/* Legend Section */
.legend {
    padding: 100px 0;
    background: var(--color-dark);
    position: relative;
}

.legend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23c5a572" stroke-width="1"/><path d="M30 30 L70 30 L70 70 L30 70 Z" fill="none" stroke="%23c5a572" stroke-width="1"/></svg>');
    background-size: 100px 100px;
}

.legend-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.legend-quote {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legend-return {
    font-size: 1.5rem;
    color: var(--color-silver);
    font-family: var(--font-logo);
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(25, 25, 25, 0.8), rgba(25, 25, 25, 0.8)),
                url('/static/images/card_bg.png') center/cover;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
    background: linear-gradient(rgba(25, 25, 25, 0.5), rgba(25, 25, 25, 0.5)),
                url('/static/images/card_bg.png') center/cover;
}

.value-item h3 {
    color: var(--color-silver);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Mastermind Section */
.mastermind {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-green-dark) 100%);
}

.mastermind-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.no-water {
    color: var(--color-silver);
    font-weight: 400;
    margin-top: 1rem;
}

.program-part {
    margin-bottom: 4rem;
}

.program-part h3 {
    font-size: 2rem;
    color: var(--color-silver);
    margin-bottom: 0.5rem;
}

.program-part h3 span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-family: var(--font-main);
}

.part-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.week-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.week-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: all 0.3s ease;
}

.week-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.week-card h4 {
    color: var(--color-silver);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(197, 165, 114, 0.3);
}

.week-card ul {
    list-style: none;
}

.week-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.week-card li::before {
    content: '•';
    color: var(--color-silver);
    position: absolute;
    left: 0;
}

.program-format {
    text-align: center;
    margin-top: 3rem;
}

.program-format h3 {
    color: var(--color-silver);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.format-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 3rem;
}

.format-list li {
    padding: 0.5rem 1rem;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--color-text);
}

/* Life Section */
.life {
    padding: 100px 0;
    background: var(--color-dark);
}

.pillars {
    display: grid;
    gap: 3rem;
}

.pillar {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.2);
}

.pillar h3 {
    color: var(--color-silver);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.pillar ul {
    list-style: none;
}

.pillar li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
}

.pillar li::before {
    content: '—';
    color: var(--color-silver);
    position: absolute;
    left: 0;
}

.hierarchy {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hierarchy-item {
    padding: 0.3rem 1rem;
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.9rem;
}

.rituals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Concierge Section */
.concierge {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c5a572" stroke-width="1"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23c5a572" stroke-width="1"/></svg>');
    background-size: cover, 200px 200px;
}

.concierge-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.concierge-content h3 {
    color: var(--color-silver);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.concierge-content p {
    color: var(--color-text);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.example {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/static/images/card_bg.png') center/cover;
    padding: 1.5rem;
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.example:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url('/static/images/card_bg.png') center/cover;
}

.concierge-tagline {
    font-size: 2rem;
    color: var(--color-gold);
    font-family: var(--font-logo);
    font-weight: 400;
    margin-top: 2rem;
}

/* Founders Quote */
.founders-quote {
    padding: 100px 0;
    background: var(--color-black);

}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid var(--color-gold);
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/static/images/hero_bg.png') center/cover;
}

.quote-box::before,
.quote-box::after {
    content: '"';
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.7;
    position: absolute;
    font-family: serif;
}

.quote-box::before {
    top: -10px;
    left: 20px;
}

.quote-box::after {
    bottom: 40px;
    right: 20px;
    transform: rotate(180deg);
}

.quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.quote-author {
    color: var(--color-silver);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
}

/* How to Enter */
.how-to-enter {
    padding: 100px 0;
    background: var(--color-dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 165, 114, 0.2);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
                url('/static/images/btn_bg.png') center/cover;
    color: var(--color-black);
    font-size: 2.0rem;
    font-weight: 500;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--color-silver);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--color-text-muted);
}

.important-note {
    text-align: center;
    color: var(--color-silver);
    font-size: 1.2rem;
    margin-top: 3rem;
    padding: 1rem;
    border: 1px dashed var(--color-gold);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--color-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(197, 165, 114, 0.05);
    padding: 2rem;
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--color-silver);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(197, 165, 114, 0.3);
}

.faq-item p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Application Form */
.application {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border: 1px solid var(--color-gold);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-silver);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--color-text);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-silver);
    background: rgba(0, 0, 0, 0.8);
}

.form-control.error {
    border-color: #ff4444;
}

textarea.form-control {
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox input {
    width: auto;
}

.checkbox label {
    margin-bottom: 0;
    color: var(--color-text);
    font-weight: normal;
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.form-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    padding: 3rem;
    background: rgba(197, 165, 114, 0.05);
    border: 1px solid var(--color-gold);
}

.thank-you-content h1 {
    color: var(--color-silver);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thank-you-content p,
.thank-you-content a {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--color-black);
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--color-silver);
}

.footer-info p {
    color: var(--color-text-muted);
    margin: 0.3rem 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-silver);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.week-card,
.pillar,
.step,
.faq-item {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-black);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s;
        border-top: 1px solid rgba(197, 165, 114, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .format-list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 580px) {
    .hero-title {
        padding: 20px 15px;
        margin-bottom: 70px;
        font-size: 1.7rem;
    }

    .hero-content {
        margin-top: 80px;
    }

    .hero-title,
    .hero-subtitle,
    .profile-text,
    .legend-text,
    .legend-short p,
    .section-subtitle,
    .mastermind-intro,
    .why-works h3,
    .why-works p,
    .pillar h3,
    .pillar p,
    .concierge-content h3,
    .concierge-content p,
    .quote-text,
    .quote,
    .important-note
    {
        text-align: left;
    }

    .legend-quote,
    .quote {
        font-size: 1.2rem;
    }

    .btn {
        width: 100%;
        display: block;
        text-align: center;
        box-sizing: border-box;
        font-size: 1.0rem;
        letter-spacing: 4px;
        padding: 15px 15px;
    }

    .form-submit .btn-img {
        display: inline-block;
        width: 100%; /* Замените на реальную ширину вашего изображения */

    }
}


@media (max-width: 460px) {
    .btn-img {
        width: 100%;
        height: auto;
    }

}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-silver-dark);
    border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-silver);
}