/* ============================================
   JIGA BHAI | GUJRATI TRADER
   Main Stylesheet v4.0 - MOBILE-FIRST PERFECT
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-primary: #050810;
    --bg-secondary: #0a0e1a;
    --bg-tertiary: #131826;
    --bg-card: rgba(19, 24, 38, 0.95);
    --bg-glass: rgba(10, 14, 26, 0.85);
    --border-glass: rgba(255, 200, 61, 0.25);
    --gold: #ffc83d;
    --gold-light: #ffe28a;
    --gold-dark: #b8860b;
    --gold-glow: rgba(255, 200, 61, 0.5);
    --green: #00ff9d;
    --green-glow: rgba(0, 255, 157, 0.5);
    --red: #ff3b5c;
    --red-glow: rgba(255, 59, 92, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #d8dce8;
    --text-muted: #8b91a8;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(ellipse at top, #0f1424 0%, #050810 60%, #000000 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* TEXT UTILITIES */
.text-gold { color: var(--gold); text-shadow: 0 0 20px var(--gold-glow); }
.text-green { color: var(--green); text-shadow: 0 0 20px var(--green-glow); }
.text-red { color: var(--red); text-shadow: 0 0 20px var(--red-glow); }
.text-muted { color: var(--text-muted); }

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 16px;
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
}

/* ANIMATED BACKGROUND */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

/* ============================================
   TICKER BAR - WITH EDGE MASK (Live button overlap fix)
   ============================================ */
.ticker-wrap {
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #000, #0a0e1a, #000);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 70px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 70px, #000 calc(100% - 80px), transparent 100%);
}

.ticker-label {
    flex-shrink: 0;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--red), #b8002b);
    color: #fff;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    z-index: 3;
    position: relative;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.6);
}

.ticker {
    display: flex;
    gap: 30px;
    padding-left: 16px;
    white-space: nowrap;
    animation: tickerScroll 60s linear infinite;
    will-change: transform;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 60px), transparent 100%);
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.ticker-item span { color: var(--text-secondary); }
.ticker-item b { color: #fff; font-weight: 800; }
.ticker-item em { font-style: normal; }
.ticker-item.up em { color: var(--green); text-shadow: 0 0 10px var(--green-glow); }
.ticker-item.down em { color: var(--red); text-shadow: 0 0 10px var(--red-glow); }

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

/* ============================================
   NAVBAR - FIXED FOR MOBILE
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 16px;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 4px 20px var(--gold-glow);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}

.logo-primary {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #fff;
    white-space: nowrap;
}

.logo-secondary {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
    white-space: nowrap;
}

/* NAV MENU - DEFAULT HIDDEN ON MOBILE */
.nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 14px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--gold-glow);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 40px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* HAMBURGER - ALWAYS VISIBLE */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    background: rgba(255, 200, 61, 0.1);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 10px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: none;
    font-family: var(--font-body);
    min-height: 44px;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.75rem;
    min-height: 36px;
}

.btn-large {
    padding: 16px 28px;
    font-size: 0.95rem;
    min-height: 52px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000 !important;
    box-shadow: 0 8px 32px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid var(--gold-light);
    font-weight: 900;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px var(--gold-glow), 0 0 60px var(--gold-glow);
}

.btn-secondary {
    background: rgba(255, 200, 61, 0.1);
    color: #fff !important;
    border: 1.5px solid var(--gold);
    font-weight: 800;
}

