* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #ffffff; color: #000000; line-height: 1.5; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Шапка */
header { background: #003f5b; box-shadow: 0 1px 8px rgba(0,0,0,0.15); position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; flex-direction: column; gap: 12px; padding-top: 12px; padding-bottom: 12px; }
.header-top { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: #ffffff; }
.contacts { display: flex; gap: 20px; align-items: center; }
.phone-header { font-weight: 700; color: #f0ead4; text-decoration: none; font-size: 1.2rem; }
.btn-header { background: #879e82; color: #ffffff; padding: 8px 20px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: background 0.3s; }
.btn-header:hover { background: #6b8a6b; }

nav ul { display: flex; justify-content: center; gap: 32px; list-style: none; padding: 8px 0; }
nav ul li a { text-decoration: none; font-weight: 700; font-size: 1rem; color: #f0ead4; padding: 8px 0; transition: all 0.3s; border-bottom: 3px solid transparent; }
nav ul li a:hover, nav ul li a.active { color: #ffffff; border-bottom-color: #879e82; }
.burger-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger-menu span { width: 25px; height: 3px; background: #f0ead4; }

/* Hero */
.hero { background: #003f5b; color: #fff; text-align: center; position: relative; overflow: hidden; height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; background: url('img/hero-bg.png') center/cover no-repeat; opacity: 0.25; z-index: 0; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-gerb { margin-bottom: 6px; width: 70px; opacity: 0.9; }
.hero-gerb img { width: 100%; height: auto; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)); }
.hero h1 { font-size: 2.6rem; font-weight: 800; letter-spacing: 1px; color: #fff; margin-bottom: 2px; }
.hero-subtitle { font-size: 1.1rem; font-weight: 500; color: #f0ead4; font-style: italic; margin-bottom: 16px; }
.hero-plus-list { max-width: 700px; margin: 0 auto 16px; text-align: left; display: flex; flex-direction: column; gap: 4px; }
.hero-plus-item { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 500; color: #f0ead4; transition: all 0.3s; }
.hero-plus-item:hover { color: #fff; transform: translateX(6px); }
.plus-icon { color: #879e82; font-size: 1.2rem; flex-shrink: 0; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 16px; }
.btn-primary, .btn-secondary { padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-primary { background: #879e82; color: #fff; box-shadow: 0 6px 20px rgba(135,158,130,0.5); }
.btn-primary:hover { background: #6b8a6b; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(135,158,130,0.7); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #f0ead4; }
.btn-secondary:hover { background: rgba(240,234,212,0.1); border-color: #fff; transform: translateY(-3px); }

/* Секции */
section { border-bottom: 4px solid #879e82; }
.why-us, .about, .benefits, .payouts, .support, .faq, .contact-form { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; padding: 60px 0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.why-us, .benefits, .faq, .payouts { background: #fff; }
.about, .support { background: #f0ead4; }
.contact-form { background: #003f5b; }
.about { position: relative; overflow: hidden; }
.about-bg { position: absolute; inset: 0; background: url('img/about-bg.png') center/cover no-repeat; opacity: 0.15; z-index: 0; }
.about .container { position: relative; z-index: 1; }
.support { position: relative; overflow: hidden; }
.support-bg { position: absolute; inset: 0; background: url('img/support-bg.png') center/cover no-repeat; opacity: 0.15; z-index: 0; }
.support .container { position: relative; z-index: 1; }
.why-us::before, .benefits::before, .faq::before { content: ''; position: absolute; top: -2px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #879e82, transparent); opacity: 0.6; }

h2 { font-size: 2.4rem; margin-bottom: 20px; color: #003f5b; font-weight: 800; display: inline-block; position: relative; }
h2::after { content: ''; display: block; width: 60px; height: 4px; background: #879e82; margin: 16px auto 0; border-radius: 2px; }
@media (max-width: 1200px) { h2 { font-size: 2rem; } }

.card-icon { width: 48px; height: 48px; object-fit: contain; margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto; }
.card-icon-lg { width: 64px; height: 64px; }

.why-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 40px 0; }
.why-item { background: #f0ead4; padding: 20px 24px; border-radius: 24px; font-weight: 600; font-size: 1.1rem; transition: all 0.3s; cursor: default; border-left: 4px solid #879e82; display: flex; align-items: center; gap: 16px; color: #000; }
.why-item:hover { background: #e5dbb5; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.why-personal { background: #f0ead4; padding: 30px; border-radius: 24px; max-width: 700px; margin: 0 auto; font-style: italic; border-left: 4px solid #003f5b; color: #000; }

.about-grid, .grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.about-item { background: #fff; padding: 24px; border-radius: 24px; flex: 1; min-width: 250px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: all 0.3s; border-top: 4px solid #879e82; color: #000; }
.about-item:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.about-item h3 { margin-bottom: 12px; color: #003f5b; }

.benefit { background: #f0ead4; padding: 24px; border-radius: 24px; flex: 1; min-width: 250px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: all 0.3s; border-top: 4px solid #879e82; text-align: center; font-weight: 600; font-size: 1.05rem; color: #000; }
.benefit:hover { background: #e5dbb5; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.support-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 40px; }
.support-item { background: #fff; padding: 18px 12px; border-radius: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 110px; height: 100%; border-top: 4px solid #879e82; transition: all 0.3s; flex-direction: column; gap: 8px; color: #000; }
.support-item:hover { background: #e5dbb5; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.step-num { font-weight: 800; font-size: 1.4rem; background: #003f5b; color: white; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 8px; }

.support-list { display: none; }
.support-list-item { display: flex; align-items: flex-start; gap: 16px; background: #fff; border-radius: 20px; padding: 16px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-left: 4px solid #879e82; }
.support-circle { flex-shrink: 0; width: 40px; height: 40px; background: #003f5b; color: white; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.support-text { font-weight: 600; font-size: 0.9rem; color: #000; text-align: left; line-height: 1.4; }

.steps-list { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 40px; }
.step { background: #003f5b; color: white; padding: 12px 24px; border-radius: 15px; font-weight: 700; font-size: 1rem; box-shadow: 0 4px 10px rgba(0,63,91,0.3); transition: all 0.3s; }
.step:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,63,91,0.4); }

.payouts-subtitle { font-size: 1.2rem; margin-bottom: 40px; color: #003f5b; }
.payouts-details { display: flex; gap: 40px; flex-wrap: wrap; text-align: left; position: relative; }
.payouts-details::before { content: ''; position: absolute; left: 50%; top: 10%; height: 80%; width: 2px; background: linear-gradient(to bottom, transparent, #879e82, #003f5b, #879e82, transparent); opacity: 0.4; transform: translateX(-50%); }
.payouts-column { flex: 1; background: #f0ead4; padding: 30px; border-radius: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border-top: 4px solid #003f5b; color: #000; }
.payouts-column h3 { color: #003f5b; margin-bottom: 20px; border-left: 4px solid #879e82; padding-left: 15px; font-weight: 700; }
.payouts-column ul { list-style: none; }
.payouts-column li { margin-bottom: 12px; padding-left: 20px; position: relative; font-weight: 500; }
.payouts-column li::before { content: "—"; left: 0; position: absolute; color: #879e82; }

.form-wrapper { display: flex; flex-direction: row; background: rgba(255,255,255,0.97); border-radius: 32px; overflow: hidden; box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2); }
.form-image { flex: 1; background: url('img/flag-bg.png') center/cover no-repeat; display: flex; align-items: flex-end; justify-content: center; padding: 20px 20px 0 20px; position: relative; }
.form-image::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); z-index: 0; }
.form-image img { max-width: 100%; display: block; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); position: relative; z-index: 1; }
.form-block { flex: 1; padding: 30px; background: white; color: #000; }
.form-block h3 { font-size: 2rem; color: #003f5b; margin-bottom: 12px; font-weight: 800; }
.form-block p { margin-bottom: 20px; }
.form-block input { width: 100%; padding: 14px 18px; margin-bottom: 18px; border: 1px solid #cbd5e1; border-radius: 12px; font-size: 1rem; transition: all 0.3s; }
.form-block input:focus { border-color: #879e82; outline: none; box-shadow: 0 0 0 3px rgba(135,158,130,0.2); }
.checkbox { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; cursor: pointer; }
.checkbox input { width: auto; margin: 0; }
.checkbox span a { color: #879e82; transition: color 0.3s; }
.checkbox span a:hover { color: #6b8a6b; }
.btn-submit { background: #879e82; color: white; width: 100%; padding: 14px; border-radius: 40px; font-weight: 700; border: none; cursor: pointer; transition: all 0.3s; font-size: 1rem; box-shadow: 0 4px 15px rgba(135,158,130,0.5); }
.btn-submit:hover { background: #6b8a6b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(135,158,130,0.7); }
.form-result { margin-top: 20px; text-align: center; }

.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 16px; border-radius: 16px; background: #f0ead4; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.faq-question { background: #fff; padding: 18px 24px; font-weight: 700; font-size: 1.2rem; color: #003f5b; cursor: pointer; border-left: 4px solid #879e82; transition: background 0.3s; user-select: none; }
.faq-question:hover { background: #f0ead4; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; background: #fff; padding: 0 24px; color: #000; line-height: 1.5; }
.faq-item.active .faq-answer { max-height: 200px; padding: 18px 24px; }
.faq-item:hover .faq-answer { max-height: 200px; padding: 18px 24px; }
.faq-item.active .faq-question, .faq-item:hover .faq-question { background: #f0ead4; }

footer { background: #003f5b; color: #f0ead4; padding: 40px 0; text-align: center; }
.disclaimer { background: rgba(255,255,255,0.05); padding: 12px; border-radius: 40px; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; font-size: 0.85rem; }
.copy a { color: #879e82; transition: color 0.3s; }
.copy a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 769px) {
    .form-image { padding: 40px 40px 0 40px; }
    .form-block { padding: 50px 40px; }
    .mobile-only { display: none; }
    .desktop-only { display: grid; }
}

@media (max-width: 768px) {
    .burger-menu, nav { display: none !important; }
    .logo { display: none; }
    .header-top { justify-content: flex-end; gap: 8px; }
    .contacts { width: 100%; justify-content: space-between; gap: 8px; }
    .phone-header { font-size: 0.85rem; white-space: nowrap; }
    .btn-header { padding: 6px 12px; font-size: 0.75rem; white-space: nowrap; }
    .hero, .why-us, .about, .benefits, .payouts, .support, .faq, .contact-form { min-height: auto; height: auto; padding: 40px 0; }
    .container { padding: 0 16px; }
    h2 { font-size: 1.6rem; }
    h2::after { width: 40px; margin-top: 8px; }
    .hero { height: auto; padding: 40px 0; }
    .hero-gerb { width: 48px; }
    .hero h1 { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-plus-item { font-size: 0.85rem; gap: 6px; }
    .btn-primary, .btn-secondary { padding: 10px 20px; font-size: 0.9rem; }
    .why-grid, .about-grid, .grid { gap: 12px; flex-direction: column; }
    .why-item { width: 100%; padding: 12px 16px; font-size: 0.9rem; gap: 12px; }
    .about-item, .benefit { min-width: auto; width: 100%; padding: 16px; }
    .support-grid.desktop-only { display: none; }
    .support-list { display: block; margin-bottom: 20px; }
    .support-list-item { padding: 12px; gap: 12px; }
    .support-circle { width: 32px; height: 32px; font-size: 1rem; }
    .support-text { font-size: 0.85rem; }
    .steps-list { gap: 10px; margin-top: 20px; }
    .step { padding: 8px 16px; font-size: 0.8rem; }
    .payouts-subtitle { font-size: 1rem; margin-bottom: 20px; }
    .payouts-details { flex-direction: column; gap: 16px; }
    .payouts-details::before { display: none; }
    .payouts-column { padding: 20px; }
    .payouts-column h3 { font-size: 1.1rem; }
    .form-wrapper { flex-direction: row; flex-wrap: nowrap; border-radius: 20px; }
    .form-image { flex: 1; padding: 16px 8px 0 8px; display: flex; align-items: flex-end; justify-content: center; min-width: 0; }
    .form-image img { max-height: 220px; width: auto; object-fit: contain; }
    .form-block { flex: 1; padding: 16px 12px; min-width: 0; }
    .form-block h3 { font-size: 1.2rem; margin-bottom: 6px; }
    .form-block p { font-size: 0.7rem; margin-bottom: 12px; }
    .form-block input { padding: 8px 10px; margin-bottom: 10px; font-size: 0.8rem; border-radius: 8px; }
    .checkbox { gap: 6px; margin-bottom: 12px; }
    .checkbox span { font-size: 0.65rem; }
    .btn-submit { padding: 8px; font-size: 0.8rem; }
    .faq-item:hover .faq-answer { max-height: 0; padding: 0 24px; }
    .faq-item.active .faq-answer { max-height: 200px; padding: 12px 16px; }
    .faq-question { padding: 12px 16px; font-size: 1rem; }
    .faq-answer { padding: 0 16px; }
    footer { padding: 24px 0; }
    .disclaimer { font-size: 0.65rem; padding: 6px; }
    .copy { font-size: 0.65rem; }
    .why-item:hover, .about-item:hover, .benefit:hover, .support-item:hover, .step:hover, .btn-primary:hover, .btn-secondary:hover, .btn-header:hover { transform: none; box-shadow: none; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .form-image img { max-height: 180px; }
    .form-block h3 { font-size: 1rem; }
    .form-block p { font-size: 0.6rem; }
    .form-block input { padding: 6px 8px; font-size: 0.7rem; }
    .checkbox span { font-size: 0.55rem; }
    .btn-submit { padding: 6px; font-size: 0.7rem; }
    .support-circle { width: 28px; height: 28px; font-size: 0.9rem; }
    .support-text { font-size: 0.75rem; }
}