/* ============================================
   HEADER MAIN - NAVIGATION & RESPONSIVE
   ============================================ */

/* Header Container */
.header-container {
    max-width: 1900px;
    margin-inline: auto;
}

/* Header Hero */
.header-hero {
    background: var(--header-bg-image), var(--color-gray-light);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-xxl);
    padding: var(--spacing-xl);
    overflow: hidden;
    position: relative;
    margin: var(--section-py-hero) var(--section-px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    padding: calc(var(--spacing-3xl) * 3) var(--spacing-xl) var(--spacing-4xl);
    position: relative;
    z-index: 2;
}

.hero h1 {
    text-align: center;
    margin-bottom: calc(var(--spacing-lg) * 2 + 1px);
    font-size: clamp(2.3rem, 4vw + 1rem, var(--font-size-hero));
    line-height: 1.5;
}

/* Text reveal для заголовка - разные размеры */
.hero .text-reveal-line {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
}

.hero p.lead {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--spacing-3xl);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
}

.hero .cta-wrap {
    display: flex;
    justify-content: center;
}

.hero .badges {
    display: grid;
    grid-auto-flow: column;
    gap: calc(var(--spacing-lg) * 2 - 2px);
    justify-content: center;
    color: var(--color-heading);
    opacity: 0.9;
    font-weight: var(--font-weight-semibold);
    margin-top: calc(var(--spacing-4xl) + 20px);
    position: relative;
    z-index: 2;
}

.hero .badges .item {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.badge-icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-brand);
    filter: drop-shadow(0 2px 6px rgba(25, 75, 251, .35));
}

/* Text reveal animation */
.hero .text-reveal-line {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.hero .text-reveal-line span {
    display: inline-block;
}

.hero .text-reveal-item {
    opacity: 0;
    transform: translateY(30px);
}

/* Initial state before animation */
.hero .text-reveal-line span,
.hero .text-reveal-item {
    opacity: 0;
    transform: translateY(30px);
}

/* Decorative Elements */
.decor {
    position: absolute;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 18px;
    background: var(--color-white);
    border: 1px solid rgba(25, 75, 251, .12);
    box-shadow: 0 12px 40px rgba(25, 75, 251, .25), inset 0 1px 0 rgba(255, 255, 255, .8);
    backdrop-filter: blur(2px);
    animation: float 6s ease-in-out infinite;
    z-index: var(--z-low);
}

.decor img,
.decor svg {
    width: 56px;
    height: 54px;
    color: var(--color-brand);
    filter: drop-shadow(0 6px 14px rgba(25, 75, 251, .25));
}

.decor.small {
    width: 54px;
    height: 54px;
    border-radius: 16px;
}

.decor.small img,
.decor.small svg {
    width: 40px;
    height: 36px;
}

.decor.tl {
    left: max(24px, 12vw);
    top: calc(33% - 100px);
    animation-delay: -2s;
}

.decor.ml {
    left: max(40px, 13vw);
    top: calc(57% + 60px);
    animation-delay: -1s;
}

.decor.tr {
    right: max(28px, 8vw);
    top: calc(33% - 80px);
    animation-delay: -3s;
}

.decor.mr {
    right: max(56px, 14vw);
    top: calc(50% + 80px);
    animation-delay: -4s;
}

/* Corners */
.corner {
    position: absolute;
    bottom: 0;
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    pointer-events: none;
    z-index: 0;
}

.corner-left {
    left: 0;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    background: linear-gradient(45deg, rgba(25, 75, 251, 1) 0%, rgb(245 246 248) 50%, rgba(245, 246, 248, 1) 100%);
    box-shadow: 0 -10px 40px rgba(25, 75, 251, .35);
}

.corner-right {
    right: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    background: linear-gradient(315deg, rgba(25, 75, 251, 1) 0%, rgb(245 246 248) 50%, rgba(245, 246, 248, 1) 100%);
}

.corner-grid {
    position: absolute;
    bottom: 0;
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
    background-image:
        repeating-linear-gradient(to right, rgba(255, 255, 255, .5) 0 1px, transparent 1px 26px),
        repeating-linear-gradient(to top, rgba(255, 255, 255, .5) 0 1px, transparent 1px 26px);
}

.corner-grid.left {
    left: 0;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.corner-grid.right {
    right: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Navbar */
.header-container .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 64px;
}

/* Navigation */
.header-container .nav {
    display: none;
}

/* Nav Actions */
.header-container .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Logo */
.header-container .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-heading);
}