.btn-secondary:hover {
    background: rgba(255, 200, 61, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-telegram {
    background: linear-gradient(135deg, #37BBFE, #007DBB);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(55, 187, 254, 0.5);
    display: none;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.btn-plan {
    background: rgba(255, 200, 61, 0.1);
    color: var(--gold) !important;
    border: 1.5px solid var(--gold);
    width: 100%;
    padding: 14px;
    font-weight: 800;
}

.btn-plan:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-ultimate {
    background: linear-gradient(135deg, #1a1a2e, #0a0e1a);
    color: var(--gold) !important;
    border: 2px solid var(--gold);
    width: 100%;
    padding: 14px;
    font-weight: 900;
}

.btn-ultimate:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-glow { animation: glowPulse 2s ease-in-out infinite; }
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 8px 32px var(--gold-glow); }
    50% { box-shadow: 0 8px 60px var(--gold); }
}

.btn-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    padding: 8px;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 600;
}

/* ============================================
   SECTION
   ============================================ */
.section {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 14px;
    padding: 6px 14px;
    background: rgba(255, 200, 61, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    text-shadow: 0 0 15px var(--gold-glow);
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #fff;
    word-wrap: break-word;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   HERO SECTION - MOBILE OPTIMIZED
   ============================================ */
.hero {
    position: relative;
    padding: 30px 0 50px;
    z-index: 2;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 255, 157, 0.15);
    border: 1.5px solid var(--green);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--green-glow);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    max-width: 100%;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(0, 255, 157, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 9vw, 4.5rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    word-wrap: break-word;
}

.hero-subline {
    background: linear-gradient(90deg, #fff 0%, var(--gold-light) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 100%;
}

.hero-description strong { font-weight: 800; color: #fff; }

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    width: 100%;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.stat {
    text-align: left;
    border-left: 2px solid var(--gold);
    padding: 8px 0 8px 12px;
    box-shadow: -1px 0 15px var(--gold-glow);
    min-width: 0;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px var(--gold-glow);
    word-break: break-word;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 700;
    word-break: break-word;
}

/* ============================================
   HERO VISUAL - MOBILE OPTIMIZED
   ============================================ */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.founder-frame {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 0 2px var(--gold),
                0 0 40px var(--gold-glow);
    z-index: 1;
    order: 1;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.founder-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    z-index: 2;
}

.founder-badge i {
    color: var(--gold);
    font-size: 1.3rem;
    text-shadow: 0 0 15px var(--gold-glow);
    flex-shrink: 0;
}

.badge-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1.5px;
    line-height: 1;
}

.badge-sub {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 2px;
}

/* FLOATING BADGES - MOBILE (smaller, no overlap) */
.float-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 280px;
    z-index: 2;
    order: 2;
}

.float-stat i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.float-1 { order: 2; }
.float-2 { order: 3; }

.float-1 i { color: var(--gold); }
.float-2 i { color: var(--red); }

.float-stat .badge-title {
    font-size: 0.85rem;
}

.float-stat .badge-sub {
    font-size: 0.65rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: linear-gradient(180deg, rgba(19, 24, 38, 0.5), rgba(10, 14, 26, 0.8));
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

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

.trust-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: left;
    padding: 8px;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
    flex-shrink: 0;
}

/* ============================================
   ABOUT - MOBILE OPTIMIZED
   ============================================ */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image-wrap {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.about-image {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 2px var(--gold),
                0 0 40px var(--gold-glow);
}

.about-image .founder-img {
    transition: transform 0.5s;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    padding: 16px 20px;
    text-align: center;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #0a0e1a, #131826);
    box-shadow: 0 0 30px var(--gold-glow);
    z-index: 3;
}

.exp-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px var(--gold-glow);
    font-weight: 900;
}

.exp-text {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.2;
}

.verified-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 157, 0.2);
    border: 1.5px solid var(--green);
    border-radius: 50px;
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 3;
    text-shadow: 0 0 10px var(--green-glow);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}

.verified-badge i { font-size: 0.85rem; }

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #fff;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-text strong { font-weight: 800; color: #fff; }

.mission-statement {
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--gold);
    background: rgba(255, 200, 61, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: -1px 0 20px var(--gold-glow);
}

.mission-statement i {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: block;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
}

.mission-statement p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-statement strong {
    color: var(--gold);
    font-weight: 800;
}

.about-features {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(0, 255, 157, 0.05);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 255, 157, 0.15);
}

.about-features i {
    color: var(--green);
    font-size: 1rem;
    text-shadow: 0 0 10px var(--green-glow);
    flex-shrink: 0;
}

.about-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 200, 61, 0.05);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: 0.3s;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.contact-value {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 700;
    word-break: break-all;
}

/* ============================================
   PERFORMANCE
   ============================================ */
.perf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.perf-card {
    padding: 20px 16px;
    text-align: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: 0.3s;
}

.perf-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
}

.perf-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 20px currentColor;
    font-weight: 900;
}

.perf-label {
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.proof-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proof-card {
    padding: 16px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.proof-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-glass);
    flex-wrap: wrap;
    gap: 6px;
}

.proof-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 700;
}

.proof-symbol {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--gold-glow);
}

.proof-result.win {
    background: rgba(0, 255, 157, 0.15);
    color: var(--green);
    border: 1px solid var(--green);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--green-glow);
}

