* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: rgba(102, 207, 255, 1);
    --primary-glow: rgba(102, 207, 255, 0.3);
    --bg: #0d1117;
    --bg-card: #161b22;
    --bg-card-hover: #1c2128;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(102, 207, 255, 0.4);
    --text: #e6edf3;
    --text-muted: #7d8590;
    --grid-color: rgba(102, 207, 255, 0.06);
    --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
    --font-display: 'Outfit', var(--font-ui);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ui);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    user-select: none;
    -webkit-user-select: none;
    cursor: none;
}

input, textarea, select, button {
    user-select: text;
    -webkit-user-select: text;
    cursor: none !important;
}

a, .btn, .nav-links a, .lang-btn, .hamburger {
    cursor: none;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    overflow: visible;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-active {
    color: var(--primary) !important;
}

.nav-links a.nav-active::after {
    width: 100%;
    transition: none;
}

.nav-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.lang-btn {
    cursor: pointer;
    font-size: 1.1rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    padding: 0.4rem 0.6rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.lang-btn:hover { color: var(--text); border-color: var(--border-hover); }

.language-selector { position: relative; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    overflow: hidden;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover { background: rgba(102,207,255,0.08); color: var(--text); }
.lang-option.active { color: var(--primary); font-weight: 600; }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 1rem;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

#stars-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(600px circle at 50% 50%, rgba(102,207,255,0.07), transparent 70%);
    transition: background 0.05s ease;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    animation: fadeInUp 0.7s ease-out;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 207, 255, 0.08);
    color: #ffffff;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(102, 207, 255, 0.2);
}

.hero-badge i {
    color: #ffffff;
}

.hero-badge-white {
    background: #e6edf3;
    color: #0d1117;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-badge-white i {
    color: #0d1117;
}

.hero-title {
    font-family: 'Outfit', var(--font-ui);
    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 300;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    color: var(--text);
    line-height: 1.05;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    margin: 0 auto 3rem;
    line-height: 1.8;
    max-width: 720px;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.social-links {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.social-links a {
    color: var(--text);
    font-size: 2.2rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover { color: var(--primary); transform: translateY(-3px); }

.fivem-icon {
    width: 2.2rem;
    height: 2.2rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.scroll-indicator {
    font-size: 1.4rem;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

/* ── BUTTONS ── */
.btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #ffffff;
    color: #0d1117;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
    filter: brightness(0.95);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(102,207,255,0.3);
}

.btn-outline:hover {
    background: rgba(102,207,255,0.1);
    border-color: var(--primary);
}

/* force hide native cursor everywhere */
*, *::before, *::after { cursor: none !important; }
input, textarea, select, button, a { cursor: none !important; }

@media (pointer: coarse) {
    *, *::before, *::after { cursor: auto !important; }
    input, textarea, select, button, a { cursor: auto !important; }
    .custom-cursor { display: none !important; }
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(102, 207, 255, 0.85);
    box-shadow: 0 0 6px rgba(102, 207, 255, 0.25);
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: width 0.15s ease, height 0.15s ease, margin 0.15s ease, border-color 0.15s ease, opacity 0.2s ease;
    will-change: transform;
    margin-left: -9px;
    margin-top: -9px;
}

.custom-cursor--click {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(102, 207, 255, 0.7);
}



/* ── SECTIONS ── */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ── HAMBURGER / MOBILE MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    background: rgba(13,17,23,0.98);
    border-top: 1px solid var(--border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.open {
    max-height: 400px;
    padding: 1rem 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-menu ul li a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--primary); background: rgba(102,207,255,0.04); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
}

/* ── HERO MOUSE FX ── */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 207, 255, 0.8);
    box-shadow: 0 0 6px rgba(102, 207, 255, 0.6);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    animation: particle-burst 0.7s ease-out forwards;
}

@keyframes particle-burst {
    0%   { opacity: 1; transform: translate(-50%, -50%) translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(0); }
}

/* ── STATS CAROUSEL ── */
.stats {
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
    overflow: hidden;
}

.stats-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.stats-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: stats-scroll 30s linear infinite;
    padding: 1.2rem 0;
}

.stats-track:hover { animation-play-state: paused; }

@keyframes stats-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.stat-item .stat-number,
.stat-item .stat-number-clone {
    font-family: var(--font-ui);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.stat-item .stat-suffix {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text);
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-left: 0.3rem;
}

.stat-icon {
    font-size: 1rem;
    color: var(--primary);
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}
.trusted {
    padding: 3rem 2rem;
    background: var(--bg);
}

.trusted-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.trusted-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.trusted-logo:hover {
    border-color: var(--border-hover);
    color: var(--text);
    transform: translateY(-2px);
}

.trusted-logo i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* ── REVIEWS ── */
.reviews {
    padding: 5rem 2rem;
    background: var(--bg-card);
}

.reviews-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 1.8rem;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(102,207,255,0.08);
}

.review-card.featured-review {
    border-color: rgba(102,207,255,0.3);
    background: var(--bg-card-hover);
}

.review-stars { display: flex; gap: 0.2rem; }
.review-stars i { color: #f0b429; font-size: 0.85rem; }

.review-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(102,207,255,0.15);
    border: 1px solid rgba(102,207,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.review-author h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.1rem; }
.review-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ── FEATURES ── */
.features {
    padding: 5rem 2rem;
    background: var(--bg);
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(102,207,255,0.1);
    background: var(--bg-card-hover);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    animation: float 4s ease-in-out infinite;
}

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── SCRIPTS ── */
.scripts { padding: 5rem 2rem; }

.scripts-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.script-card {
    padding: 1.8rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.script-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(102,207,255,0.1);
    background: var(--bg-card-hover);
}

.script-card.featured { border-color: rgba(102,207,255,0.4); }

.script-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(102,207,255,0.1);
    color: var(--primary);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.script-badge.featured-badge { background: rgba(102,207,255,0.18); }

.script-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    padding-right: 5rem;
}

.script-header h3 { font-size: 1.2rem; font-weight: 600; }
.price { font-size: 1.6rem; font-weight: 700; color: var(--primary); }

.script-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; flex-grow: 1; }

