/* check.css 기반 AI 엔진 무한반복 marquee */
.max-h-14 {
    max-height: 3.5rem;
}

.object-contain {
    object-fit: contain;
}

.w-full {
    width: 100%;
}

.ai-engines-section .marquee-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
}

.ai-marquee {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: marquee-right 34s linear infinite;
}

.ai-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* AI STRATEGY ENGINES 무한 스크롤 marquee */
.ai-engines-section {
    background: #fff;
    border-bottom: 1px solid rgba(60, 72, 80, 0.05);
}

.ai-engines-section .ai-marquee {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: ai-marquee-scroll 32s linear infinite;
}

.ai-engines-section .ai-marquee img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
    opacity: 0.85;
    transition: opacity 0.2s;
}

.ai-engines-section .ai-marquee img:hover {
    opacity: 1;
}

.ai-engines-section .marquee-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
}

@keyframes ai-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.ai-engines-section .ai-marquee-duplicate {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

/* 비디오 Hero Section */
.video-hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    background: #07111f;
    top: -80px;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 25, 0.34) 0%, rgba(5, 13, 25, 0.54) 42%, rgba(5, 13, 25, 0.86) 100%);
    z-index: 2;
}

.video-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 12%, rgba(255, 176, 136, 0.28), transparent 28%), radial-gradient(circle at 30% 75%, rgba(32, 137, 137, 0.20), transparent 32%);
    z-index: 3;
}

.video-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 200px 24px 60px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.video-hero-label {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.10);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.video-hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.video-hero-content .highlight {
    color: #5ce1e6;
}

.video-hero-content p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.video-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    background: #fff;
    color: #0c1418;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 36px;
    margin-bottom: 36px;
    box-shadow: 0 18px 44px -22px rgba(255, 255, 255, 0.85);
    transition: 0.2s;
    text-decoration: none;
}

.video-hero-btn:hover {
    background: #dafcfe;
    transform: scale(1.02);
}

.video-hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

.video-hero-stats>div {
    text-align: center;
    min-width: 120px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
}

.stat-value {
    font-family: 'Pretendard', 'Montserrat', monospace;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
}

.text-accent {
    color: #5ce1e6;
}

@media (max-width: 600px) {
    .video-hero-content h1 {
        font-size: 1.3rem;
    }

    .video-hero-content {
        padding: 140px 8px 40px 8px;
    }

    .video-hero-stats {
        gap: 16px;
    }
}

/* Pretendard 웹폰트 */
@font-face {
    font-family: 'Pretendard';
    src: url('/Pretendard-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 컬러 변수 및 다크/라이트 모드 */
:root {
    --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', ui-sans-serif, system-ui, sans-serif;
    --background: 252 253 254;
    --foreground: 13 27 30;
    --muted: 96 116 118;
    --muted-foreground: 96 116 118;
    --accent: 92 225 230;
    --accent-strong: 92 225 230;
    --accent-foreground: 4 24 27;
    --surface: 255 255 255;
    --surface-elevated: 248 252 253;
    --border: 13 27 30;
    --ring: 92 225 230;
}

:root.light {
    color-scheme: light;
    --background: 252 253 254;
    --foreground: 13 27 30;
}

:root.dark {
    color-scheme: dark;
    --background: 9 13 15;
    --foreground: 232 240 240;
}

html,
body {
    height: 100%;
    background-color: rgb(var(--background));
    color: rgb(var(--foreground));
    font-family: var(--font-sans);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: inherit;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
}

* {
    border-color: rgb(var(--border) / 0.12);
}

::selection {
    background-color: rgb(var(--accent) / 0.45);
    color: rgb(var(--accent-foreground));
}

/* 기타 유틸리티 */
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-sans {
    font-family: var(--font-sans);
}


.min-h-screen {
    min-height: 100vh;
}

.text-foreground {
    color: rgb(var(--foreground));
}

.bg-background {
    background-color: rgb(var(--background));
}

/* MAIN STICKY HEADER (사진 예시 기반) */
.main-sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: inset 0 -1px 0 0 rgb(255 255 255 / 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background-color 0.5s, border-color 0.5s, color 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
}

.main-header-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    padding: 0 24px;
}

.main-header-logo-link {
    display: flex;
    min-width: 0;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
}

.main-header-logo-flex {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.main-header-logo-img {
    height: 62px;
    width: auto;
    object-fit: contain;
    margin-right: 2px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.62)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.38));
}

.main-header-logo-text {
    display: inline-flex;
    min-width: 0;
    align-items: baseline;
    gap: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
    font-family: 'Montserrat', 'Noto Sans KR', Arial, sans-serif;
}

.main-header-logo-variable {
    color: #fff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.62), 0 0 10px rgba(92, 225, 230, 0.42);
    font-weight: 700;
}

.main-header-logo-strategy {
    color: #5ce1e6;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.62), 0 4px 10px rgba(0, 0, 0, 0.38);
    font-weight: 700;
}

