/* ===== FONTS ===== */
@font-face {
    font-family: 'Onder';
    src: url('fonts/ONDER-REGULAR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bounded';
    src: url('fonts/Bounded-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent: #ffffff;
    --accent-hover: rgba(255, 255, 255, 0.9);
    --blur: 20px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Bounded', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100vw;
    position: relative;
}

body > * {
    max-width: 100vw;
    overflow: hidden;
}

#pricing {
    scroll-margin-top: -100px;
}

body {
    font-family: 'Bounded', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Onder', sans-serif;
    font-size: 8px;
    letter-spacing: 2px;
    padding: 4px 12px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 999px;
}

.header-logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    font-family: 'Bounded', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-login {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-login:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-register {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-register:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-tariffs {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.btn-tariffs:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 64px 64px;
    gap: 64px;
    position: relative;
    overflow: visible;
    background: url('img/fon.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(10, 10, 10, 0.9) 52%);
    z-index: 1;
    pointer-events: none;
}

.hero-angel {
    position: absolute;
    left: -10%;
    top: 70%;
    transform: translateY(-50%);
    height: 280%;
    width: auto;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-title {
    font-family: 'Onder', sans-serif;
    font-size: 48px;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 400;
    text-align: center;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 16px;
    color: var(--text-primary);
    margin-top: 64px;
    margin-bottom: 24px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.hero-actions .btn {
    width: 100%;
    max-width: 280px;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--bg-primary);
    border: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-preview {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    overflow: visible;
    perspective: 1200px;
}

.card-preview {
    width: 380px;
    min-height: 520px;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite, glow3d 5s ease-in-out infinite;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

@keyframes float3d {
    0%, 100% {
        transform: rotateY(-12deg) rotateX(6deg) translateY(0);
    }
    50% {
        transform: rotateY(-12deg) rotateX(6deg) translateY(-12px);
    }
}

@keyframes glow3d {
    0%, 100% {
        box-shadow: 
            20px 20px 60px rgba(0, 0, 0, 0.5),
            -5px -5px 20px rgba(255, 255, 255, 0.02),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 40px rgba(255, 255, 255, 0.03),
            0 0 80px rgba(255, 255, 255, 0.01);
    }
    50% {
        box-shadow: 
            20px 25px 70px rgba(0, 0, 0, 0.4),
            -5px -5px 25px rgba(255, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 60px rgba(255, 255, 255, 0.08),
            0 0 100px rgba(255, 255, 255, 0.04);
    }
}

.card-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.card-preview::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.08));
    z-index: -1;
    pointer-events: none;
}

.card-links .color-link {
    flex: 1;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-links .color-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.card-links .color-link:hover::before {
    left: 100%;
}

.card-links .color-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.card-links .color-row {
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.card-links .color-row:nth-child(1) { animation-delay: 0.2s; }
.card-links .color-row:nth-child(2) { animation-delay: 0.35s; }
.card-links .color-row:nth-child(3) { animation-delay: 0.5s; }
.card-links .color-row:nth-child(4) { animation-delay: 0.65s; }

@keyframes slideIn {
    to {
        opacity: 1;
    }
}

.card-unique {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
}

.card-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-handle {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.card-role {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.card-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.card-links .color-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-links .color-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-links .color-dot.blue { background: rgba(59, 130, 246, 0.8); }
.card-links .color-dot.red { background: rgba(239, 68, 68, 0.8); }
.card-links .color-dot.green { background: rgba(34, 197, 94, 0.8); }
.card-links .color-dot.purple { background: rgba(168, 85, 247, 0.8); }

.card-links .color-link {
    flex: 1;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card-links .color-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ===== MARQUEE ===== */
.marquee-strip {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    background: var(--text-primary);
    padding: 14px 0;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Onder', sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--bg-primary);
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== SPLIT SECTION ===== */
.split-section {
    position: relative;
    overflow: visible;
}

.split-bg-image {
    position: absolute;
    top: 0;
    left: 20%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.split-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #A6A6A6;
    z-index: 0;
}

.split-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #0a0a0a;
    z-index: 0;
}

.split-content {
    position: relative;
    z-index: 2;
    padding-top: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 64px;
    text-align: center;
}

.section-title {
    font-family: 'Onder', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 64px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 220px;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Onder', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.1);
}

.step-line {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.step-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.step-text br {
    display: block;
    content: "";
    margin-bottom: 4px;
}

/* ===== SHOWCASE ===== */
.showcase {
    padding: 80px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.showcase-cards {
    display: flex;
    align-items: center;
    gap: 24px;
}

.showcase-card {
    width: 280px;
    min-height: 380px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0a0a0a;
}

.user-card-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
}

.user-card-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #0a0a0a;
}

.user-card-handle {
    font-size: 12px;
    color: rgba(10, 10, 10, 0.5);
    margin-bottom: 2px;
}

.user-card-role {
    font-size: 13px;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 8px;
}

.user-card-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.color-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.color-dot.blue { background: #3B82F6; }
.color-dot.red { background: #EF4444; }
.color-dot.green { background: #22C55E; }
.color-dot.purple { background: #A855F7; }

.color-link {
    flex: 1;
    height: 40px;
    background: rgba(10, 10, 10, 0.06);
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 12px;
}

.user-card-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-link {
    display: block;
    padding: 8px 14px;
    background: rgba(10, 10, 10, 0.08);
    border: 1px solid rgba(10, 10, 10, 0.15);
    border-radius: 8px;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.user-link:hover {
    background: rgba(10, 10, 10, 0.15);
}

.showcase-connector {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.showcase-connector svg {
    width: 32px;
    height: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.qr-card .qr-code {
    width: 180px;
    height: 180px;
    margin: auto 0 0;
    background: var(--text-primary);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-card .qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-text {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.showcase-text h3 {
    font-family: 'Onder', sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 2;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.showcase-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0a0a0a;
}

.feature-card p {
    font-size: 13px;
    color: rgba(10, 10, 10, 0.7);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 64px 500px !important;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

.pricing-card {
    width: 280px;
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.4);
}

.pricing-card.featured {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.7);
    border-color: #ffffff;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .pricing-badge,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
    color: #0a0a0a;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(10, 10, 10, 0.15);
}

.pricing-card.featured .pricing-features li::before {
    background: #0a0a0a;
}

.pricing-card.featured .btn-pricing {
    background: #0a0a0a;
    color: #ffffff;
    border: none;
}

.pricing-card.featured .btn-pricing:hover {
    background: rgba(10, 10, 10, 0.8);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
    font-family: 'Onder', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: #ffffff;
}

.pricing-price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ffffff;
    white-space: nowrap;
}

.price-from {
    font-size: 27px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card:last-child {
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.pricing-card:last-child .pricing-badge {
    font-size: 28px;
    letter-spacing: 4px;
}

.pricing-card:last-child .btn-pricing {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.pricing-card:last-child .btn-pricing:hover {
    background: #ffffff;
}

/* ===== FOOTER ===== */
.footer-main {
    background: #000 !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 48px;
    width: 100%;
    box-sizing: border-box;
}
.footer-main .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 0 !important;
}
.footer-main .footer-left {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-shrink: 0 !important;
    flex-direction: row !important;
}
.footer-main .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
.footer-main .footer-inn {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}
.footer-main .footer-right {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    flex-shrink: 0 !important;
    flex-direction: row !important;
}
.footer-main .footer-link {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.footer-main .footer-link:hover {
    color: rgba(255,255,255,0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header {
        padding: 12px 16px;
        flex-direction: column;
        gap: 8px;
    }

    .header-logo {
        font-size: 8px;
        padding: 4px 10px;
        margin: 0 auto;
    }

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

    .header-buttons {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .hero {
        flex-direction: column;
        padding: 140px 32px 64px;
        text-align: center;
    }

    .hero-preview {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-tagline {
        margin-top: 250px;
    }

    .steps {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
    }

    .step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-line {
        display: none;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .step-line {
        width: 16px;
        height: 2px;
        margin-top: 25px;
    }

    .step-text {
        font-size: 11px;
    }

    .step {
        max-width: 140px;
    }

    .showcase {
        flex-direction: column;
        padding: 40px 32px;
    }

    .showcase-cards {
        flex-direction: row;
        gap: 16px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .showcase-card {
        width: 240px;
        height: 400px;
        min-height: unset;
        padding: 24px 16px;
    }

    .showcase-connector {
        width: 36px;
        height: 36px;
    }

    .showcase-connector svg {
        width: 28px;
        height: 28px;
    }

    .user-card-avatar {
        width: 50px;
        height: 50px;
    }

    .qr-card .qr-code {
        width: 180px;
        height: 180px;
        margin-top: 20px;
    }

    .showcase-text {
        margin-top: 24px;
        width: 100%;
        max-width: 100%;
    }

    .showcase-text-box {
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 16px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .showcase-text h3 {
        font-size: 10px;
        padding: 0;
        background: none;
        border: none;
        color: #0a0a0a;
    }

    .showcase-text p {
        color: rgba(10, 10, 10, 0.7);
        font-size: 11px;
        margin-top: 6px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.5);
    }

    .pricing-cards {
        flex-direction: column;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .split-bg-image {
        height: 100%;
        width: auto;
        object-fit: contain;
    }

    .split-left,
    .split-right {
        width: 50%;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .pricing {
        padding: 60px 32px 500px !important;
    }

    .pricing-card {
        width: 100%;
        max-width: 320px;
        padding: 28px 20px;
    }

    .pricing-badge {
        font-size: 18px;
    }

    .pricing-price {
        font-size: 28px;
    }

    .pricing-features li {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 10px 12px;
    }

    .header-buttons {
        gap: 6px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero {
        padding: 140px 20px 40px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-tagline {
        font-size: 14px;
        margin-top: 250px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .how-it-works {
        padding: 60px 20px;
    }

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

    .features {
        padding: 60px 20px;
    }

    .showcase {
        padding: 24px 20px;
    }

    .showcase-cards {
        flex-direction: row;
        gap: 8px;
    }

    .showcase-card {
        width: 150px !important;
        height: 240px !important;
        min-height: unset !important;
        padding: 10px 10px 0 !important;
        border-radius: 20px;
        justify-content: flex-start;
        overflow: hidden;
    }

    .color-dot {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0;
        border-radius: 50%;
    }

    .color-link {
        height: 20px !important;
        flex-shrink: 1;
        border-radius: 8px;
    }

    .showcase-connector {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .showcase-connector svg {
        width: 18px;
        height: 18px;
    }

    .user-card-avatar {
        width: 36px;
        height: 36px;
    }

    .user-card-name {
        font-size: 10px;
    }

    .user-card-handle {
        font-size: 8px;
    }

    .user-card-role {
        font-size: 9px;
    }

    .color-dot {
        width: 20px;
        height: 20px;
    }

    .color-link {
        height: 20px;
        border-radius: 8px;
    }

    .qr-card .qr-code {
        width: 100px;
        height: 100px;
        margin-top: 12px;
    }

    .showcase-text h3 {
        font-size: 8px;
        padding: 8px 12px;
    }

    .showcase-text p {
        font-size: 11px;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.5);
    }

    .pricing {
        padding: 60px 20px 500px !important;
    }

    .pricing-card {
        width: 100%;
        max-width: 320px;
        padding: 28px 20px;
    }

    .pricing-badge {
        font-size: 18px;
    }

    .pricing-price {
        font-size: 28px;
    }

    .pricing-features li {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 24px 20px;
    }
    .footer-main .footer-container {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center;
    }
    .footer-main .footer-left {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }
    .footer-main .footer-right {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px 8px !important;
    }
    .footer-main .footer-right a:first-child {
        grid-column: 1 / -1 !important;
    }
    .footer-main .footer-right a {
        text-align: center !important;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.show {
    display: flex;
}
.modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--glass-border);
}
.modal-header h3 {
    font-family: 'Onder', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0;
}
.modal-close {
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 18px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}
.modal-body {
    padding: 28px;
}
.modal-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.modal-body p:last-of-type {
    margin-bottom: 24px;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modal-form input,
.modal-form textarea {
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Bounded', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}
.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}
.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: var(--text-muted);
}
.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}
.modal-socials {
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
}
.modal-socials span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.social-link {
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}
.btn-modal-submit {
    padding: 14px 28px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-family: 'Bounded', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.btn-modal-submit:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}