.features-list { list-style: none; margin-bottom: 1.5rem; }

.features-list li {
    padding: 0.45rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.features-list i { color: var(--primary); font-size: 0.75rem; }
.script-card .btn { width: 100%; margin-top: auto; }

/* ── PRICING ── */
.pricing { padding: 5rem 2rem; background: var(--bg); }

.pricing-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(102,207,255,0.1);
}

.pricing-card.featured {
    border-color: rgba(102,207,255,0.4);
    background: var(--bg-card-hover);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #0d1117;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; font-weight: 600; }

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.pricing-amount span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }

.pricing-features { list-style: none; margin: 1.5rem 0; text-align: left; }

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features i { color: var(--primary); font-size: 0.8rem; }
.pricing-features i.fa-times { color: #484f58; }
.pricing-card .btn { width: 100%; }

/* ── SPLINE SECTION ── */
.spline-section {
    width: 100%;
    padding: 0;
    background: transparent;
    position: relative;
}

.spline-wrapper {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.spline-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .spline-wrapper { height: 380px; }
}

/* ── BUNDLES ── */
.bundles {
    padding: 5rem 2rem;
    background: var(--bg);
}

.bundles-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bundle-card {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(102, 207, 255, 0.1);
}

.bundle-top-badge {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.45rem 1rem;
    text-transform: none;
}

.bundle-save {
    background: linear-gradient(90deg, rgba(102,207,255,0.25), rgba(102,207,255,0.12));
    color: #ffffff;
    border-bottom: 1px solid rgba(102,207,255,0.2);
}

.bundle-exclusive {
    background: rgba(102,207,255,0.08);
    color: #ffffff;
    border-bottom: 1px solid rgba(102,207,255,0.15);
}

.bundle-preview {
    position: relative;
    background: #0a0c10;
    overflow: hidden;
    height: 160px;
}

.bundle-card-soon .bundle-info {
    opacity: 0.5;
    pointer-events: none;
}

.bundle-card-soon .bundle-price {
    filter: blur(6px);
    user-select: none;
}

.bundle-card-soon .bundle-info button:disabled {
    cursor: not-allowed;
}

/* soon overlay (shared) */
.sp-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
    z-index: 2;
}

.sp-soon-overlay i {
    font-size: 1.6rem;
    color: #ffffff;
}

.bundle-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.bundle-card:hover .bundle-preview img {
    opacity: 1;
    transform: scale(1.04);
}

.bundle-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.bundle-thumb {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 0.6rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    transition: background 0.2s;
}

.bundle-thumb:hover {
    background: rgba(150, 80, 255, 0.1);
    border-color: rgba(150, 80, 255, 0.3);
}

.bundle-thumb i {
    font-size: 1.1rem;
    color: var(--primary);
}

