/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-green: #0EC824;
    --color-dark: #0A0A0A;
    --color-dark-soft: #111111;
    --color-dark-green: #0A1A0A;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #888888;
    --color-gray-light: #CCCCCC;
    --color-gray-green: #A0B0A0;
    --color-footer-bottom: #1A1A1A;

    --border-radius-card: 16px;
    --border-radius-btn: 99px;
    --border-radius-badge: 40px;

    --container-width: 1280px;
    --container-padding: 24px;

    --transition: 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.5;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
.text-green {
    color: var(--color-green);
}

.text-dark {
    color: var(--color-black);
}

.text-white {
    color: var(--color-white);
}

.text-gray {
    color: var(--color-gray);
}

.text-gray-light {
    color: var(--color-gray-light);
    font-size: 18px;
}

.text-gray-green {
    color: var(--color-gray-green);
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--color-dark-green);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
}

.btn--primary {
    background-color: var(--color-green);
    color: var(--color-black);
}

.btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 200, 36, 0.2);
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    padding: 4px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container { display: flex; align-items: center; justify-content: space-between; max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); width: 100%; }

.header__left {
    display: flex;
    align-items: center;
    gap: 48px;
}
.footer-lang-switch { margin-left: 10px; }
.footer-lang-current { font-weight: 700; }
.footer-lang-link { text-decoration: none; }

.header__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.header__logo img { display: block; width: 40px; height: 40px; flex: 0 0 40px; }
.logo-text { font-size: 24px; font-weight: 700; color: var(--color-white); letter-spacing: -0.5px; line-height: 1; margin-left: 0; white-space: nowrap; }

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-green);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 0;
    display: flex;
    align-items: center;
    background-color: #050b07;
    background-image: url(../img/backrgoundsrats.webp);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.containernew { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); width: 100%; font-size: 18px; line-height: 1.75; color: #07150f; }
