.main {
    width: 100%;
    min-height: 100%;
}
.main > .container {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #FFF;
}
/*>>> header >>>*/
.header{
    width: 100%;
    background: #000;
}

/* Фиксированная высота шапки для страницы board/recordings */
body[data-page="board/recordings"] .header {
    height: 90px;
    min-height: 90px;
    max-height: 90px;
    display: flex;
    align-items: center;
}

body[data-page="board/recordings"] .header > .inner {
    height: 100%;
    display: flex;
    align-items: center;
}
/*<<< header <<<*/
.hallo_wrapper{
    /*width: 100%;*/
    /*height: 100%;*/
    /*max-height: 100%;*/
    min-height: 100%;
    overflow: hidden;
    background: #FFF url("/img/pic/camera.png") center center no-repeat;
    background-blend-mode: luminosity;
    background-size: cover;
    position: relative;
    /*border-bottom: #333 solid 1px;*/
    /*background: linear-gradient(-45deg, #980219, #573d24, #180b18, #2c2c2c);*/
    /*background-size: 400% 400%;*/
    /*animation: gradient 10s ease infinite;*/

    /*background-color: #fff;*/
    /*background-blend-mode: luminosity;*/
}
.hallo_wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #000;*/
    /*opacity: 0.5;*/
}
.video_wrapper{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background: #000;
    width: 100%;
    display: none;
}
.video_wrapper > video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}
.video_wrapper > video:before {
    content: '';
}
/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal_content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    margin: auto;
    padding: 30px;
    /*border-radius: 8px;*/
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal_content {
    transform: translateY(0);
}

.modal_close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: #DDD;
}

.modal_close:before,
.modal_close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #888;
}
.modal_close:before {
    transform: rotate(45deg);
}
.modal_close:after {
    transform: rotate(-45deg);
}

.modal_close:hover:before{
    background: #222;
}
.modal_close:hover:after {
    background: #222;
}

.modal_header {
    margin-bottom: 20px;
    padding-right: 30px;
    text-align: left;
}

.modal_title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.modal_body {
    margin-bottom: 20px;
}
.modal_body > hr{
    border-top: none;
    border-left: none;
    border-bottom: #DDD dashed 1px;
}

.modal_description {
    font-size: 15px;
    color: #777;
    line-height: 1.4;
    margin: 0 0 10px 0;
    text-align: left;
}
.modal_description > strong {
    color: #d32f2f;
    background: #ffebee;
    font-weight: 600;
    padding: 3px 6px;
    font-size: 12px;
    cursor: default;
}
.modal_description > strong:hover {
    color: #931d1d;
}
.modal_description > strong.password_was_copy {
    color: #146c11;
    background: #e9ffe4;
}
.modal_description > span.info_wrapper{
    display: inline-block;
    color: #444;
    font-size: 14px;
    background: #F8F8F8;
    border: #DDD dashed 1px;
    padding: 15px;
    margin: 20px 0 0;
}

.modal_footer {
    text-align: right;
}