.main-header-nav {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.main-header-nav a {
    border-radius: 9999px;
    padding: 8px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: background 0.5s, color 0.5s;
}

.main-header-nav a.not-main {
    border-radius: 9999px;
    padding: 8px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(86 115 111 / var(--tw-text-opacity, 1));
    text-decoration: none;
    transition: background 0.5s, color 0.5s;
}



.main-header-nav a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.main-header-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-header-btn {
    border-radius: 9999px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.5s, color 0.5s, box-shadow 0.5s, transform 0.5s;
}

.main-header-login {
    color: rgba(255, 255, 255, 0.72);
    background: none;
}

.main-header-login:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.main-header-signup {
    background: #fff;
    color: #0c1418;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.main-header-signup:hover {
    background: #dafcfe;
}

.main-header-mobile {
    display: none;
}

.main-header-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.5s;
}

.main-header-mobile-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 1024px) {

    .main-header-nav,
    .main-header-btns {
        display: none;
    }

    .main-header-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* AI STRATEGY ENGINES BAR */
.ai-engines-section {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding-bottom: 16px;
}

.ai-engines-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 0 24px;
}

.ai-engines-bar .logo-img {
    height: 18px;
    margin-right: 6px;
}

.ai-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: #222c36;
}

.ai-nav ul li {
    color: #222c36;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.ai-nav ul li:hover {
    color: #00e6d8;
}

.ai-bar-btn {
    background: #00e6d8;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 6px 22px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.ai-bar-btn:hover {
    background: #00bfae;
}

.ai-engines-logos {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-top: 18px;
}