.containernew a { color: #0A1A0A; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.containernew a:hover { color: #0EC824; }

.containernew h2 { font-size: 36px; font-weight: 600; line-height: 1.18; margin: 0 0 16px; color: #000000; letter-spacing: -0.3px; }
.containernew h3 { font-size: 26px; font-weight: 600; line-height: 1.22; margin: 28px 0 12px; color: #000000; letter-spacing: -0.2px; }
.containernew h4 { font-size: 20px; font-weight: 600; line-height: 1.28; margin: 22px 0 10px; color: #000000; }

.containernew p { font-size: 18px; line-height: 1.75; margin: 0 0 16px; color: #0A1A0A; }
.containernew p + h2 { margin-top: 36px; }
.containernew p + h3 { margin-top: 26px; }
.containernew p + h4 { margin-top: 22px; }

.containernew ol, .containernew ul { margin: 0 0 18px; padding: 0; list-style: none; }
.containernew li { margin: 0 0 10px; padding: 0 0 0 28px; position: relative; color: #0A1A0A; }
.containernew ol { counter-reset: cn; }
.containernew ol > li { counter-increment: cn; }
.containernew ol > li::before { content: counter(cn) "."; position: absolute; left: 0; top: 0; width: 22px; text-align: right; font-weight: 700; color: #0A1A0A; }
.containernew ul > li::before { content: ""; position: absolute; left: 8px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: #0EC824; }

.containernew strong { color: #000000; font-weight: 700; }
.containernew em { color: #0A1A0A; font-style: italic; }

.containernew .tk-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 10px 0 22px; background: #FFFFFF; border: 1px solid rgba(10, 26, 10, 0.10); border-radius: 14px; overflow: hidden; box-shadow: 0 10px 24px rgba(10, 26, 10, 0.06); }
.containernew .tk-table thead th { font-size: 14px; letter-spacing: 0.2px; text-transform: none; text-align: left; padding: 14px 16px; color: #000000; background: rgba(14, 200, 36, 0.10); border-bottom: 1px solid rgba(10, 26, 10, 0.10); }
.containernew .tk-table tbody td { padding: 14px 16px; color: #0A1A0A; border-bottom: 1px solid rgba(10, 26, 10, 0.08); vertical-align: top; }
.containernew .tk-table tbody tr:last-child td { border-bottom: 0; }
.containernew .tk-table tbody tr:nth-child(even) td { background: rgba(10, 26, 10, 0.03); }
.containernew .tk-table tbody td:first-child { font-weight: 700; color: #000000; width: 22%; }
.containernew .tk-table thead th:first-child { border-top-left-radius: 14px; }
.containernew .tk-table thead th:last-child { border-top-right-radius: 14px; }

.containernew .table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }
.containernew .table-scroll .tk-table { min-width: 720px; }
.containernew .table-scroll::-webkit-scrollbar { height: 10px; }
.containernew .table-scroll::-webkit-scrollbar-track { background: rgba(10, 26, 10, 0.08); border-radius: 999px; }
.containernew .table-scroll::-webkit-scrollbar-thumb { background: rgba(14, 200, 36, 0.55); border-radius: 999px; }
.containernew .table-scroll::-webkit-scrollbar-thumb:hover { background: rgba(14, 200, 36, 0.75); }

.containernew img{max-width:100%;height:auto;margin:20px 0;border-radius: var(--border-radius-card);display:block;}
.container img{max-width:100%;height:auto;margin:20px 0;border-radius: var(--border-radius-card);display:block;}

#regForm { scroll-margin-top: 100px; }

.page-hero { padding-top: 80px; padding-bottom: 40px; background-color: #050b07; background-image: url("../img/backrgoundsrats.webp"); background-position: center top; background-size: cover; background-repeat: no-repeat; }
.page-hero__container { min-height: 18vh; display: flex; align-items: flex-end; justify-content: center; }
.page-hero__title { margin: 0; color: #fff; text-align: center; font-size: 42px; line-height: 1.1; font-weight: 700; }

@media (max-width: 768px) {
    .containernew { padding: 0 18px; }
    .containernew h2 { font-size: 30px; }
    .containernew h3 { font-size: 22px; margin: 22px 0 10px; }
    .containernew h4 { font-size: 18px; }
    .containernew li { padding-left: 26px; }
    .containernew .tk-table thead th, .containernew .tk-table tbody td { padding: 12px 12px; }
    .containernew .tk-table tbody td:first-child { width: auto; }
}

.hero__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero__text-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero__title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero__glow {
    text-shadow:
        0 0 20px rgba(14, 200, 36, 0.4),
        0 0 40px rgba(14, 200, 36, 0.2),
        0 0 60px rgba(14, 200, 36, 0.1);
}

.hero__subtitle {
    font-size: 18px;
    color: var(--color-gray-light);
}

.hero__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    margin-top: -40px;
}

.hero__left {
    position: relative;
    z-index: 2;
    justify-self: start;
    width: 100%;
}

.hero__right {
    position: relative;
    z-index: 1;
}

.hero__image {
    width: 100%;
    max-width: 550px;
}

.hero__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

/* ===== REGISTER FORM ===== */
.register-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-card);
    padding: 40px;
    max-width: 520px;
    width: 100%;
}

.register-form__title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-white);
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-btn);
    color: var(--color-white);
    font-size: 16px;
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-green);
}

.form-input.error {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

/* ===== CEO SECTION ===== */
.ceo-section {
    background-color: #fafafa;
    padding: 70px 0 30px 0;
}

.ceo__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}






.form {
    background-color: #0C1910;
    border: 1px solid #112317;
    border-radius: 30px;
    padding: 15px 25px 25px 25px;
}
.form input {
    width: 100%;
    background-color: #010E05;
    border: 1px solid #1F3A2B;
    height: 50px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 20px;
    border-radius: 30px;
    color: #f4f4f4;
}
.form small.error, .form small.success { display:block; margin:12px 0; color:#d90000; font-size:14px; line-height:1.3; }
.pwd-wrap{position:relative;}
.pwd-wrap #password{padding-right:44px;}
.pwd-eye{position:absolute;right:12px;top:50%;transform:translateY(-50%);width:28px;height:28px;border:0;background:transparent;cursor:pointer;opacity:.9;}
.pwd-eye:before{content:"";display:block;width:100%;height:100%;background-repeat:no-repeat;background-position:center;background-size:22px 22px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");}
.pwd-eye.is-on:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.73 5.08A10.43 10.43 0 0 1 12 5c6.5 0 10 7 10 7a16.6 16.6 0 0 1-4.27 5.23'/%3E%3Cpath d='M6.61 6.61A16.18 16.18 0 0 0 2 12s3.5 7 10 7a10.43 10.43 0 0 0 5.39-1.61'/%3E%3Cpath d='M14.12 14.12a3 3 0 0 1-4.24-4.24'/%3E%3Cpath d='M1 1l22 22'/%3E%3C/svg%3E");}
.formtitile { display:block; font-size:16px; font-weight:600; color:#fff; margin:18px 0 14px; }
.col_30 { width: 360px; margin-top: 30px;}
input#primary_button_green {width: auto; cursor: pointer;}
#primary_button_green {
    border-radius: 9999px;
    display: inline-block;
    background-color: #0EC824;
    padding: 0.75rem 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;

    /* Animation ke liye transitions */
    transition: all 0.3s ease-in-out;
}

#primary_button_green:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(14, 200, 36, 0.3);
}

#primary_button_green:active {
    transform: translateY(-1px) scale(1);
}


.hero { position: relative; overflow: hidden; }
.hero__container { position: relative; min-height: 760px; padding-bottom: 80px; }
.hero__text-block { position: relative; z-index: 2; max-width: 760px; }

.hero__image-anchor { position: absolute; right: 0; bottom: 0; width: 52%; display: flex; justify-content: flex-end; align-items: flex-end; z-index: 1; pointer-events: none; }
.hero__image-anchor .gif_img { width: 100%; }
.hero__image-anchor .gif_img img { display: block; width: 100%; height: auto; object-fit: contain; }
.col_30 { position: relative; z-index: 3; }
@media (max-width: 767px) {
  .hero {
    padding: 100px 0 0;
  }

  .hero__container {
    display: block;
    padding-bottom: 240px;
  }

  .hero__text-block {
    width: 100%;
    max-width: 100%;
  }

  .hero__image-anchor {
    width: 100%;
    max-width: none;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .hero__image-anchor .gif_img {
    width: 100%;
    max-width: none;
  }

  .hero__image-anchor .gif_img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }
}









.ceo__content {
    max-width: 500px;
}

.ceo__name {
    font-size: 32px;
    color: var(--color-black);
    margin-bottom: 4px;
}

.ceo__position {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.ceo__text {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.8;
}

.ceo__video {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-player {
    position: relative;
    cursor: pointer;
}

.video-preview {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(14, 200, 36, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(5px);
}

.play-button:hover {
    background: var(--color-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 3px;
}

/* ===== CORE VALUES SECTION ===== */
.core-values {
    background-color: var(--color-white);
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

.cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    border-radius: var(--border-radius-card);
    padding: 32px;
    transition: transform var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card--white {
    background-color: var(--color-white);
}

.card--light-green {
    background-color: rgba(14, 200, 36, 0.12);
}

.card--black {
    background-color: var(--color-black);
}

.card--dark {
    background-color: var(--color-dark-soft);
}

.card--with-shadow {
    box-shadow: 0 10px 30px rgba(14, 200, 36, 0.1);
}

.card__icon {
    margin-bottom: 20px;
}

.card__icon svg {
    width: 48px;
    height: 48px;
}

.card__title {
    font-size: 22px;
    margin-bottom: 12px;
}

.card--white .card__title {
    color: var(--color-black);
}

.card__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-green);
}
.card__text2 {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-grey-green);
}
.card__image {
    margin-bottom: 20px;
}

.card__img {
    width: 100%;
    height: auto;
}

/* Сложная сетка карточек */
.cards-complex-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.card--large {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 32px;
}

.card--large .card__image {
    margin-top: 0;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.card--large .card__img {
    width: 75%;
    max-width: 100%;
    height: auto;
    display: block;
}

.cards-complex-grid .card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.card--blockchain {
    grid-column: 3;
    grid-row: 1;
}

.card--lowrisk {
    grid-column: 2;
    grid-row: 2;
}

.cards-complex-grid .card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* ===== CORE PRODUCTS SECTION ===== */
.core-products {
    background-color: var(--color-black);
    padding: 80px 0;
}

.products-grid {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

.products-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.products-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
}

.product-card {
    background-color: var(--color-dark-green);
    border-radius: var(--border-radius-card);
    padding: 32px;
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card__title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.product-card__text {
    font-size: 16px;
    color: var(--color-gray-light);
    margin-bottom: 20px;
}

.product-card__list {
    list-style: none;
    color: var(--color-gray-light);
}

.product-card__list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.products-button,
.security-button {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
}

/* ===== PRODUCTS LIGHT SECTION ===== */
.products-light {
    background-color: var(--color-white);
    padding: 40px 0;
}

.product-card--light {
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(14, 200, 36, 0.1);
}

.product-card--light .product-card__title {
    color: var(--color-black);
}

.product-card--light .product-card__text {
    color: #000;
}

/* ===== SECURITY FEATURES SECTION ===== */
.security-features {
    background-color: var(--color-black);
    padding: 80px 0;
}

.security-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.security-card {
    background-color: var(--color-dark-green);
    border-radius: var(--border-radius-card);
    padding: 32px;
    padding-top: 60px;
    position: relative;
    margin-top: 40px;
    transition: transform var(--transition);
}
.security-card2 {
    background-color: var(--color-dark-green);
    border-radius: var(--border-radius-card);
    padding: 26px;
    position: relative;
    margin-top: 0px;
    transition: transform var(--transition);
}
.security-card:hover {
    transform: translateY(-5px);
}
.security-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-light);
}

ul.security-card__text {
    margin: 0;
    padding-left: 28px;
}

ul.security-card__text li {
    margin: 0 0 10px 0;
}
.security-card__image {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    z-index: 2;
}

.security-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.security-card__title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-white);
    margin-top: 80px;
}

.security-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-light);
}

.security-card__title2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-white);
    margin-top: 20px;
}

/* ===== REGISTER SECTION ===== */
.register-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-green) 100%);
}