.modal_button {
    display: inline-block;
    padding: 8px 20px;
    background: #4a90e2;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: 30px;
    vertical-align: middle;
    position: relative;
}
.modal_button:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}
.modal_button > svg{
    display: block;
    position: absolute;
    left: 15px;
    margin: 2px 0px 0 -2px;
}
.modal_button > span{
    display: inline-block;
    margin: -20px 0 0 20px;
}
.copy_notification{
    width: 100%;
    height: 20px;
    background: #FFF;
}
.copy_notification > span{
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    text-transform: lowercase;
    color: #333;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}
.copy_notification.show > span{
    opacity: 1;
}

@media (max-width: 768px) {
    .modal_content {
        width: 95%;
        padding: 20px;
    }

    .modal_title {
        font-size: 20px;
    }

    .modal_description {
        font-size: 14px;
    }

    .modal_button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/*=== FOOTER ===*/
footer{
    width: 100%;
    background: #FFF;
}
footer > .inner{
    max-width: 70%;
    padding: 30px 0;
    margin: 0 auto;
}
a.help_email{
    font-size: 14px;
    color: #555;
}

@media (max-width: 1450px) {
    .registration_form_wrapper{
        width: 80%;
    }
    .registration_form_inner{
        width: 100%;
    }
}
@media (max-width: 800px) {
    .about_text_wrapper{
        width: 70%;
    }
    .registration_form_wrapper{
        width: 70%;
    }
}

.why_sednox_wrapper {
    padding: 60px 0;
    background: #FFF;
}

.why_sednox_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.why_sednox_inner h3 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0 0 15px 0;
}
.why_sednox_description {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}
.why_sednox_list > li{
    padding: 0;
    margin: 20px 0;
}
.why_sednox_block {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}
.why_sednox_block:hover {
    transform: translateY(-5px);
}
.why_sednox_block_header {
    font-size: 20px;
    font-weight: 500;
    color: #1976d2;
    margin: 0 0 15px 0;
}
.why_sednox_block_description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .why_sednox_wrapper {
        padding: 40px 0;
    }
    
    .why_sednox_inner h3 {
        font-size: 28px;
    }
    
    .why_sednox_description {
        font-size: 16px;
    }
    
    .why_sednox_list {
        grid-template-columns: 1fr;
    }
}
.what_is_sednox_wrapper {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.what_is_sednox_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.what_is_sednox_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border: 300px solid transparent;
    border-right: 300px solid #358FE80D;
    border-top: 300px solid #358FE80D;
}
.what_is_sednox_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}
.what_is_sednox_content {
    flex: 1;
}
.what_is_sednox_image {
    flex: 1;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.what_is_sednox_image:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.what_is_sednox_image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.what_is_sednox_image:hover img {
    transform: scale(1.02);
}
.what_is_sednox_content h3 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.what_is_sednox_content .description {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 40px;
}
.what_is_sednox_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.feature_item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
.feature_icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.feature_item:hover .feature_icon {
    transform: scale(1.1);
}
.feature_icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.feature_text {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
}
@media (max-width: 992px) {
    .what_is_sednox_wrapper {
        padding: 80px 0;
    }

    .what_is_sednox_inner {
        flex-direction: column;
        gap: 50px;
    }
    
    .what_is_sednox_content {
        order: 2;
    }
    
    .what_is_sednox_image {
        order: 1;
        transform: none;
    }
    
    .what_is_sednox_content h3 {
        font-size: 36px;
        text-align: center;
    }

    .what_is_sednox_content .description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .what_is_sednox_wrapper {
        padding: 60px 0;
    }
    
    .what_is_sednox_features {
        grid-template-columns: 1fr;
    }
    
    .what_is_sednox_content h3 {
        font-size: 32px;
    }

    .what_is_sednox_content .description {
        font-size: 16px;
    }
}

.problem_solution_wrapper {
    padding: 80px 0;
    background: #F5F5F5;
}

.problem_solution_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem_solution_header {
    text-align: center;
    margin-bottom: 60px;
}

.problem_solution_header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.problem_solution_header .subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.problem_solution_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem_card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem_card:hover {
    transform: translateY(-5px);
}

.problem_card_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.problem_card_icon {
    width: 48px;
    height: 48px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.problem_card_icon svg {
    width: 24px;
    height: 24px;
    fill: #4a90e2;
}

.problem_card_title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.problem_card_description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution_highlight {
    background: #f0f4ff;
    border-radius: 8px;
    padding: 20px;
}

.solution_highlight_title {
    font-size: 18px;
    font-weight: 600;
    color: #4a90e2;
    margin: 0 0 10px 0;
}

.solution_highlight_text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .problem_solution_wrapper {
        padding: 60px 0;
    }

    .problem_solution_header h3 {
        font-size: 28px;
    }

    .problem_solution_header .subtitle {
        font-size: 16px;
    }

    .problem_solution_grid {
        grid-template-columns: 1fr;
    }

    .problem_card {
        padding: 20px;
    }
}

.how_to_start_wrapper {
    padding: 80px 0;
    background: #F5F5F5;
}

.how_to_start_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how_to_start_header {
    text-align: center;
    margin-bottom: 60px;
}

.how_to_start_header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
}

.how_to_start_header .subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.how_to_start_steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step_card {
    background: #FFF;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.step_card:hover {
    transform: translateY(-5px);
}

.step_number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #4a90e2;
border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.step_content {
    padding-top: 10px;
}

.step_content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.step_content p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}
.step_content p > strong{
    color: #d32f2f;
    background: #ffebee;
    padding: 2px 6px;
}

