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

:root {
    --bg: #0a0612;
    --bg-2: #120a1f;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-dim: rgba(255, 255, 255, 0.45);

    --primary: #b026ff;
    --primary-2: #6f00ff;
    --accent: #00ffa3;
    --gold: #ffc400;
    --pink: #ff3d8b;
    --cyan: #00d9ff;

    --gradient-1: linear-gradient(135deg, #b026ff 0%, #6f00ff 100%);
    --gradient-2: linear-gradient(135deg, #00ffa3 0%, #00d9ff 100%);
    --gradient-3: linear-gradient(135deg, #ffc400 0%, #ff3d8b 100%);
    --gradient-text: linear-gradient(135deg, #b026ff 0%, #00ffa3 50%, #ffc400 100%);

    --radius: 16px;
    --radius-lg: 24px;
    --shadow-glow: 0 0 60px rgba(176, 38, 255, 0.35);
    --shadow-glow-green: 0 0 60px rgba(0, 255, 163, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ ANIMATED BACKGROUND ============ */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 18s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}
.orb-2 {
    width: 450px;
    height: 450px;
    background: var(--accent);
    bottom: -10%;
    right: -10%;
    animation-delay: -6s;
}
.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -50px) scale(1.1); }
    66% { transform: translate(-40px, 30px) scale(0.95); }
}

/* ============ TYPOGRAPHY HELPERS ============ */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 24px rgba(176, 38, 255, 0.45);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(176, 38, 255, 0.6);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--border-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-hover);
}
.btn-outline:hover {
    background: var(--surface);
    border-color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ============ HEADER / NAV ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(10, 6, 18, 0.7);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--gradient-1);
    border-radius: 10px;
    color: white;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.logo-accent {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}
.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', sans-serif;
}
.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* Phone mockup */
.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 320px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a2e, #0d0a1c);
    border-radius: 44px;
    padding: 14px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        0 0 0 2px rgba(255,255,255,0.05),
        inset 0 0 0 2px rgba(255,255,255,0.05);
    transform: rotate(-6deg);
    animation: phoneFloat 8s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-15px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a0833 0%, #0a0520 100%);
    border-radius: 32px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #000;
    border-radius: 0 0 18px 18px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 6px;
    margin-top: 14px;
}
.phone-time { font-size: 12px; color: white; font-weight: 600; }
.phone-app-name {
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', sans-serif;
}

.ticket-card {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.2), rgba(0, 255, 163, 0.1));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ticket-badge {
    background: var(--gradient-1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.ticket-time { font-size: 11px; color: var(--text-muted); }

.ticket-numbers {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.ticket-numbers span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
}

.ticket-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,0.15);
}
.ticket-label { font-size: 11px; color: var(--text-muted); }
.ticket-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.quick-btn {
    background: rgba(255,255,255,0.05);
    padding: 12px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}
.quick-btn span { font-size: 18px; }

.phone-chart {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 80px;
    margin-top: auto;
    padding: 12px 4px;
}
.chart-bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: 6px;
    min-height: 8px;
    animation: chartGrow 2s ease-out;
}
@keyframes chartGrow {
    from { height: 0% !important; }
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: rgba(20, 14, 35, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    animation: cardFloat 6s ease-in-out infinite;
}
.fc-icon { font-size: 24px; }
.fc-title { font-size: 13px; font-weight: 600; }
.fc-subtitle { font-size: 11px; color: var(--text-muted); }

.card-1 { top: 10%; left: -10%; animation-delay: -2s; }
.card-2 { top: 45%; right: -8%; animation-delay: -4s; }
.card-3 { bottom: 12%; left: -5%; animation-delay: -1s; }

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

/* ============ MARQUEE ============ */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}
.marquee-title {
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 600;
}
.marquee {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 17px;
}

