/* ============================
   TAGWISE — Landing Page Styles
   Premium Dark Fintech Aesthetic
   ============================ */

/* --- CSS Variables --- */
:root {
    --teal: #00E5CC;
    --teal-dim: #00B8A3;
    --teal-glow: rgba(0, 229, 204, 0.15);
    --teal-glow-strong: rgba(0, 229, 204, 0.3);

    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --cream-mid: #D9D0C0;

    --black: #050505;
    --dark-1: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --dark-5: #2A2A2A;

    --white: #FAFAFA;
    --gray-100: #E5E5E5;
    --gray-200: #C0C0C0;
    --gray-300: #999999;
    --gray-400: #666666;
    --gray-500: #444444;

    --font-display: 'Cabinet Grotesk', 'General Sans', sans-serif;
    --font-body: 'General Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;

    --shadow-card: 0 1px 3px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(0, 229, 204, 0.08);
    --shadow-float: 0 8px 32px rgba(0,0,0,0.3);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-200);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Grain Overlay --- */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 32px);
    max-width: 720px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 20px;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled .nav-inner {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    transition: color 0.4s ease;
}

.nav.scrolled .nav-logo {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.nav.scrolled .nav-links a {
    color: var(--gray-300);
}

.nav-links a:hover {
    color: var(--black);
}

.nav.scrolled .nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    padding: 8px 20px !important;
    background: var(--black) !important;
    color: var(--white) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}

.nav.scrolled .nav-cta {
    background: var(--teal) !important;
    color: var(--black) !important;
}

.nav-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav.scrolled .mobile-menu-btn span {
    background: var(--white);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 720px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 16px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--gray-200);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(255,255,255,0.05);
}