.bundle-thumb-wide {
    grid-column: span 3;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.bundle-info {
    padding: 1.2rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.bundle-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.bundle-title-row h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.bundle-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.bundle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
}

.tag-escrow  { background: rgba(102,207,255,0.15); color: #ffffff; border: 1px solid rgba(102,207,255,0.3); }
.tag-esx     { background: rgba(239,68,68,0.15);   color: #ffffff; border: 1px solid rgba(239,68,68,0.3); }
.tag-qbcore  { background: rgba(234,179,8,0.15);   color: #ffffff; border: 1px solid rgba(234,179,8,0.3); }
.tag-qbx     { background: rgba(168,85,247,0.15);  color: #ffffff; border: 1px solid rgba(168,85,247,0.3); }
.tag-opensource { background: rgba(34,197,94,0.15); color: #ffffff; border: 1px solid rgba(34,197,94,0.3); }

.bundle-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bundle-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: all 0.2s ease;
}

.bundle-btn:hover {
    border-color: var(--border-hover);
    background: rgba(102, 207, 255, 0.08);
    color: var(--primary);
}

@media (max-width: 1024px) {
    .bundles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .bundles-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq {
    padding: 5rem 2rem;
    background: var(--bg);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: rgba(102, 207, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--primary); }

.faq-question i {
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ── CONTACT ── */
.contact { padding: 5rem 2rem; }

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-discord-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-discord-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.contact-bot-avatar {
    position: relative;
    width: 52px;
    height: 52px;
    background: rgba(102,207,255,0.1);
    border: 1px solid rgba(102,207,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
}

.bot-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #3ba55c;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    animation: pulse-dot 2s ease-in-out infinite;
}

.contact-bot-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bot-app-badge {
    background: #5865f2;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.contact-bot-status {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.contact-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(102,207,255,0.12);
    border: 1px solid rgba(102,207,255,0.3);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.step-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.step-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.btn-discord {
    background: #5865f2;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
    width: 100%;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88,101,242,0.3);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.contact-info-item:hover { border-color: var(--border-hover); }

.contact-info-icon {
    width: 38px;
    height: 38px;
    background: rgba(102,207,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.footer {
    background: #010409;
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-section p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

.footer-socials { display: flex; gap: 1rem; align-items: center; margin-top: 0.5rem; }

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-socials a:hover { color: var(--primary); transform: translateY(-2px); }

.footer-socials .fivem-icon { width: 1.2rem; height: 1.2rem; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-section a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── PAGE TRANSITION ── */
body {
    animation: pageFadeIn 0.18s ease-out both;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.page-leaving {
    pointer-events: none;
}

@keyframes pageFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-container { padding: 0.9rem 1.2rem; }

    .hero { padding: 7rem 1.2rem 3rem; min-height: 100svh; }
    .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
    .hero-badges { gap: 0.5rem; }
    .hero-badge { font-size: 0.8rem; padding: 0.5rem 1rem; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 320px; }

    .social-links { gap: 1.4rem; }
    .social-links a { font-size: 1.5rem; }
    .fivem-icon { width: 1.5rem; height: 1.5rem; }

    .features,
    .scripts,
    .pricing,
    .contact { padding: 4rem 1.2rem; }

    .bundles { padding: 4rem 1.2rem; }
    .bundles-grid { grid-template-columns: 1fr; }

    .faq { padding: 4rem 1.2rem; }

    .features-grid,
    .scripts-grid,
    .pricing-grid,
    .reviews-grid { grid-template-columns: 1fr; }

    .script-card.featured,
    .pricing-card.featured { transform: none; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info-side { gap: 1rem; }

    .footer { padding: 2.5rem 1.2rem 1.2rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 1.5rem; }

    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

    .stat-item { padding: 1rem 1.5rem; }
    .stat-divider { display: none; }

    .trusted-logos { gap: 0.7rem; }
    .trusted-logo { padding: 0.6rem 1rem; font-size: 0.82rem; }

    .reviews { padding: 4rem 1.2rem; }

    .bundle-card { max-width: 100%; }
    .bundle-info { padding: 1rem 1.2rem 1.2rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(2.2rem, 14vw, 3rem); }
    .hero-badge { font-size: 0.72rem; padding: 0.4rem 0.8rem; }
    .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
    .pricing-amount { font-size: 2rem; }
    .logo { font-size: 1.1rem; }
    .contact-discord-card { padding: 1.4rem; }
    .contact-info-item { padding: 1rem; }
    .bundle-title-row { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
}

.online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3ba55c;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 165, 92, 0.4); }
    50% { box-shadow: 0 0 0 5px rgba(59, 165, 92, 0); }
}

.nitro-page {
    padding-top: 80px;
}

.nitro-hero {
    padding: 7rem 2rem 4rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(244, 127, 255, 0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(88, 101, 242, 0.22), transparent 55%),
        var(--bg);
}

.nitro-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
}

.nitro-hero-text {
    flex: 1 1 360px;
}

.nitro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(88, 101, 242, 0.18);
    border: 1px solid rgba(88, 101, 242, 0.5);
    color: #e3e8ff;
    margin-bottom: 1.2rem;
}

.nitro-badge i {
    font-size: 0.9rem;
}

.nitro-hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 0.8rem;
}

.nitro-hero-text p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.nitro-highlight {
    color: #f9a8ff;
}

.nitro-perks {
    list-style: none;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nitro-perks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text);
}

.nitro-perks li i {
    color: #22c55e;
    font-size: 0.9rem;
}

.nitro-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.nitro-hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nitro-hero-visual {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
}

.nitro-discord-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1f2937, #020617);
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 1.5rem 1.4rem;
    box-shadow: 0 22px 55px rgba(88, 101, 242, 0.45);
    overflow: hidden;
}

.nitro-discord-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(244, 127, 255, 0.4), transparent 60%), radial-gradient(circle at 100% 100%, rgba(88, 101, 242, 0.6), transparent 60%);
    opacity: 0.75;
    mix-blend-mode: screen;
}

.nitro-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nitro-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nitro-card-user {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nitro-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(244, 127, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9a8ff;
    font-weight: 700;
    font-size: 0.9rem;
}

.nitro-user-info span {
    display: block;
    font-size: 0.85rem;
}

.nitro-user-name {
    font-weight: 600;
}

.nitro-user-tag {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.nitro-role-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(244, 127, 255, 0.18);
    border: 1px solid rgba(244, 127, 255, 0.6);
    color: #ffe4ff;
    font-size: 0.78rem;
    font-weight: 600;
}

.nitro-card-main {
    padding: 0.9rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.nitro-main-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.nitro-main-line {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nitro-discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.3rem;
}

.nitro-discount-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #bbf7d0;
}

.nitro-discount-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #22c55e;
}

.nitro-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.4rem;
}

.nitro-footer-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.nitro-footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f97316;
    box-shadow: 0 0 0 5px rgba(248, 113, 113, 0.15);
}

.nitro-footer-badge {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.nitro-steps {
    padding: 1rem 2rem 4.5rem;
}

.nitro-steps-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.nitro-step-card {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nitro-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(102, 207, 255, 0.12);
    border: 1px solid rgba(102, 207, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.nitro-step-title {
    font-size: 0.98rem;
    font-weight: 600;
}

.nitro-step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.nitro-step-badge {
    margin-top: auto;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .nitro-hero {
        padding: 7rem 1.4rem 3.5rem;
    }

    .nitro-steps {
        padding: 1rem 1.4rem 4rem;
    }

    .nitro-steps-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nitro-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .nitro-hero-note {
        font-size: 0.78rem;
    }
}

.team-section {
    padding: 5rem 2rem 4rem;
}

.team-row {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.8rem;
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border);
}

.team-avatar-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    flex-shrink: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 55%), rgba(15, 23, 42, 1);
    border: 2px solid rgba(102, 207, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(102, 207, 255, 0.12);
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 0;
}

.team-online-dot {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3ba55c;
    border: 2px solid #020617;
    box-shadow: 0 0 0 3px rgba(59, 165, 92, 0.7);
    z-index: 1;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.team-discord {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.team-discord i {
    color: #5865F2;
    font-size: 1rem;
    margin-right: 0.3rem;
    vertical-align: -1px;
}

.team-role {
    display: inline-block;
    margin-top: 0.2rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(148, 163, 184, 0.2);
}

.team-role + .team-role {
    margin-left: 0.35rem;
}

.team-role-lead {
    background: rgba(251, 191, 36, 0.15);
    color: #facc15;
}

.team-role-dev {
    background: rgba(56, 189, 248, 0.18);
    color: #7dd3fc;
}

.team-role-community {
    background: rgba(147, 51, 234, 0.2);
    color: #c4b5fd;
}

.team-badges {
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.team-badge {
    font-size: 0.78rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--text-muted);
}

.team-badge i {
    margin-right: 0.25rem;
}

.team-badge-dev {
    background: rgba(56, 189, 248, 0.18);
    border-color: rgba(56, 189, 248, 0.45);
    color: #e0f2fe;
}

.team-badge-support {
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.45);
    color: #bbf7d0;
}

@media (max-width: 640px) {
    .team-card {
        width: 100%;
    }
}