/* ============ PRODUCTS ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
    border-radius: var(--radius-lg);
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-card.featured {
    background: linear-gradient(145deg, rgba(176, 38, 255, 0.08), rgba(0, 255, 163, 0.05));
    border-color: rgba(176, 38, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-1);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.product-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: white;
}
.product-icon-wrap svg { width: 32px; height: 32px; }
.product-icon-wrap.purple { background: var(--gradient-1); box-shadow: 0 8px 24px rgba(176, 38, 255, 0.4); }
.product-icon-wrap.green { background: var(--gradient-2); box-shadow: 0 8px 24px rgba(0, 255, 163, 0.3); }
.product-icon-wrap.gold { background: var(--gradient-3); box-shadow: 0 8px 24px rgba(255, 196, 0, 0.35); }

.product-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.product-description {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.product-features {
    margin-bottom: 24px;
}
.product-features li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}
.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}
.product-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.2s;
}
.product-link:hover {
    color: white;
}

/* ============ GAMES ============ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-gradient, var(--gradient-1));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}
.game-card[data-color="purple"] { --card-gradient: linear-gradient(135deg, #b026ff20, #6f00ff10); }
.game-card[data-color="green"] { --card-gradient: linear-gradient(135deg, #00ffa320, #00d9ff10); }
.game-card[data-color="orange"] { --card-gradient: linear-gradient(135deg, #ff7a0020, #ffc40010); }
.game-card[data-color="pink"] { --card-gradient: linear-gradient(135deg, #ff3d8b20, #ff009910); }
.game-card[data-color="blue"] { --card-gradient: linear-gradient(135deg, #4a6dff20, #00d9ff10); }
.game-card[data-color="cyan"] { --card-gradient: linear-gradient(135deg, #00d9ff20, #00ffa310); }
.game-card[data-color="red"] { --card-gradient: linear-gradient(135deg, #ff003420, #ff3d8b10); }
.game-card[data-color="gold"] { --card-gradient: linear-gradient(135deg, #ffc40030, #ff7a0010); }

.game-card:hover::before { opacity: 1; }
.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.game-card > * { position: relative; z-index: 1; }

.game-emoji {
    font-size: 44px;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.game-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.game-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 16px;
    line-height: 1.5;
}
.game-stat {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent);
}

/* ============ FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.feature:hover {
    background: var(--surface-2);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.feature-icon {
    font-size: 36px;
    margin-bottom: 14px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: var(--surface-2);
    border-radius: 14px;
}
.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ CTA ============ */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.15), rgba(0, 255, 163, 0.08));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}
.cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.4), transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
}
.cta-content p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 32px;
    position: relative;
}
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

.cta-visual {
    position: relative;
    display: grid;
    place-items: center;
    height: 240px;
}
.big-emoji {
    font-size: 120px;
    filter: drop-shadow(0 10px 40px rgba(176, 38, 255, 0.5));
    animation: spin 30s linear infinite;
    z-index: 2;
}
@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}
.ring {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 4s ease-out infinite;
}
.ring-1 { width: 200px; height: 200px; }
.ring-2 { width: 280px; height: 280px; animation-delay: -1.3s; }
.ring-3 { width: 360px; height: 360px; animation-delay: -2.6s; }
@keyframes ringPulse {
    0% { opacity: 0; transform: scale(0.7); }
    50% { opacity: 0.5; }
    100% { opacity: 0; transform: scale(1.1); }
}

/* ============ PRICING ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
    backdrop-filter: blur(20px);
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}
.price-card.featured {
    background: linear-gradient(180deg, rgba(176, 38, 255, 0.1), rgba(0, 255, 163, 0.05));
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}
.price-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
    font-family: 'Orbitron', sans-serif;
}
.price-currency { font-size: 24px; font-weight: 600; }
.price-amount {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.price-period {
    font-size: 16px;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}
.price-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 42px;
}
.price-features {
    margin-bottom: 28px;
}
.price-features li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px dashed var(--border);
}
.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}
.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
}
.testimonial-author span {
    font-size: 12px;
    color: var(--text-dim);
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.25s;
}
.faq-item:hover {
    border-color: var(--border-hover);
}
.faq-item[open] {
    background: var(--surface-2);
    border-color: var(--primary);
}
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 26px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.25s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(176, 38, 255, 0.03));
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 18px;
    margin-bottom: 22px;
    max-width: 280px;
    line-height: 1.7;
}

.socials {
    display: flex;
    gap: 10px;
}
.socials a {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: all 0.2s;
}
.socials a:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 16px;
}
.footer-legal {
    display: flex;
    gap: 24px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .hero-visual {
        margin: 0 auto;
    }
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 28px;
    }
    .cta-actions {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    section { padding: 70px 0; }
    .hero { padding: 50px 0 70px; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 26px; }
    .phone-mockup { width: 280px; height: 540px; }
    .floating-card { padding: 10px 14px; }
    .fc-icon { font-size: 20px; }
    .fc-title { font-size: 12px; }
    .card-1 { left: -5%; top: 5%; }
    .card-2 { right: -5%; }
    .card-3 { left: 0; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .price-card.featured { transform: none; }
    .cta-box { padding: 40px 24px; }
}
