/* Font Face */
@font-face {
    font-family: 'N27';
    src: url('fonts/n27-regular-webfont.woff2') format('woff2'),
    url('fonts/n27-regular-webfont.woff') format('woff'),
    url('fonts/n27-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --black: #333333;
    --dark-gray: #616161;
    --light-gray: #F5F5F5;
    --light-gray-2: #C7C5C5;
    --red: #FF6D5C;
    --blue: #65BFCD;
    --light-red: #FFC2BB;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.2;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

h1 {
    font-weight: 300;
    font-size: 50px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 300;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    background: var(--white);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 48px 0;
}

.logo {
    height: 34px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 116px;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
}

.lang-selector span {
    font-size: 20px;
    font-weight: 400;
}

.lang-selector img {
    width: 24px;
    height: 24px;
}

/* Mobile-only button hidden on desktop */
.mobile-only-btn {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 0 48px 48px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    min-height: 627px;
}

.hero-left {
    flex: 0 0 679px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-top: 28px;
}

.hero-right {
    position: relative;
    flex: 0 0 480px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -100vw;
    bottom: 0;
    background: var(--light-gray);
    z-index: 0;
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 542px;
    height: 627px;
    object-fit: contain;
}


.hero-icons img {
    max-width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero h1 {
    max-width: 679px;
}

.hero-description {
    max-width: 534px;
    font-size: 18px;
    color: var(--dark-gray);
}

.btn-primary {
    width: max-content;
    padding: 16px 40px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 20px 20px 20px 0;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary.black {
    background: var(--black);
}

/* Stats Section */
.stats {
    padding: 0 48px 48px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 133px;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 48px 64px;
    max-width: 1184px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    max-width: 256px;
}

.stat-number {
    font-family: 'N27', 'Ubuntu', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--black);
}

.stat-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--black);
}

/* Features Bento */
.features {
    padding: 96px 48px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 48px;
}

.section-description {
    font-size: 20px;
    color: var(--dark-gray);
    max-width: 592px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 288px 1fr;
    grid-template-rows: 300px 280px 175px;
    gap: 16px;
}

.bento-item {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 26px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}

.bento-managers {
    grid-column: 1 / 4;
    grid-row: 1;
    background: url('assets/bento-managers-bg-38c9ae.png') center/cover no-repeat, linear-gradient(160deg, #1a1a1a 0%, #333333 100%);
    padding: 48px 56px;
}

.bento-entry {
    grid-column: 2;
    grid-row: 2;
    background: var(--red);
}

.bento-access {
    grid-column: 3;
    grid-row: 2;
    background: url('assets/bento-access-bg-d4d9ce.png') center/cover no-repeat, rgba(0, 0, 0, 0.1);
}

.bento-stats {
    grid-column: 1;
    grid-row: 2;
    background: var(--blue);
}

.bento-ai {
    grid-column: 1 / 4;
    grid-row: 3;
    background: var(--black);
    padding: 48px 56px;
}

.bento-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    justify-content: space-between;
}

.bento-content h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.bento-content p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.entry-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.entry-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.entry-label {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
}

.entry-number {
    font-family: 'N27', 'Ubuntu', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}

.coin-icon {
    width: 65px;
    height: 58px;
    flex-shrink: 0;
}

.bento-content-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    height: 100%;
}

.bento-content-horizontal h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    flex-shrink: 0;
}

.bento-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 650px;
}

.bento-right p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.bento-divider {
    width: 62px;
    height: 3px;
    background: var(--white);
}

/* Strategies Section */
.strategies {
    padding: 64px 48px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 48px;
}

.section-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-title-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title-block h2 {
    max-width: 455px;
}