.mobile-menu .nav-cta {
    text-align: center;
    margin-top: 8px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(0, 229, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(200, 180, 150, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #555555;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--teal);
    color: var(--black);
    box-shadow: 0 2px 16px rgba(0, 229, 204, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0, 229, 204, 0.35);
    background: #1AFFE8;
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1.5px solid rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    border-color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--gray-100);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline-light:hover {
    border-color: var(--gray-100);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* --- Telegram Mockup --- */
.hero-mockup {
    position: relative;
    margin-top: 48px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    overflow: visible;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.telegram-mockup {
    width: 380px;
    max-width: 90vw;
    background: var(--dark-2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.tg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--dark-3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tg-header-left {
    color: var(--teal);
}

.tg-header-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-header-info {
    display: flex;
    flex-direction: column;
}

.tg-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.tg-status {
    font-size: 0.7rem;
    color: var(--teal);
}

.tg-header-right {
    color: var(--gray-400);
}

.tg-chat {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 300px;
    background: linear-gradient(180deg, var(--dark-1) 0%, #0D0D0D 100%);
}

.tg-message {
    display: flex;
    max-width: 95%;
}

.tg-bot .tg-bubble {
    background: var(--dark-3);
    border-radius: 4px 16px 16px 16px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.04);
}

.tg-alert-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 229, 204, 0.12);
    color: var(--teal);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tg-alert-badge.tg-multi {
    background: rgba(255, 170, 0, 0.12);
    color: #FFAA00;
}

.tg-msg-text {
    font-size: 0.85rem;
    color: var(--gray-200);
    margin-bottom: 4px;
}

.tg-yes {
    color: #22C55E;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
}

.tg-market-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.tg-msg-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 10px;
}

.tg-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tg-stats span {
    font-size: 0.72rem;
    color: var(--gray-300);
    background: rgba(255,255,255,0.03);
    padding: 4px 8px;
    border-radius: 6px;
}

.tg-green {
    color: #22C55E !important;
}

.tg-actions {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.tg-action-btn {
    padding: 6px 12px;
    background: rgba(0, 229, 204, 0.08);
    border: 1px solid rgba(0, 229, 204, 0.15);
    color: var(--teal);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s ease;
}

.tg-action-btn:hover {
    background: rgba(0, 229, 204, 0.15);
}

.tg-time {
    font-size: 0.65rem;
    color: var(--gray-500);
    float: right;
    margin-top: 4px;
}

.tg-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--dark-3);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.tg-input-field {
    flex: 1;
    padding: 10px 16px;
    background: var(--dark-4);
    border-radius: var(--radius-pill);
    color: var(--gray-500);
    font-size: 0.85rem;
}

.tg-send {
    color: var(--teal);
    opacity: 0.5;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-float);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-200);
    white-space: nowrap;
    z-index: 3;
}

.fc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.fc-dot-green { background: #22C55E; }
.fc-dot-teal { background: var(--teal); }
.fc-dot-yellow { background: #FFAA00; }

.fc-1 {
    top: -5%;
    left: -20%;
    animation: floatUp 4s ease-in-out infinite;
}

.fc-2 {
    top: -5%;
    right: -20%;
    animation: floatUp 5s ease-in-out infinite 1s;
}

.fc-3 {
    bottom: 20%;
    left: -16%;
    animation: floatUp 4.5s ease-in-out infinite 0.5s;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* --- Gradient Transition --- */
.gradient-transition {
    height: 360px;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--cream-dark) 20%, #8A8070 45%, var(--dark-3) 70%, var(--black) 100%);
    position: relative;
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
}

.teal {
    color: var(--teal);
}

/* --- Product Intro --- */
.intro {
    background: var(--black);
    padding: 100px 0 120px;
    position: relative;
}

.intro-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    color: var(--gray-300);
}

/* --- Features --- */
.features {
    background: var(--black);
    padding: 80px 0 120px;
}

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

.feature-card {
    position: relative;
    padding: 36px 32px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(0, 229, 204, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(0, 229, 204, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-pro-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: rgba(0, 229, 204, 0.1);
    color: var(--teal);
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 229, 204, 0.2);
}

.feature-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}

.feature-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-300);
    position: relative;
}

/* --- Leaderboard --- */
.leaderboard {
    background: var(--black);
    padding: 100px 0 120px;
}

.leaderboard-ui {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lb-tabs {
    display: flex;
    gap: 4px;
    padding: 16px 16px 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lb-tabs::-webkit-scrollbar { display: none; }

.lb-tab {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-pill);
    color: var(--gray-400);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lb-tab.active,
.lb-tab:hover {
    background: rgba(0, 229, 204, 0.1);
    color: var(--teal);
    border-color: rgba(0, 229, 204, 0.2);
}

.lb-time-tabs {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.lb-time {
    padding: 6px 14px;
    background: transparent;
    border: none;
    border-radius: var(--radius-pill);
    color: var(--gray-500);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lb-time.active,
.lb-time:hover {
    background: rgba(255,255,255,0.05);
    color: var(--gray-200);
}

.lb-table {
    padding: 0 16px;
}

.lb-header {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lb-header .lb-col {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lb-row {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    transition: background 0.2s ease;
}

.lb-row:hover {
    background: rgba(255,255,255,0.02);
}

.lb-col {
    font-size: 0.85rem;
    font-weight: 500;
}

.lb-rank { width: 12%; min-width: 50px; color: var(--gray-400); }
.lb-addr { width: 28%; min-width: 100px; color: var(--gray-200); font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.82rem; }
.lb-pnl { width: 25%; min-width: 80px; }
.lb-roi { width: 15%; min-width: 60px; }
.lb-wr { width: 20%; min-width: 60px; color: var(--gray-300); }

.lb-positive { color: #22C55E; font-weight: 600; }

.lb-medal { font-size: 1rem; margin-right: 4px; }

.lb-locked {
    opacity: 0.35;
}

.lb-footer {
    padding: 20px 16px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* --- Ecosystem --- */
.ecosystem {
    background: var(--black);
    padding: 100px 0 120px;
}

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

.eco-card {
    position: relative;
    padding: 40px 32px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    overflow: hidden;
}

.eco-card:hover {
    border-color: rgba(0, 229, 204, 0.12);
    transform: translateY(-4px);
}

.eco-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    margin-bottom: 20px;
}

.eco-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.eco-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray-300);
    margin-bottom: 28px;
}

.eco-visual {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-pulse {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 229, 204, 0.08);
    animation: pulse 3s ease-in-out infinite;
}

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

/* --- Pricing --- */
.pricing {
    background: var(--black);
    padding: 100px 0 120px;
    position: relative;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 32px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    position: relative;
}

.pricing-card-pro {
    border-color: rgba(0, 229, 204, 0.3);
    background: linear-gradient(165deg, rgba(0, 229, 204, 0.04) 0%, var(--dark-2) 40%);
    box-shadow: 0 0 40px rgba(0, 229, 204, 0.06);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: var(--teal);
    color: var(--black);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.pricing-tier {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-annual {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.pricing-save {
    color: var(--teal);
    font-weight: 600;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-200);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

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

/* --- Trust --- */
.trust {
    background: var(--dark-1);
    padding: 100px 0 120px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.trust-item {
    text-align: center;
    padding: 32px 20px;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.trust-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-400);
}

/* --- Final CTA --- */
.final-cta {
    background: var(--black);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 204, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.final-cta-text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
    position: relative;
}

/* --- Footer --- */
.footer {
    background: var(--dark-1);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 12px;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-links h5,
.footer-newsletter h5 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-300);
    margin-bottom: 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a {
    display: block;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 16px;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: rgba(0, 229, 204, 0.3);
}

.newsletter-input::placeholder {
    color: var(--gray-500);
}

.newsletter-btn {
    padding: 10px 20px;
    background: var(--teal);
    color: var(--black);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-btn:hover {
    background: #1AFFE8;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ==================
   RESPONSIVE
   ================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eco-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }

    .hero-mockup {
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .floating-card {
        display: none;
    }

    .telegram-mockup {
        width: 340px;
    }

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

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

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

    .pricing-card-pro {
        order: -1;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lb-addr {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .gradient-transition {
        height: 200px;
    }

    .btn-secondary {
        color: var(--gray-400);
        border-color: rgba(0,0,0,0.15);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 16px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .telegram-mockup {
        width: 300px;
    }

    .tg-stats {
        flex-direction: column;
    }

    .lb-table {
        overflow-x: auto;
    }

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

    .pricing-card {
        padding: 32px 24px;
    }
}