.proof-image-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-muted);
    margin-bottom: 12px;
    border: 1.5px dashed var(--border-glass);
}

.proof-image-placeholder i {
    font-size: 1.5rem;
    color: var(--gold);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.proof-stats > div {
    text-align: center;
    padding: 8px 4px;
    background: rgba(255, 200, 61, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
}

.proof-stats span {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-weight: 700;
}

.proof-stats b {
    font-size: 0.85rem;
    font-weight: 800;
    margin-top: 3px;
    display: block;
    color: #fff;
}

/* ============================================
   PLANS - MOBILE OPTIMIZED
   ============================================ */
.plans-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    padding: 24px 20px;
    position: relative;
    background: var(--bg-card);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.plan-card.featured {
    background: linear-gradient(180deg, rgba(255, 200, 61, 0.12), var(--bg-card));
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px var(--gold-glow);
}

.plan-card.ultimate {
    background: linear-gradient(180deg, rgba(255, 200, 61, 0.08), var(--bg-card));
    border: 2px solid var(--gold);
}

.plan-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #000;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    white-space: nowrap;
    box-shadow: 0 4px 20px var(--gold-glow);
    z-index: 5;
}

.plan-ribbon.ultimate-ribbon {
    background: linear-gradient(135deg, #1a1a2e, #0a0e1a);
    color: var(--gold);
    border: 1px solid var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.plan-header { margin-bottom: 4px; }

.plan-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 200, 61, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-shadow: 0 0 15px var(--gold-glow);
}

.plan-tag.gold { background: var(--gold); color: #000; text-shadow: none; }
.plan-tag.ultimate { background: var(--gold); color: #000; text-shadow: none; }

.plan-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 6px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: auto;
}

.plan-price {
    margin: 16px 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.price-old {
    width: 100%;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-currency { font-size: 1.2rem; color: #fff; font-weight: 800; }
.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 25px var(--gold-glow);
}

.price-period {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    width: 100%;
}

.plan-features {
    margin: 16px 0 20px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 600;
    line-height: 1.4;
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li.muted { color: var(--text-muted); opacity: 0.5; }

.plan-features i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.8rem;
}

.plan-features li:not(.muted) i {
    color: var(--green);
    text-shadow: 0 0 10px var(--green-glow);
}

.plan-features li.muted i { color: var(--red); opacity: 0.6; }

.plan-slots {
    margin-top: 12px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}

.plan-slots.urgent {
    color: var(--red);
    animation: pulse 2s infinite;
    text-shadow: 0 0 10px var(--red-glow);
}

.plan-slots.ultimate-slots {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.plans-note {
    text-align: center;
    color: var(--text-primary);
    font-size: 0.85rem;
    padding: 16px;
    background: rgba(255, 200, 61, 0.08);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: 0 0 20px var(--gold-glow);
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 24px;
    position: relative;
    background: var(--bg-card);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.quote-icon {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.4;
}

.testimonial-card > p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border-glass);
    flex-wrap: wrap;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 0 15px var(--gold-glow);
    flex-shrink: 0;
}

.author-info { flex: 1; min-width: 0; }
.author-name { font-weight: 800; color: #fff; font-size: 0.9rem; }
.author-loc { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }

.author-profit {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    text-shadow: 0 0 15px var(--green-glow);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    transition: transform 0.3s;
    text-shadow: 0 0 10px var(--gold-glow);
    flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-item > p {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-item[open] {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { padding: 50px 0; }

.final-cta-box {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 200, 61, 0.12), var(--bg-card), rgba(0, 255, 157, 0.08));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 60px var(--gold-glow);
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: #fff;
}

.final-cta-box p {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.final-cta-buttons .btn { width: 100%; justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary), #000);
    border-top: 1.5px solid var(--border-glass);
    padding: 50px 0 24px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--gold-glow);
    font-weight: 900;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-about {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 200, 61, 0.08);
    border: 1.5px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 0 20px var(--gold-glow);
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    word-break: break-all;
}

.footer-contact a { color: var(--text-secondary); }
.footer-contact a:hover { color: var(--gold); }

.disclaimer {
    padding: 20px;
    background: rgba(255, 200, 61, 0.05);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(255, 200, 61, 0.1);
}

.disclaimer h5 {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 15px var(--gold-glow);
}

.disclaimer p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}

.disclaimer strong { color: #fff; font-weight: 800; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    z-index: 99;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
}

.float-wa::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.active { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-box {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-tertiary), var(--bg-primary));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 60px var(--gold-glow);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-box.modal-large { text-align: left; }

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.8rem;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.modal-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.modal-price .old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 600;
}

.modal-price .new {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 25px var(--gold-glow);
}

.modal-timer {
    background: rgba(255, 59, 92, 0.1);
    border: 1.5px solid var(--red);
    color: var(--red);
    padding: 10px;
    border-radius: var(--radius-md);
    margin: 16px 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.modal-timer b {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.success-loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-glass);
    border-top-color: var(--green);
    border-radius: 50%;
    margin: 20px auto 0;
    animation: spin 1s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
}
::selection { background: var(--gold); color: #000; }

/* ============================================
   TABLET (768px+) - Better Layout
   ============================================ */
@media (min-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 70px 0; }
    .section-title { font-size: clamp(2rem, 5vw, 3rem); }

    .hero { padding: 60px 0 80px; }
    .hero-title { font-size: clamp(2.5rem, 7vw, 4rem); }
    .hero-description { font-size: 1rem; }

    .hero-cta { flex-direction: row; }
    .hero-cta .btn { width: auto; }

    .hero-stats { grid-template-columns: repeat(4, 1fr); }

    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .trust-item { flex-direction: row; gap: 12px; font-size: 0.85rem; }

    .perf-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .perf-card { padding: 24px 16px; }
    .perf-num { font-size: 2.2rem; }
    .perf-label { font-size: 0.75rem; }

    .proof-gallery { flex-direction: row; flex-wrap: wrap; }
    .proof-card { width: calc(50% - 8px); }

    .plans-grid { flex-direction: row; flex-wrap: wrap; max-width: 100%; }
    .plan-card { width: calc(50% - 12px); }

    .testimonial-grid { flex-direction: row; flex-wrap: wrap; max-width: 100%; }
    .testimonial-card { width: calc(50% - 8px); }

    .about-features { flex-direction: row; flex-wrap: wrap; }
    .about-features li { width: calc(50% - 5px); }

    .footer-grid { flex-direction: row; flex-wrap: wrap; }
    .footer-col { width: calc(50% - 16px); }

    .final-cta-buttons { flex-direction: row; justify-content: center; }
    .final-cta-buttons .btn { width: auto; }

    .float-wa { width: 60px; height: 60px; font-size: 1.8rem; bottom: 24px; right: 24px; }
}

/* ============================================
   DESKTOP (1024px+) - Full Layout
   ============================================ */
@media (min-width: 1024px) {
    .nav-container { height: 80px; }
    .logo-mark { width: 52px; height: 52px; font-size: 1.7rem; }
    .logo-primary { font-size: 1.45rem; letter-spacing: 2px; }
    .logo-secondary { font-size: 0.68rem; letter-spacing: 3px; }
    .hamburger { display: none; }
    .btn-telegram { display: inline-flex; }

    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: transparent;
        border: none;
        padding: 0;
        gap: 32px;
        box-shadow: none;
        max-height: none;
        overflow: visible;
    }
    .nav-menu li { width: auto; border: none; }
    .nav-link { padding: 8px 0; font-size: 0.95rem; }

    .nav-container { padding: 0 24px; }

    .hero { padding: 80px 0 100px; }
    .hero-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
        min-height: calc(100vh - 200px);
    }
    .hero-content { text-align: left; }
    .hero-cta { flex-direction: row; }
    .hero-visual { min-height: 540px; max-width: 380px; display: block; }
    .founder-frame { max-width: 380px; }
    .float-stat { width: auto; max-width: none; }

    .section { padding: 100px 0; }
    .section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: center;
    }
    .about-image-wrap { max-width: 420px; }
    .about-image { max-width: 100%; }
    .about-features { flex-wrap: wrap; }
    .about-features li { width: calc(50% - 7px); }
    .about-contact { flex-direction: row; }

    .perf-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .proof-gallery { flex-wrap: wrap; }
    .proof-card { width: calc(33.33% - 11px); }

    .plans-grid { flex-wrap: wrap; max-width: 1280px; }
    .plan-card { width: calc(25% - 18px); }

    .testimonial-grid { flex-wrap: wrap; }
    .testimonial-card { width: calc(33.33% - 11px); }

    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; }
    .footer-col { width: auto; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .ticker { animation: none; }
    .glow-orb { animation: none; }
    .btn-floating { animation: none; }
}