.ai-engines-logos span {
    display: block;
    color: #b2fefa;
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.engines-logo-list {
    display: flex;
    justify-content: center;
    gap: 36px;
    align-items: center;
}

.engines-logo-list img {
    height: 32px;
    filter: grayscale(0.2) brightness(1.1);
    opacity: 0.9;
    transition: filter 0.2s, opacity 0.2s;
}

.engines-logo-list img:hover {
    filter: none;
    opacity: 1;
}

/* SECTION LABEL */
.section-label {
    max-width: 1200px;
    margin: 40px auto 18px auto;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222c36;
    letter-spacing: -0.5px;
    padding-left: 24px;
}

/* STAKING ASSETS */
.staking-assets-section {
    background: #fcfdfe;
    padding-bottom: 24px;
}

.staking-assets-list {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.staking-card {
    background: linear-gradient(135deg, #e0f7fa 60%, #b2fefa 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 24px 18px;
    min-width: 180px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
    margin-bottom: 8px;
}

.staking-coin {
    font-weight: 700;
    color: #00bfae;
    margin-bottom: 8px;
}

.staking-apy {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222c36;
    margin-bottom: 8px;
}

.staking-detail {
    font-size: 0.98rem;
    color: #222c36;
    margin-bottom: 8px;
}

.staking-network {
    font-size: 0.92rem;
    color: #888;
}

/* TOP BOTS */
.top-bots-section {
    background: #f7fefe;
    padding-bottom: 24px;
}

.top-bots-list {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bot-card {
    background: linear-gradient(135deg, #e0f7fa 60%, #b2fefa 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 18px 14px;
    min-width: 160px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
    margin-bottom: 8px;
}

.bot-title {
    font-weight: 700;
    color: #00bfae;
    margin-bottom: 8px;
}

.bot-profit {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222c36;
    margin-bottom: 8px;
}

.bot-chart img {
    width: 100px;
    height: 32px;
    object-fit: contain;
}

/* MAIN SERVICES */
.main-services-section {
    background: #fff;
    padding-bottom: 24px;
}

.main-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-card {
    background: #f7fefe;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 18px 20px;
    min-width: 160px;
    flex: 1 1 180px;
    font-size: 1rem;
    color: #222c36;
    font-weight: 500;
}

/* HOWTO */
.howto-section {
    background: #fff;
    padding-bottom: 24px;
}

.howto-steps {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.howto-step {
    background: #f7fefe;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 18px 20px;
    min-width: 160px;
    flex: 1 1 180px;
    font-size: 1rem;
    color: #222c36;
    font-weight: 500;
    text-align: center;
}

/* DATA DRIVEN */
.datadriven-section {
    background: #fff;
    padding-bottom: 24px;
}

.datadriven-list {
    display: flex;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.datadriven-card {
    background: #f7fefe;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 18px 20px;
    min-width: 160px;
    flex: 1 1 180px;
    font-size: 1rem;
    color: #222c36;
    font-weight: 500;
    text-align: center;
}

/* FAQ */
.faq-section {
    background: #fff;
    padding-bottom: 24px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-item {
    background: #f7fefe;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 10px;
    padding: 14px 18px;
    cursor: pointer;
}

.faq-q {
    font-weight: 700;
    color: #222c36;
    font-size: 1rem;
}

.faq-a {
    font-size: 0.97rem;
    color: #00bfae;
    margin-top: 6px;
    display: none;
}

.faq-item.active .faq-a {
    display: block;
}

/* CTA BANNER */
.cta-section {
    background: #f7fefe;
    padding: 32px 0 32px 0;
}

.cta-banner {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(90deg, #b2fefa 0%, #e0f7fa 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cta-banner span {
    font-size: 1.1rem;
    color: #222c36;
    font-weight: 700;
}

.cta-btn,
.cta-btn-sub {
    background: #222c36;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-btn-sub {
    background: #fff;
    color: #222c36;
    border: 1px solid #b2fefa;
    margin-left: 8px;
}

.cta-btn:hover {
    background: #00e6d8;
}

.cta-btn-sub:hover {
    background: #00e6d8;
    color: #fff;
}

@media (max-width: 900px) {

    .staking-assets-list,
    .top-bots-list,
    .main-services-list,
    .howto-steps,
    .datadriven-list {
        flex-direction: column;
        gap: 16px;
    }

    .engines-logo-list {
        gap: 16px;
    }

    .cta-banner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

body {
    margin: 0;
    font-family: 'Noto Sans KR', 'Montserrat', Arial, sans-serif;
    background: #f7f8f8;
    color: #222;
    min-height: 100vh;
}


/* HEADER */
.header-bar {

    background: #222c36;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 24px;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    height: 18px;
    margin-right: 6px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #b2fefa;
    margin-right: 18px;
    letter-spacing: 0.5px;
}

.header-left nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-left nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.2s;
}

.header-left nav a:hover {
    color: #00e6d8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn,
.signup-btn {
    padding: 2px 14px;
    border: none;
    border-radius: 12px;
    font-size: 0.92rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
    height: 28px;
}

.login-btn {
    background: #fff;
    color: #222c36;
}

.signup-btn {
    background: #e6e6e6;
    color: #222c36;
}

.signup-btn:hover {
    background: #00e6d8;
    color: #fff;
}

header {
    background: #222c36;
    color: #fff;
    padding: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #00e6d8;
}

.header-btns button {
    margin-left: 12px;
    padding: 6px 18px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}

.login-btn {
    background: #fff;
    color: #222c36;
}

.signup-btn {
    background: #00e6d8;
    color: #fff;
}

.signup-btn:hover {
    background: #00bfae;
}


/* HERO */
.hero-bg {
    position: relative;
    min-height: 420px;
    height: 420px;
    background: url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 44, 54, 0.78);
    z-index: 1;
}

.hero-center {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 700px;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-label {
    font-size: 0.92rem;
    color: #b2fefa;
    margin-bottom: 18px;
    letter-spacing: 1px;
    background: rgba(34, 44, 54, 0.7);
    display: inline-block;
    padding: 2px 18px;
    border-radius: 16px;
    margin-top: 12px;
}

.hero-center h1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.35;
    letter-spacing: -1px;
}

.highlight {
    color: #00e6d8;
}

.hero-desc {
    font-size: 1.05rem;
    margin-bottom: 28px;
    color: #e0f7fa;
    font-weight: 400;
}

.main-btn {
    background: #fff;
    color: #222c36;
    border: none;
    border-radius: 18px;
    padding: 8px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 36px;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.main-btn:hover {
    background: #00e6d8;
    color: #fff;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 32px;
}

.stat-block {
    text-align: center;
}

.stat-label {
    font-size: 0.93rem;
    color: #b2fefa;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}


footer {
    background: #222c36;
    color: #fff;
    margin-top: 0;

}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 0 24px;
    box-sizing: border-box;
}

.footer-left {
    min-width: 220px;
}

.footer-logo-img {
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #b2fefa;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 0.85rem;
    color: #b2fefa;
    margin: 12px 0 0 0;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 56px;
}

.footer-links div ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.footer-links div ul li {
    font-size: 0.93rem;
    margin-bottom: 6px;
    color: #b2fefa;
}

.footer-links strong {
    font-size: 1rem;
    color: #fff;
}

.footer-bottom {
    text-align: left;
    padding: 18px 24px 8px 24px;
    font-size: 0.82rem;
    color: #b2fefa;
    background: #1a222b;
    margin-top: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.footer-bottom-desc {
    color: #b2fefa;
    font-size: 0.75rem;
    margin-top: 6px;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .stats-row {
        flex-direction: column;
        gap: 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-main {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .mb-grid-mobile {
        display: flex;
        flex-direction: column;
    }

    .mb-grid-mobile-it>span {
        display:flex;
        width: 32px;
        height: 32px;

    }

    .m-none {
        display:none;
    }
}

@media (max-width: 600px) {
    .hero-center h1 {
        font-size: 1.1rem;
    }

    .hero-center {
        max-width: 98vw;
        padding: 0 4vw;
    }

    .header-bar,
    .footer-main,
    .footer-bottom {
        padding-left: 8px;
        padding-right: 8px;
    }
}