.register__container {
    display: flex;
    justify-content: center;
}

.register-form--centered {
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-black);
}

.footer__main {
    padding: 20px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: stretch;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.footer__logo img {
    display: block;
}

.footer__description {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
    width: 100%;
    text-align: left;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.footer__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid rgba(14, 200, 36, 0.3);
    border-radius: var(--border-radius-badge);
    color: var(--color-white);
    font-size: 14px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.footer__status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-badge);
    padding: 2px;
    background: linear-gradient(90deg, var(--color-green), transparent, var(--color-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.footer__social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--color-green);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.social-link:hover svg {
    fill: var(--color-black);
}

/* Нижняя полоса футера */
.footer__bottom {
    background-color: var(--color-footer-bottom);
    padding: 20px 0;
}

.footer__bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: var(--color-gray);
    font-size: 14px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}

.footer-legal-link:hover {
    color: var(--color-green);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 42px;
    }

    .hero__bottom {
        gap: 30px;
    }

    .cards-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-complex-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .security-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__right {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .header__nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(86vw, 360px); background-color: rgba(10, 10, 10, 0.98); backdrop-filter: blur(12px); padding: 96px 24px 24px; transform: translateX(100%); transition: transform var(--transition); display: block; z-index: 1100; }
    .header__nav .nav-menu { flex-direction: column; gap: 18px; }
    .header__nav .nav-link { font-size: 18px; }
    .burger-menu { display: flex; z-index: 1200; }
    .header__overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.45); opacity: 0; pointer-events: none; transition: opacity var(--transition); z-index: 1050; }
    .header.menu-open .header__nav { transform: translateX(0); }
    .header.menu-open .header__overlay { opacity: 1; pointer-events: auto; }
    .header.menu-open .burger-menu span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .header.menu-open .burger-menu span:nth-child(2) { opacity: 0; }
    .header.menu-open .burger-menu span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    body.menu-open { overflow: hidden; }
    .hero__bottom { grid-template-columns: 1fr; gap: 40px; }
    .hero__left { justify-self: center; width: 100%; max-width: 500px; }
    .hero__right { display: flex; justify-content: center; }
    .ceo__container { grid-template-columns: 1fr; gap: 40px; }
    .ceo__content { max-width: 100%; }
    .cards-grid--3, .security-cards-grid, .products-grid--2, .products-grid--4 { grid-template-columns: 1fr; }
    .cards-complex-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .card--large, .cards-complex-grid .card:nth-child(2), .card--blockchain, .card--lowrisk, .cards-complex-grid .card:nth-child(5) { grid-column: auto; grid-row: auto; }
    .footer__bottom-container { flex-direction: column; gap: 16px; text-align: center; }
    .footer__legal { justify-content: center; }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__text-block {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .register-form {
        padding: 24px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .footer__legal {
        flex-direction: column;
        gap: 12px;
    }
}