.chip-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.chip {
    padding: 12px 16px;
    border: 0.5px solid var(--black);
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.chip-active {
    background: var(--black);
    color: var(--white);
}

.chip:hover {
    opacity: 0.8;
}

.link-button {
    padding: 16px 16px 16px 0;
    border: none;
    border-bottom: 1px solid var(--black);
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.link-button:hover {
    opacity: 0.7;
}

.strategy-cards {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    gap: 14px;
}

.strategy-card {
    position: relative;
    width: 385px;
    height: 450px;
    border-radius: 24px 24px 24px 16px;
    border: 1px solid var(--white);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    padding: 24px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.strategy-card-1 {
    background: url('assets/strategy-1-bg-1f27cf.png') center/cover no-repeat, linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.strategy-card-2 {
    background: url('assets/strategy-2-bg-34b129.png') center/cover no-repeat, linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.strategy-card-3 {
    background: url('assets/strategy-3-bg-5a7072.png') center/cover no-repeat, linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;

}

.card-badge {
    background: rgba(51, 51, 51, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-top-right-radius: 12px;
    color: var(--white);
    font-family: 'N27', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
    position: absolute;
    top: -35px;
    left: 0;
}

.card-content {
    background: rgba(97, 97, 97, 0.6);
    backdrop-filter: blur(16px);
    box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.16);
    border-radius: 0 24px 24px 16px;
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.card-title {
    font-family: 'N27', sans-serif;
    font-size: 26px;
    line-height: 1.1;
    color: var(--white);
    max-width: 240px;
    text-transform: unset;
    white-space: nowrap;
}

.card-divider {
    width: 100%;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.3);
}

.tags-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: var(--white);
}

.tag::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: none;
    border-top: 1px solid var(--white);
    border-left: 1px solid var(--white);
    border-radius: 20px 0 24px 0;
    background: transparent;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0 -20px -1px;
    padding: 12px 20px;
    width: max-content;
    margin-left: auto;
}

.card-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.card-button span {
    flex: 1;
}

.card-button img {
    width: 24px;
    height: 24px;
}

/* How It Works */
.how-it-works {
    padding: 48px 48px 72px;
}

.steps-grid {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.step-card {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 700px;
    width: 100%;
}

.step-card:nth-child(2) {
    height: 600px;
}

.step-number {
    font-family: 'N27', sans-serif;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.04em;
    padding: 0 16px;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid var(--light-gray);
    padding: 0 16px;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
}

.step-content p {
    font-size: 16px;
    color: var(--dark-gray);
}

/* position: absolute; */
/* bottom: 0; */
/* right: 20px; */
/* width: auto; */
/* height: 650px; */
/* object-fit: cover; */
/* object-position: top center; */

/* Coming Soon */
.coming-soon {
    padding: 64px 48px;
}

.coming-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.coming-cards::-webkit-scrollbar {
    height: 8px;
}

.coming-cards::-webkit-scrollbar-track {
    background: transparent;
}

.coming-cards::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.coming-cards::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.coming-card {
    position: relative;
    width: 325px;
    min-width: 325px;
    height: 380px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    flex-shrink: 0;
}

.coming-card-1 {
    background: url('assets/coming-1-bg-4a3aac.png') center/cover no-repeat, linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.coming-card-2 {
    background: url('assets/coming-2-bg.png') center/cover no-repeat, linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.coming-card-3 {
    background: url('assets/coming-3-bg.png') center/cover no-repeat, linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.coming-card-4 {
    background: url('assets/coming-4-bg-4672d1.png') center/cover no-repeat, linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.coming-badge {
    background: rgba(51, 51, 51, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 24px 8px;
    border-radius: 16px 16px 0 0;
    color: var(--light-gray);
    font-size: 12px;
    text-align: center;
    width: max-content;
}

.coming-content {
    background: rgba(97, 97, 97, 0.6);
    backdrop-filter: blur(16px);
    box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.16);
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 0 24px;
}

.coming-header h3 {
    font-family: 'N27', sans-serif;
    font-size: 26px;
    color: var(--white);
    max-width: 194px;
}

.coming-logo {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.coming-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-content p {
    padding: 0 24px;
    font-size: 14px;
    color: var(--light-gray-2);
}

.coming-content .card-button {
    border-top: 1px solid var(--white);
    border-right: none;
    border-bottom: none;
    border-left: 1px solid var(--white);
    border-radius: 24px 0 24px 0;
    font-size: 16px;
    width: 240px;
    margin-right: 0;
}

/* Why Choose Us */
.why-us {
    padding: 64px 48px 96px;
}

.why-us .section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.why-us .section-header h2 {
    text-align: left;
}

.why-us .section-header p {
    text-align: right;
}


.text-black {
    color: var(--black);
}

.text-blue {
    color: var(--blue);
}

.text-red {
    color: var(--red);
}

.why-grid {
    position: relative;
    height: 505px;
}

.why-card {
    position: absolute;
    border-radius: 24px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    justify-content: space-between;
}

.why-card-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-card-1 {
    left: 0;
    top: 0;
    width: 280px;
    height: 400px;
    background: var(--white);
}

.why-card-2 {
    left: 301px;
    top: 105px;
    width: 280px;
    height: 400px;
    background: url('assets/why-2-bg.png') center/cover no-repeat, linear-gradient(135deg, #2c4e72 0%, #1a2a3a 100%);
    flex-direction: column-reverse;
}

.why-card-3 {
    left: 602px;
    top: 0;
    width: 280px;
    height: 400px;
    background: var(--white);
}

.why-card-4 {
    left: 903px;
    top: 105px;
    width: 280px;
    height: 400px;
    background: url('assets/why-4-bg-4533a6.png') center/cover no-repeat, linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column-reverse;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 0;
    border-radius: 24px;
}

.why-card-2 .why-number,
.why-card-2 h3,
.why-card-2 p {
    position: relative;
    z-index: 1;
}

.why-card-4 .why-number,
.why-card-4 h3,
.why-card-4 p {
    position: relative;
    z-index: 1;
}

.why-number {
    font-family: 'N27', sans-serif;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.why-card-1 .why-number,
.why-card-3 .why-number {
    color: var(--black);
}

.why-card-2 .why-number,
.why-card-4 .why-number {
    color: var(--white);
}

.why-card h3 {
    font-family: 'N27', sans-serif;
    font-size: 26px;
    line-height: 1.1;
    text-transform: none;
}

.why-card-1 h3,
.why-card-3 h3 {
    color: var(--black);
}

.why-card-2 h3,
.why-card-4 h3 {
    color: var(--white);
}

.why-card p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.04em;
}

.why-card-1 p,
.why-card-3 p {
    color: var(--dark-gray);
}

.why-card-2 p,
.why-card-4 p {
    color: var(--white);
}

/* VIP Offers */
.vip-offers {
    padding: 48px 48px 64px;
}

.vip-cards {
    display: flex;
    justify-content: space-between;
    gap: 14.5px;
}

.vip-card {
    position: relative;
    /* width: 385px; */
    width: 100%;
    height: 350px;
    border-radius: 24px 24px 24px 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.vip-navigation {
    background: url('assets/vip-navigation-bg-30a804.png') center/cover no-repeat, linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vip-wealth {
    background: url('assets/vip-wealth-bg-1e5af1.png') center/cover no-repeat, linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.vip-black {
    background: url('assets/vip-black-bg-1cf7d8.png') center/cover no-repeat, linear-gradient(135deg, #434343 0%, #000000 100%);
}

.vip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: rgba(97, 97, 97, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.16);
    z-index: 0;
}

.vip-card h3 {
    font-family: 'N27', sans-serif;
    font-size: 50px;
    line-height: 1;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    text-transform: unset;
}

.vip-card p {
    font-size: 16px;
    color: var(--light-gray);
    position: relative;
    z-index: 1;
}

/* Partners */
.partners {
    padding: 64px 48px 72px;
}

.partners-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    padding: 48px;
}

.partners-logos {
    max-width: 100%;
    height: auto;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 0;
}

.footer-main {
    position: relative;
    background: var(--light-gray);
    border-radius: 48px;
    padding: 48px;
    overflow: hidden;
}

.footer-columns {
    display: flex;
    padding-bottom: 24px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 8px;
    white-space: nowrap;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column ul li a {
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.footer-column ul li a:hover {
    opacity: 0.7;
}

.footer-logo {
    height: 70px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-links a {
    font-size: 12px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links .divider {
    color: var(--dark-gray);
    font-size: 12px;
    margin: 0 4px;
}

.footer-bg-container {
    position: relative;
    width: 100%;
    height: 120px;
    pointer-events: none;
}

.footer-bg {
    position: absolute;
    width: 100%;
}

.footer-bottom {
    padding: 24px 48px 32px;
    text-align: left;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }

    .hero {
        padding: 0 0 32px;
    }

    .nav-links {
        gap: 60px;
    }

    .stats {
        padding: 0 0 32px;
    }

    .stats-grid {
        gap: 60px;
        padding: 48px 32px;
    }

    .features {
        padding: 64px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        max-width: 100%;
        overflow: hidden;
    }

    .bento-item {
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding: 28px 24px;
    }

    .bento-item * {
        max-width: 100%;
    }

    .bento-managers .bento-content-horizontal {
        flex-direction: column;
    }

    .bento-managers .bento-content-horizontal .entry-number {
        font-size: 24px;
    }

    .bento-managers,
    .bento-ai {
        padding: 40px 32px;
    }

    .strategies {
        padding: 48px 0;
    }

    .how-it-works {
        padding: 48px 0;
    }

    .coming-soon {
        padding: 48px 0;
    }

    .why-us {
        padding: 48px 0;
    }

    .why-us .section-header h2 {
        align-self: flex-start;
    }

    .vip-offers {
        padding: 48px 0;
    }

    .partners {
        padding: 48px 0;
    }

    .partners-content {
        padding: 32px;
    }

    .footer-main {
        padding: 32px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .bento-managers,
    .bento-stats,
    .bento-entry,
    .bento-access {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-ai {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .bento-content-horizontal {
        gap: 32px;
    }

    .why-grid {
        display: flex;
        flex-wrap: wrap;
        height: auto;
        gap: 24px;
        justify-content: center;
    }

    .why-card {
        position: relative;
        left: auto !important;
        top: auto !important;
    }

    .footer-columns {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    h3 {
        font-size: 18px;
        line-height: 1.2;
    }

    p {
        font-size: 14px;
        line-height: 1.4;
    }

    .section-description {
        font-size: 13px;
    }

    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 0 0 24px;
    }

    .navbar-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 24px 0;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }

    /* Hide menu by default */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 24px;
        padding: 80px 32px 32px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    /* Show menu when checkbox is checked */
    .mobile-menu-toggle:checked ~ .nav-links {
        right: 0;
    }

    /* Animate hamburger to X */
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links a {
        font-size: 16px;
    }

    .lang-selector {
        width: 100%;
    }

    .hero-content {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        flex: 1 1 auto;
        width: 100%;
        padding-top: 0;
    }

    .hero-right {
        display: flex;
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        height: 380px;
        margin-top: 24px;
    }

    .hero-right::before {
        border-radius: 24px;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 24px;
    }

    .btn-primary {
        width: 100%;
    }

    .stats {
        padding: 0 0 24px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 16px;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .features {
        padding: 48px 0;
    }

    .strategies {
        padding: 48px 0;
    }

    .how-it-works {
        padding: 48px 0;
    }

    .coming-soon {
        padding: 48px 0;
    }

    .coming-soon .section-left {
        align-items: flex-end;
    }

    .coming-soon .section-left .section-description {
        text-align: right;
    }

    .why-us {
        padding: 48px 0;
    }

    .vip-offers {
        padding: 48px 0;
    }

    .partners {
        padding: 48px 0;
    }

    .partners-content {
        padding: 24px;
        gap: 0;
    }

    .partners-content .section-description {
        font-size: 11px;
    }

    .footer-main {
        padding: 24px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .stat-card {
        width: 100%;
        background: #F3F3F4;
        border-top-left-radius: 0;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 0;
        padding: 24px;
        max-width: 215px;
        margin: 0 auto;
        align-items: center;
        gap: 2px;

    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 11px;
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
        overflow: hidden;
    }

    .bento-item {
        max-width: 100%;
        box-sizing: border-box;
        padding: 24px 20px;
        overflow: hidden;
    }

    .bento-item * {
        max-width: 100%;
    }

    .bento-item h3 {
        font-size: 16px;
    }

    .bento-item p {
        font-size: 13px;
        line-height: 1.4;
    }

    .entry-label {
        font-size: 16px;
    }

    .entry-number {
        font-size: 28px;
    }

    .bento-managers,
    .bento-stats,
    .bento-entry,
    .bento-access {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-ai {
        grid-column: 1;
        grid-row: auto;
        padding: 32px 24px;
    }

    .bento-managers {
        padding: 32px 24px;
    }

    .bento-content-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .bento-right {
        max-width: 100%;
    }

    .why-us .section-header {
        flex-direction: column;
    }

    .why-us .section-header p {
        text-align: left;
        align-self: flex-start;
        max-width: 100%;
        white-space: nowrap;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-left {
        flex-direction: column;
    }

    .strategy-cards {
        display: flex;
        flex-direction: row;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
        scrollbar-width: thin;
        justify-content: flex-start;
    }

    .strategy-cards::-webkit-scrollbar {
        height: 4px;
    }

    .strategy-cards::-webkit-scrollbar-thumb {
        background: var(--light-gray-2);
        border-radius: 2px;
    }

    .strategy-card {
        min-width: 300px;
        max-width: 300px;
        flex-shrink: 0;
        height: 400px;
    }

    .strategy-card h3 {
        font-size: 18px;
    }

    .card-percent {
        font-size: 20px;
    }

    .card-description {
        font-size: 13px;
    }

    .card-button {
        font-size: 14px;
        padding: 12px 20px;
    }

    .card-button span {
        display: none;
    }

    .card-button img {
        transform: rotate(-45deg);
        width: 50px;
        height: 50px;
    }

    /* Mobile button visibility */
    .mobile-only-btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 24px auto 0;
    }

    /* Hide all link buttons on mobile */
    .link-button {
        display: none !important;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-card {
        flex: unset;
        min-height: 380px;
        height: 380px;
    }

    .step-card:nth-child(2) {
        height: 380px;
    }


    .step-number {
        font-size: 64px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

    .step-phone {
        height: 360px;
        bottom: -10px;
    }

    .coming-content .card-button {
        width: max-content;
    }

    .coming-cards {
        overflow-x: auto;
        flex-direction: row;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
    }

    .coming-card {
        width: 300px;
        min-width: 300px;
        flex-shrink: 0;
    }

    .coming-card h3 {
        font-size: 18px;
    }

    .coming-card p {
        font-size: 13px;
    }

    .coming-badge {
        font-size: 11px;
    }

    .whyUsSwiper {
        overflow: hidden;
    }

    .why-grid {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap !important;
        gap: 16px;
        height: auto !important;
    }

    .whyUsSwiper .swiper-slide {
        height: auto;
        flex-shrink: 0 !important;
    }

    .why-card {
        width: 100% !important;
        min-width: unset !important;
        max-width: unset !important;
        position: relative !important;
        top: unset !important;
        left: unset !important;
    }

    .why-number {
        font-size: 32px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 13px;
    }

    .vip-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .vip-card {
        width: 100%;
        max-width: 385px;
        min-height: 400px;
        position: relative;
    }

    /* Add arrow to mobile VIP cards */
    .vip-card::after {
        content: '';
        position: absolute;
        top: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
        background: url('assets/arrow-right.svg') no-repeat center;
        background-size: contain;
        transform: rotate(-45deg);
    }

    .vip-title {
        font-size: 40px;
    }

    .vip-card h3 {
        font-size: 40px;
    }

    .vip-card p {
        font-size: 13px;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 0;
    }

    .partner-item {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        min-height: 100px;
    }

    .partner-item img {
        max-width: 100%;
        height: auto;
    }

    .partners-logos {
        display: none;
    }

    .footer-columns {
        /* display: grid; */
        /* grid-template-columns: 1fr 1fr; */
        /* gap: 32px 24px; */
    }

    .footer-column {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .footer-column-logo {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 8px;
        width: 100px;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-logo {
        width: auto;
        height: 40px;
        margin: 0;
    }

    /* Social icons in footer */
    .footer-social {
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
    }

    .footer-social a {
        display: flex;
    }


    .footer-links {
        flex-wrap: wrap;
    }
}

/*Swiper styles*/

.hero-pagination {
    position: relative;
    bottom: -47px !important;
    left: -12px !important;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-pagination {
        top: 0 !important;
        display: flex;
        justify-content: center;
    }
}

.hero .container .swiper {
    overflow: visible;
}

.hero-pagination .swiper-pagination-bullet {
    background: #F5F5F5;
    opacity: 1;
    height: 12px;
    border-radius: 5px;
    width: 12px;
    margin: 0 12px !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #616161;
    opacity: 1;
    width: 24px;
}

.coming-pagination {
    display: flex;
    justify-content: right;
    gap: 8px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .coming-pagination {
        justify-content: left;
        margin-top: 0px;
    }

    .swiper {
        display: flex !important;
        gap: 16px;
        flex-direction: column-reverse;
    }

    .comingSoonSwiper {
        flex-direction: column-reverse;
    }
}

.coming-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #F5F5F5;
    opacity: 1;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coming-pagination .swiper-pagination-bullet-active {
    background: #616161;
    opacity: 1;
    width: 24px;
}

.strategies-pagination {
    display: flex;
    justify-content: left;
    gap: 8px;
}

.strategies-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #F5F5F5;
    opacity: 1;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.strategies-pagination .swiper-pagination-bullet-active {
    background: #616161;
    opacity: 1;
    width: 24px;
}

/* Why Us Swiper - стили для десктопа */
.whyUsSwiper {
    overflow: visible;
}

/* На больших экранах swiper-slide не должны мешать абсолютному позиционированию */
.whyUsSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Tablet breakpoint - меняем на static */
@media (max-width: 1200px) {
    .whyUsSwiper .swiper-slide {
        position: static;
        width: auto;
        height: auto;
    }
}

.why-pagination {
    display: none;
}

@media (max-width: 768px) {
    .why-pagination {
        display: flex;
        justify-content: left;
        gap: 8px;
    }
}

.why-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #F5F5F5;
    opacity: 1;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-pagination .swiper-pagination-bullet-active {
    background: #616161;
    opacity: 1;
    width: 24px;
}

.swiper-wrapper .swiper-slide {
    flex-shrink: 1;
}

.heroSwiper .swiper-wrapper .swiper-slide {
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .why-us .container .swiper {
        overflow: visible;
    }

    .why-us .container .swiper .swiper-wrapper {
        height: 505px;
    }
}

@media (max-width: 768px) {
    .why-grid {
        justify-content: left
    }
}

.heroSwiper .swiper-wrapper > .swiper-slide:nth-child(2){
    position: relative;
}

.heroSwiper .swiper-wrapper > .swiper-slide:nth-child(2)::before{
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: url("assets/secondslider.png") center/cover no-repeat;
    z-index: 0;
}

.heroSwiper .swiper-wrapper > .swiper-slide:nth-child(2) > *{
    position: relative;
    z-index: 1;
}

.heroSwiper .swiper-wrapper > .swiper-slide:nth-child(4){
    position: relative;
}

.heroSwiper .swiper-wrapper > .swiper-slide:nth-child(4)::before{
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: url("assets/fourthslide.png") center/cover no-repeat;
    z-index: 0;
}

.heroSwiper .swiper-wrapper > .swiper-slide:nth-child(4) > *{
    position: relative;
    z-index: 1;
}