.header-container .logo img {
    width: 28px;
    height: 28px;
    display: block;
}

/* ============================================
   ICON BUTTONS
   ============================================ */

/* Icon Button Base */
.header-container .icon-btn {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
    border: 1px solid rgba(25, 75, 251, 0.08);
    box-shadow: 0 8px 24px rgba(25, 75, 251, 0.06), 0 2px 6px rgba(11, 11, 11, 0.04);
    transition: all 0.15s ease;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    cursor: pointer;
}

.header-container .icon-btn:hover {
    box-shadow: 0 14px 36px rgba(25, 75, 251, 0.12);
    background: linear-gradient(180deg, #FFFFFF, #EEF4FF);
    transform: translateY(-1px);
}

.header-container .icon-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(25, 75, 251, 0.10);
}

.header-container .icon-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-heading);
    transition: all 0.18s ease;
}

.header-container .icon-btn:hover svg {
    color: var(--color-heading);
    transform: translateY(-1px) scale(1.02);
}

/* Telegram Button - переопределяем размеры для кнопки с текстом */
.header-container .telegram-btn {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    padding: 8px 12px !important;
    gap: 8px;
    align-items: center;
}

.header-container .telegram-btn svg {
    width: 20px;
    height: 20px;
}

.header-container .telegram-btn .telegram-text {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-heading);
    transition: color 0.18s ease;
    white-space: nowrap;
}

.header-container .telegram-btn:hover .telegram-text {
    color: var(--color-heading);
}

/* Login Button - переопределяем размеры для кнопки с текстом */
.header-container .login-btn {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    padding: 8px 12px !important;
    gap: 8px;
    align-items: center;
}

.header-container .login-btn svg {
    width: 20px;
    height: 20px;
}

.header-container .login-btn .login-text {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-heading);
    transition: color 0.18s ease;
    white-space: nowrap;
}

.header-container .login-btn:hover .login-text {
    color: var(--color-heading);
}

/* Email Button - переопределяем размеры для кнопки с текстом */
.header-container .email-btn {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    padding: 8px 12px !important;
    gap: 8px;
    align-items: center;
}

.header-container .email-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-heading);
}

.header-container .email-btn .email-text {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-heading);
    transition: color 0.18s ease;
    white-space: nowrap;
}

.header-container .email-btn:hover .email-text, .header-container .email-btn:hover svg{
    color: var(--color-brand);
}

/* ============================================
   NAV TOGGLE (HAMBURGER)
   ============================================ */
.header-container .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F6F8 100%);
    border: 1px solid rgba(25, 75, 251, 0.08);
    box-shadow: 0 8px 24px rgba(25, 75, 251, 0.06), 0 2px 6px rgba(11, 11, 11, 0.04);
    transition: transform 0.15s ease;
    z-index: 1001;
}

.header-container .nav-toggle:hover {
    transform: translateY(-1px);
}

.header-container .nav-toggle .hamburger {
    width: 22px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-container .nav-toggle .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #2F333D;
    border-radius: 2px;
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container .nav-toggle.active .hamburger .line1 {
    transform: rotate(45deg) translate(6px, 6px);
    background: #194BFB;
}

.header-container .nav-toggle.active .hamburger .line2 {
    opacity: 0;
    transform: scaleX(0);
}

.header-container .nav-toggle.active .hamburger .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #194BFB;
}

.header-container .nav-toggle .menu-text {
    font-weight: var(--font-weight-extrabold);
    color: #2F333D;
    transition: color 0.3s ease;
}

/* ============================================
   FULLSCREEN MENU
   ============================================ */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 75, 251, 0.98) 0%, rgba(110, 154, 255, 0.98) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.fullscreen-menu .menu-header {
    position: absolute;
    top: 40px;
    right: 40px;
}

.fullscreen-menu .menu-close {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.fullscreen-menu .menu-close:active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg) scale(0.95);
}

.fullscreen-menu .menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
}

.fullscreen-menu .menu-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

.fullscreen-menu .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fullscreen-menu .menu-item {
    margin: 0;
}

.fullscreen-menu .menu-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    padding: 12px 0;
    position: relative;
}

.fullscreen-menu .menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.fullscreen-menu .menu-link:hover::after {
    width: 0%;
}