@media (max-width: 768px) {
    .how_to_start_wrapper {
        padding: 40px 0;
    }
    .how_to_start_header h3 {
        font-size: 28px;
    }
    .how_to_start_header .subtitle {
        font-size: 16px;
    }
    .how_to_start_steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .step_card {
        padding: 25px;
    }
    .step_content h4 {
        font-size: 18px;
    }
    .step_content p {
        font-size: 15px;
    }
}
.try_button_wrapper {
    text-align: center;
    margin-top: 50px;
}
.try_button {
    display: inline-block;
    padding: 16px 40px;
    background: #4a90e2;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.try_button:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}
@media (max-width: 768px) {
    .try_button {
        padding: 14px 32px;
        font-size: 16px;
    }
}
.welcome_wrapper {
    padding: 0;
    color: #fff;
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000 linear-gradient(-45deg, #980219, #573d24, #200a2c, #2c2c2c);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    overflow: hidden;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.welcome_inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.welcome_content {
    flex: 1;
    max-width: 600px;
}
.welcome_image {
    position: relative;
    flex: 1;
    text-align: right;
}
.welcome_title {
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.welcome_subtitle {
    font-weight: 100;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #F0F0F0;
}
.welcome_features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.welcome_feature {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}
.welcome_feature:hover {
    transform: translateX(10px);
}
.welcome_feature svg {
    fill: #4a90e2;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.welcome_feature span {
    font-weight: 100;
    font-size: 18px;
    letter-spacing: 1px;
}
.welcome_feature span a {
    color: #FFF;
    text-decoration: underline;
}
.welcome_feature span a:hover{
    text-decoration: none;
}
.welcome_button {
    display: inline-block;
    padding: 18px 48px;
    background: #4a90e2;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}
.welcome_button:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}
.telegram_link_wrapper{
    margin: 40px 0 20px;
}
.telegram_link_wrapper > a{
    width: 100%;
    padding: 12px 0;
    text-align: center;
}

/* Адаптивность для больших экранов */
@media (min-width: 1400px) {
    .welcome_inner {
        max-width: 1320px;
    }
    
    .welcome_title {
        font-size: 64px;
    }
    
    .welcome_subtitle {
        font-size: 28px;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 1200px) {
    .welcome_inner {
        gap: 40px;
    }
    
    .welcome_title {
        font-size: 48px;
    }
    
    .welcome_subtitle {
        font-size: 22px;
    }
    
    .welcome_feature span {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .welcome_wrapper {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    .welcome_inner {
        flex-direction: column;
    text-align: center;
        gap: 40px;
    }
    .welcome_content {
        max-width: 100%;
    }
    .welcome_image {
        order: -1;
    width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .logo_wrapper{
        top: 40px !important;
    }
    .registration_form_wrapper{
        width: 100%;
    }
    .registration_form_inner{
        width: auto;
    }
    .welcome_features {
        align-items: center;
    }

    .welcome_feature:hover {
        transform: translateX(0) scale(1.05);
    }

    .welcome_title {
        font-size: 42px;
    }

    .welcome_subtitle {
        font-size: 20px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .welcome_wrapper {
        padding: 60px 0;
    }

    .welcome_inner {
        padding: 0 15px;
    }

    .welcome_title {
        font-size: 36px;
    }

    .welcome_subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .welcome_features {
        gap: 15px;
        margin-bottom: 30px;
    }

    .welcome_feature {
        gap: 10px;
    }

    .welcome_feature span {
        font-size: 16px;
    }

    .welcome_button {
        padding: 16px 40px;
        font-size: 18px;
    width: 100%;
    text-align: center;
    }
}

/* Адаптивность для маленьких мобильных устройств */
@media (max-width: 480px) {
    .welcome_wrapper {
        padding: 40px 0;
    }

    .welcome_title {
        font-size: 32px;
    }

    .welcome_subtitle {
        font-size: 16px;
    }

    .welcome_feature span {
    font-size: 15px;
    }

    .welcome_button {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Адаптивность для элементов камеры */
@media (max-width: 992px) {
    .rec_wrapper,
    .battery_wrapper,
    .aperture_wrapper,
    .timer_wrapper {
        display: none;
    }
}
/* Адаптивность для элементов камеры */
@media (max-width: 640px) {
    .modal_content {
        width: 80%;
        /*margin: 0 20px;*/
    }
}

/* Стили для страницы авторизации */
.auth_wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
}

.auth_inner {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.auth_header {
    text-align: center;
    margin-bottom: 30px;
}

.auth_header h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.auth_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form_group label {
    font-size: 14px;
    color: #666;
}

.form_group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form_group input:focus {
    border-color: #007bff;
    outline: none;
}

.auth_button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth_button:hover {
    background: #0056b3;
}

.auth_links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.auth_link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.auth_link:hover {
    color: #0056b3;
}

.alert {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.happy_people_wrapper {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.happy_people_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.happy_people_content {
    flex: 1;
}

.happy_people_content h3 {
    font-size: 42px;
    font-weight: 700;
    color: #1976d2;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.happy_people_content .subtitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.happy_people_content .description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.happy_people_image {
    flex: 1;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.happy_people_image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 992px) {
    .happy_people_wrapper {
        padding: 80px 0;
    }

    .happy_people_inner {
        flex-direction: column;
        gap: 50px;
    }
    
    .happy_people_content {
        order: 2;
        text-align: center;
    }
    
    .happy_people_image {
        order: 1;
        transform: none;
    }
    
    .happy_people_content h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .happy_people_wrapper {
        padding: 60px 0;
    }
    
    .happy_people_content h3 {
        font-size: 32px;
    }

    .happy_people_content .subtitle {
        font-size: 20px;
    }

    .happy_people_content .description {
        font-size: 16px;
    }
}
.happy_people_content .poem {
    margin-top: 30px;
    padding: 20px;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 12px;
    border-left: 4px solid #1976d2;
}
.sn_logo_wrapper {
    position: absolute;
    top: 10%;
    left: 20px;
    z-index: 2;
    text-align: center;
    opacity: 0.9;
}
.sn_logo_wrapper svg {
    max-width: 100%;
    height: auto;
}
@keyframes twitch {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-2px, 2px) rotate(-0.5deg); }
    40% { transform: translate(2px, -2px) rotate(0.5deg); }
    60% { transform: translate(-2px, -2px) rotate(-0.5deg); }
    80% { transform: translate(2px, 2px) rotate(0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.what_is_sednox_wrapper h3,
.problem_solution_header h3,
.why_sednox_wrapper h3,
.how_to_start_header h3,
.happy_people_content h3 {
    font-weight: 400;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.description p,
.problem_card_description,
.solution_highlight_text,
.why_sednox_block_description {
    font-weight: 100;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.problem_card_title,
.why_sednox_block_header,
.step_content h4 {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1px;
}
.problem_card_title{
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: #000;
}

.modal_title {
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1px;
}

.modal_description {
    font-weight: 100;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.modal_button {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
}

.storage-chart {
    padding: 20px;
}

.storage-info {
    margin-top: 15px;
}

.storage-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.storage-item .label {
    color: #666;
}

.storage-item .value {
    font-weight: 500;
    color: #333;
}

.storage-progress {
    position: relative;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-top: 15px;
    overflow: hidden;
}

.storage-progress .progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    transition: width 0.3s ease;
}

.storage-progress .progress-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.user-select {
    margin-bottom: 15px;
}

.user-select select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.user-select select:hover {
    border-color: #607D8B;
}

.user-select select:focus {
    outline: none;
    border-color: #607D8B;
    box-shadow: 0 0 0 2px rgba(96, 125, 139, 0.1);
}

.user-select select option {
    padding: 8px;
}

/* Блок "Что мы предлагаем" */
.features {
    padding: 120px 0;
    background: #FFF;
    position: relative;
    overflow: hidden;
}
.features_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.features_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 600;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.features_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    border-radius: 2px;
}

.features_subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 30px auto 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.feature_item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #42a5f5, #1976d2);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.feature_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
}

.feature_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature_item:hover .feature_icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(25, 118, 210, 0.3);
}

.feature_icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature_content {
    position: relative;
}

.feature_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.feature_text {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.feature_badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(71, 85, 105, 0.1);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .features_grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .feature_item {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }

    .features_header {
        margin-bottom: 50px;
    }

    .features_title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .features_subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .features_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature_item {
        padding: 25px 20px;
    }

    .feature_icon {
        width: 50px;
        height: 50px;
    }

    .feature_icon svg {
        width: 24px;
        height: 24px;
    }

    .feature_title {
        font-size: 18px;
    }

    .feature_text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .features_title {
        font-size: 28px;
    }
    
    .feature_item {
        padding: 20px 15px;
    }
}








