.fullscreen-menu .menu-link:hover {
    transform: translateX(10px);
}

.fullscreen-menu .menu-link svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.fullscreen-menu .menu-item-lang {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fullscreen-menu .menu-item-lang .menu-link {
    font-size: 1.125rem;
}

.fullscreen-menu .menu-actions .menu-login {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
}

.fullscreen-menu .menu-actions .menu-login:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.fullscreen-menu .menu-actions .menu-login svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    vertical-align: middle;
    margin-right: 12px;
}

.fullscreen-menu .telegram-menu-item .menu-link {
    font-size: 1.25rem;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2AABEE 0%, #2AABEE 100%);
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.fullscreen-menu .telegram-menu-item .menu-link:hover {
    transform: translateX(4px);
    background: linear-gradient(135deg, #37BEE5 0%, #37BEE5 100%);
}

.fullscreen-menu .telegram-menu-item .menu-link svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.fullscreen-menu .menu-actions .menu-email {
    font-size: 1.25rem;
    padding: 14px 0;
    color: #FFFFFF;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fullscreen-menu .menu-actions .menu-email:hover {
    transform: translateX(4px);
}

.fullscreen-menu .menu-actions .menu-email svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE - TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Переопределяем desktop-only для кнопок - скрываем на планшетах и мобильных */
    .header-container .desktop-only {
        display: none !important;
    }

    .header-container .nav-toggle .menu-text {
        display: none;
    }

    .header-container .nav-toggle {
        padding: 8px;
    }

    .fullscreen-menu .menu-header {
        top: 30px;
        right: 30px;
    }

    .fullscreen-menu .menu-content {
        padding: 0 30px;
    }

    /* Disable text reveal on mobile devices */
    .hero .text-reveal-line span {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero .text-reveal-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .corner,
    .corner-grid {
        width: min(40vw, 280px);
        height: min(40vw, 280px);
    }

    /* Уменьшаем декоративные элементы */
    .decor {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .decor img,
    .decor svg {
        width: 42px;
        height: 40px;
    }

    .decor.small {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .decor.small img,
    .decor.small svg {
        width: 30px;
        height: 28px;
    }

    /* Позиционирование декоративных элементов */
    .decor.tl {
        left: max(16px, 8vw);
        top: calc(25% - 60px);
    }

    .decor.ml {
        left: max(20px, 10vw);
        top: calc(55% + 40px);
    }

    .decor.tr {
        right: max(16px, 8vw);
        top: calc(25% - 50px);
    }

    .decor.mr {
        right: max(20px, 10vw);
        top: calc(50% + 60px);
    }
}

/* ============================================
   RESPONSIVE - TABLET (≤900px)
   ============================================ */
@media (max-width: 900px) {
    .header-container .navbar {
        height: 60px;
        gap: 16px;
    }

    .header-container .logo img {
        width: 30px;
        height: 30px;
    }

    .header-container .logo span {
        font-size: 1rem;
        font-weight: 800;
    }

    .header-container .nav-actions {
        gap: 12px;
    }

    .header-container .nav-toggle {
        padding: 8px 12px;
    }

    .header-container .nav-toggle .hamburger {
        width: 22px;
        height: 16px;
    }

    .header-container .nav-toggle .hamburger span {
        height: 2.5px;
    }

    /* Отключаем анимацию text-reveal */
    .hero .text-reveal-line span {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero .text-reveal-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero .text-reveal-line {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .hero p.lead {
        font-size: 1.05rem;
        line-height: 1.5;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .header-container {
        top: 12px;
        width: calc(100% - 24px);
    }

    .header-container .navbar {
        height: 60px;
        padding: 0 12px;
        gap: 12px;
    }

    .header-container .logo {
        gap: 10px;
    }

    .header-container .logo img {
        width: 32px;
        height: 32px;
    }

    .header-container .logo span {
        font-size: 1rem;
        font-weight: 800;
    }

    .header-container .nav-actions {
        gap: 10px;
    }

    .header-container .nav-toggle {
        padding: 8px 12px;
        border-radius: 8px;
    }

    .header-container .nav-toggle .hamburger {
        width: 22px;
        height: 16px;
    }

    .header-container .nav-toggle .hamburger span {
        height: 2.5px;
    }

    .fullscreen-menu .menu-header {
        top: 20px;
        right: 20px;
    }

    .fullscreen-menu .menu-close {
        width: 44px;
        height: 44px;
    }

    .fullscreen-menu .menu-content {
        padding: 0 20px;
    }

    .fullscreen-menu .menu-link {
        font-size: 1.125rem;
        padding: 8px 0;
    }

    .fullscreen-menu .menu-actions .menu-login,
    .fullscreen-menu .telegram-menu-item .menu-link,
    .fullscreen-menu .menu-actions .menu-email {
        font-size: 1rem;
    }

    .fullscreen-menu .menu-list {
        gap: 5px;
    }

    .fullscreen-menu .menu-item-lang {
        margin-top: 20px;
        padding-top: 20px;
    }

    .hero {
        padding: calc(var(--spacing-3xl) * 2) var(--spacing-lg) var(--spacing-3xl);
    }

    .hero h1 {
        font-size: clamp(1.8rem, 3vw + 1rem, var(--font-size-3xl));
    }

    .hero .text-reveal-line {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .hero p.lead {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 auto var(--spacing-2xl);
    }

    .hero .badges {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, auto);
        gap: 12px;
        margin-top: 36px;
    }

    /* Уменьшаем декоративные элементы */
    .decor {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .decor img,
    .decor svg {
        width: 36px;
        height: 34px;
    }

    .decor.small {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .decor.small img,
    .decor.small svg {
        width: 26px;
        height: 24px;
    }

    /* Позиционирование декоративных элементов */
    .decor.tl {
        left: max(12px, 6vw);
        top: calc(20% - 50px);
    }

    .decor.ml {
        left: max(14px, 8vw);
        top: calc(50% + 30px);
    }

    .decor.tr {
        right: max(12px, 6vw);
        top: calc(20% - 40px);
    }

    .decor.mr {
        right: max(14px, 8vw);
        top: calc(45% + 50px);
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .header-container .navbar {
        height: 56px;
        padding: 0 10px;
    }

    .header-container .logo {
        gap: 8px;
    }

    .header-container .logo img {
        width: 28px;
        height: 28px;
    }

    .header-container .logo span {
        font-size: 0.95rem;
        font-weight: 800;
    }

    .header-container .nav-toggle {
        padding: 7px 10px;
    }

    .header-container .nav-toggle .hamburger {
        width: 20px;
        height: 15px;
    }

    .header-container .nav-toggle .hamburger span {
        height: 2.5px;
    }

    .fullscreen-menu .menu-content {
        padding: 0 16px;
    }

    .fullscreen-menu .menu-link {
        font-size: 1rem;
    }

    .hero .text-reveal-line {
        white-space: normal;
        word-break: break-word;
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .hero p.lead {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .header-hero {
        padding: var(--spacing-lg);
        margin: var(--section-py-hero) var(--spacing-sm);
    }

    /* Уменьшаем декоративные элементы */
    .decor {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .decor img,
    .decor svg {
        width: 28px;
        height: 26px;
    }

    .decor.small {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .decor.small img,
    .decor.small svg {
        width: 20px;
        height: 18px;
    }

    /* Позиционирование декоративных элементов */
    .decor.tl {
        left: 28px;
        top: calc(22% - 40px);
        display: none;
    }

    .decor.ml {
        left: 10px;
        top: calc(65% + 25px);
        display: none;
    }

    .decor.tr {
        right: 28px;
        top: calc(20% - 35px);
        display: none;
    }

    .decor.mr {
        right: 10px;
        top: calc(40% + 40px);
        display: none;
    }

    .corner,
    .corner-grid {
        width: min(30vw, 180px);
        height: min(30vw, 180px);
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL MOBILE (≤360px)
   ============================================ */
@media (max-width: 360px) {
    .header-container .navbar {
        height: 52px;
        gap: 8px;
        padding: 0 8px;
    }

    .header-container .logo {
        gap: 6px;
    }

    .header-container .logo img {
        width: 26px;
        height: 26px;
    }

    .header-container .logo span {
        font-size: 0.85rem;
        font-weight: 800;
    }

    .header-container .nav-toggle {
        padding: 6px 10px;
    }

    .header-container .nav-toggle .hamburger {
        width: 18px;
        height: 13px;
    }

    .header-container .nav-toggle .hamburger span {
        height: 2px;
    }
}
