:root {
    --main-color: #ffe1b4;
    --accent-color: #9b8666;
    --bg-color: #0a0a0a;
    --card-bg: rgba(159, 137, 102, 0.08);
    --text-main: #ffffff;
    --text-dim: #b8b8b8;
    --heading-font: 'Manrope', 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

html {
    scrollbar-gutter: stable;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
}

body.is-transitioning {
    pointer-events: none;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: #070707;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 260ms ease;
}

.page-transition.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-transition__logo {
    width: clamp(138px, 13vw, 220px);
    height: clamp(138px, 13vw, 220px);
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(255, 255, 255, 0.14));
    transform: scale(0.92);
    opacity: 0;
}

.page-transition.is-visible .page-transition__logo {
    animation: transition-logo-pulse 1200ms ease both;
}

@keyframes transition-logo-pulse {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }
    28%,
    72% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.96);
    }
}

h1,
h2,
.hero-accent,
.reviews-header h2,
.customers-content h2,
.team-header h2,
.faq-header h2,
.packages-header h1,
.detail-panel h2,
.admin-panel-header h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 0;
}

.reviews-header h2,
.customers-content h2,
.team-header h2,
.faq-header h2,
.packages-header h1 {
    font-weight: 700;
    line-height: 1.08;
}

.reviews-header h2 span,
.team-header h2 span,
.faq-header h2 span,
.packages-header h1 span {
    font: inherit;
    color: var(--main-color);
}

/* Hareketli Arka Plan */
.bg-animate {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100%;
    background:
        linear-gradient(rgba(255, 225, 180, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 225, 180, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 20% 30%, #1a1a1a 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, #0f0f0f 0%, transparent 40%);
    background-size: 42px 42px, 42px 42px, auto, auto;
    mask-image: radial-gradient(circle at 22% 26%, rgba(0, 0, 0, 0.52), transparent 42%),
                radial-gradient(circle at 78% 68%, rgba(0, 0, 0, 0.44), transparent 48%),
                linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36));
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.premium-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: transparent;
    backdrop-filter: none;
    padding: 0 28px;
    height: 84px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    position: fixed;
    width: min(1240px, 94%);
    z-index: 100;
    top: 14px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.premium-navbar .logo-section {
    flex-shrink: 0;
}

.premium-navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.premium-navbar.scrolled {
    top: 10px;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 225, 180, 0.18);
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 12px rgba(255, 225, 180, 0.18));
}

.brand-wordmark {
    width: 210px;
    height: 52px;
    object-fit: cover;
    object-position: center;
    transform: none;
    transform-origin: left center;
}

.logo-text {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--main-color);
    border-left: 2px solid var(--main-color);
    padding-left: 14px;
}

.logo-text span {
    font-size: 12px;
    font-weight: 400;
    color: var(--accent-color);
}

/* Center Navigation Links */
.nav-links-center {
    display: flex;
    gap: 30px;
    position: static;
    transform: none;
    white-space: nowrap;
    justify-self: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo ve YazÄ± */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-text {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.logo-text span {
    display: inline;
    font-size: 12px;
    font-weight: 400;
    color: var(--accent-color);
    margin-left: 3px;
}

/* AyÄ±rÄ±cÄ± Ã‡izgi */
.divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 225, 180, 0.15);
    margin: 0 10px;
}

/* MenÃ¼ Linkleri */
.nav-links {
    display: none;
}

.nav-item {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item:hover, .nav-item.active {
    color: var(--main-color);
}

/* SaÄŸ Taraf: Sosyal Medya ve Butonlar */
.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: var(--main-color);
    font-size: 16px;
    opacity: 0.8;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--main-color);
}

.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.currency-selector {
    display: none;
}

.btn-login-premium {
    background: rgba(255, 225, 180, 0.06);
    border: 1px solid rgba(255, 225, 180, 0.35);
    color: var(--main-color);
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: 0.2s ease;
    font-weight: 600;
    height: 38px;
    transform: none;
    white-space: nowrap;
}

.btn-login-premium:hover {
    background: rgba(255, 225, 180, 0.12);
    border-color: var(--main-color);
    color: var(--main-color);
}

.auth-menu {
    position: relative;
}

.auth-trigger-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.auth-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 225, 180, 0.35);
    flex-shrink: 0;
}

.auth-name {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-chevron {
    font-size: 11px;
    opacity: 0.8;
    transition: transform 180ms ease;
}

.auth-menu.is-open .auth-chevron {
    transform: rotate(180deg);
}

.auth-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(13, 14, 24, 0.97);
    border: 1px solid rgba(255, 225, 180, 0.24);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 60;
}

.auth-menu.is-open .auth-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.auth-dropdown-item {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    border-radius: 9px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.auth-dropdown-item:hover {
    background: rgba(255, 225, 180, 0.12);
    color: var(--main-color);
}

.cart-menu {
    position: relative;
}

.cart-trigger {
    width: 28px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    font-size: 16px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--main-color);
    color: #15110b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.cart-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(360px, calc(100vw - 24px));
    border-radius: 16px;
    border: 1px solid rgba(255, 225, 180, 0.2);
    background: rgba(10, 11, 16, 0.97);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
    padding: 12px;
    z-index: 120;
}

.cart-panel-head,
.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-panel-head {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-close {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.cart-items {
    max-height: 310px;
    overflow-y: auto;
    display: grid;
    gap: 10px;
    padding: 12px 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 10px;
}

.cart-item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item strong {
    display: block;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
}

.cart-item span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-qty,
.cart-remove {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.76);
    cursor: pointer;
    font-size: 11px;
}

.cart-remove {
    color: #ff8d8d;
}

.cart-empty {
    padding: 22px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
}

.cart-summary {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cart-summary strong {
    color: var(--main-color);
    font-size: 18px;
}

.cart-checkout {
    width: 100%;
    margin-top: 12px;
    border: none;
    border-radius: 12px;
    background: var(--main-color);
    color: #17120b;
    height: 42px;
    font-weight: 800;
    cursor: pointer;
}

.cart-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hero Section Padding DÃ¼zeltmesi */
main {
    padding-top: 110px;
}

/* Hero Section */
.hero {
    padding: 140px 0 64px;
    width: min(1320px, 95%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 620px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-kicker i {
    color: var(--main-color);
    filter: drop-shadow(0 0 12px rgba(255, 225, 180, 0.32));
}

.hero h1 {
    font-size: clamp(46px, 5.4vw, 74px);
    margin-top: 14px;
    line-height: 1.03;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.hero-accent {
    color: var(--main-color);
    text-shadow: 0 0 26px rgba(255, 225, 180, 0.2);
}

.hero p {
    color: var(--text-dim);
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    max-width: 410px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatars span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border-radius: 50%;
    border: 2px solid rgba(7, 7, 8, 0.95);
    color: #17120b;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 28%),
        linear-gradient(135deg, #f6d18b, #d3b07e);
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.3),
        0 0 18px rgba(255, 225, 180, 0.16);
    position: relative;
    transition: transform 180ms ease, z-index 180ms ease;
}

.hero-avatars span:hover {
    z-index: 2;
    transform: translateY(-3px);
}

.hero-avatars span:first-child {
    margin-left: 0;
}

.hero-avatars span:nth-child(1) {
    color: #fff;
    background: linear-gradient(135deg, #5865f2, #7f8cff);
}

.hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #fff0d1, #d3b07e); }
.hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #f0d7ac, #b8a37b); }
.hero-avatars span:nth-child(4) { background: linear-gradient(135deg, #ffe7b5, #f6d18b); }
.hero-avatars span:nth-child(5) { background: linear-gradient(135deg, #fffaf0, #e0c08f); }

.hero-avatars .hero-avatar-more {
    display: inline-flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-left: 7px;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    color: var(--main-color);
    background: transparent;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    text-shadow:
        0 0 12px rgba(255, 225, 180, 0.48),
        0 1px 8px rgba(0, 0, 0, 0.45);
    opacity: 0.95;
    transform: translateY(-1px);
}

.hero-avatars .hero-avatar-more i {
    line-height: 1;
}

.hero-avatars img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

.hero-proof strong {
    display: block;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.hero-action-line {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-action-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--main-color);
    color: #15110b;
    text-decoration: none;
    font-size: 18px;
    box-shadow:
        0 0 0 10px rgba(255, 225, 180, 0.08),
        0 0 30px rgba(255, 225, 180, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-action-icon:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 10px rgba(255, 225, 180, 0.1),
        0 0 38px rgba(255, 225, 180, 0.3);
}

.btn-primary {
    padding: 15px 35px;
    background: var(--main-color);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: none;
}

.btn-primary:hover { transform: none; box-shadow: none; }

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.hero-btn-light {
    background: #ffffff;
    color: #0a0a0a;
}

.hero-btn-light:hover {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.hero-btn-main {
    background: var(--main-color);
}

.btn-secondary {
    padding: 15px 35px;
    background: rgba(159, 137, 102, 0.1);
    border: 2px solid var(--main-color);
    color: var(--main-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: 0.2s;
    margin-left: 15px;
}

.btn-secondary:hover { background: rgba(159, 137, 102, 0.2); }

/* Floating Animation */
.floating {
    width: 100%;
    max-width: 500px;
    animation: float 4s ease-in-out infinite;
}

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

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 10%;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 24px;
    transition: 0.4s;
}

.card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--main-color);
}

.card-icon {
    font-size: 30px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.card.active {
    background: rgba(255, 225, 180, 0.1);
    border-color: var(--main-color);
    box-shadow: 0 0 30px rgba(255, 225, 180, 0.15);
}

.card.active .card-icon {
    color: var(--main-color);
}

.actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.premium-navbar .actions {
    margin-top: 0;
}

.hero-visual {
    flex: 0.95;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: visible;
}

.hero-visual::before {
    content: none;
}

.hero-character {
    width: min(720px, 118%);
    height: auto;
    display: block;
    filter: drop-shadow(0 0 34px rgba(255, 225, 180, 0.24));
    transform: translateX(42px);
    animation: robot-idle 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes robot-idle {
    0%, 100% {
        transform: translateX(42px) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(42px) translateY(-12px) rotate(0.8deg);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--main-color);
}

.section-header p {
    color: var(--text-dim);
    font-size: 16px;
}

.grid-section {
    padding: 40px 0 20px;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    margin: 0 auto;
    width: min(1320px, 95%);
    padding: 40px 0 8px;
    overflow: hidden;
}

.reviews-section::before {
    content: none;
}

.reviews-glow {
    display: none;
}

.reviews-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 26px;
}

.reviews-header h2 {
    font-size: clamp(29px, 3.5vw, 44px);
    color: #ffffff;
    margin-bottom: 14px;
}

.reviews-header h2 span {
    color: var(--main-color);
    text-shadow: 0 0 24px rgba(255, 225, 180, 0.35);
}

.reviews-header p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 600;
}

.review-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.review-cards {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 14px 2px 8px;
    animation: review-scroll 52s linear infinite;
}

.review-marquee:hover .review-cards {
    animation-play-state: paused;
}

@keyframes review-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .review-cards {
        animation: none;
    }

    .hero-character {
        animation: none;
    }
}

/* Customers Banner */
.customers-strip {
    --banner-y: 50%;
    position: relative;
    isolation: isolate;
    min-height: 300px;
    margin: 26px 0 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 225, 180, 0.08);
    border-bottom: 1px solid rgba(255, 225, 180, 0.08);
    background: #050505;
}

.customers-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("Best Bot's Banner.png");
    background-size: cover;
    background-position: center var(--banner-y);
    will-change: background-position;
}

.customers-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32)),
        rgba(10, 10, 10, 0.48);
}

.customers-content {
    position: relative;
    width: min(1480px, 92%);
    padding: 56px 0 60px;
    text-align: center;
}

.customers-ghost {
    position: absolute;
    left: 50%;
    top: 22px;
    transform: translateX(-50%);
    z-index: -1;
    font-size: clamp(64px, 8.5vw, 142px);
    line-height: 0.9;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    pointer-events: none;
}

.customers-content h2 {
    margin: 0 0 24px;
    font-size: clamp(24px, 2.2vw, 34px);
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.customers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
}

.customers-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(5px);
}

.review-card {
    width: 280px;
    min-height: 205px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 16px 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025) 42%, rgba(8, 10, 16, 0.22) 100%),
        rgba(12, 14, 20, 0.42);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    position: relative;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 72% 8%, rgba(255, 225, 180, 0.14), transparent 42%);
    opacity: 0.35;
}

.review-card:hover {
    border-color: rgba(255, 225, 180, 0.36);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 225, 180, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.review-card.active {
    border-color: rgba(255, 225, 180, 0.44);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 225, 180, 0.24),
        0 0 22px rgba(255, 225, 180, 0.18);
}

.review-card.muted {
    opacity: 0.9;
    border-color: rgba(255, 255, 255, 0.1);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 9px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, rgba(255, 225, 180, 0.22), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-top h3 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.96);
}

.review-top span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.review-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
    font-size: 13px;
    min-height: 72px;
    margin-bottom: 0;
}

.review-meta {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-badge,
.review-platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.84);
    text-align: center;
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    line-height: 1.2;
}

.review-badge i {
    color: #8fe6ad;
}

.review-platform {
    justify-content: flex-start;
}

.review-platform i {
    color: rgba(255, 255, 255, 0.72);
}

.review-platform-text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .premium-navbar {
        width: min(96%, 860px);
        padding: 0 16px;
        height: 76px;
    }

    .btn-login-premium {
        padding: 7px 12px;
        font-size: 13px;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 118px;
        padding-bottom: 44px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-visual {
        width: 100%;
        min-height: 300px;
    }

    .hero-character {
        width: min(680px, 110%);
        animation-name: robot-idle-tablet;
    }

    @keyframes robot-idle-tablet {
        0%, 100% {
            transform: translateX(20px) translateY(0) rotate(0deg);
        }
        50% {
            transform: translateX(20px) translateY(-10px) rotate(0.6deg);
        }
    }

    .reviews-section {
        width: 94%;
        margin: 0 auto;
        padding-top: 44px;
    }

    .customers-strip {
        min-height: 280px;
    }

    .customers-list {
        gap: 12px;
    }

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

@media (max-width: 768px) {
    .premium-navbar {
        width: 96%;
        height: 72px;
        padding: 0 14px;
    }

    .logo-text {
        font-size: 15px;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
    }

    .brand-wordmark {
        width: 150px;
        height: 42px;
    }

    .nav-links-center {
        gap: 10px;
    }

    .nav-item {
        font-size: 12px;
    }

    .customers-content {
        width: min(94%, 680px);
        padding: 48px 0 52px;
    }

    .customers-list span {
        min-height: 36px;
        padding: 0 13px;
        font-size: 13px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .btn-login-premium {
        display: none;
    }

    .cart-trigger {
        width: 26px;
        height: 34px;
    }

    .cart-panel {
        right: -8px;
        width: min(330px, calc(100vw - 18px));
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .legal-main {
        width: 100%;
        padding-top: 116px;
        padding-bottom: 48px;
    }

    .legal-hero {
        margin-bottom: 34px;
        padding: 34px 18px 46px;
    }

    .legal-hero h1 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .legal-card {
        border-radius: 18px;
    }

    .hero-proof,
    .hero-action-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-action-line {
        max-width: 100%;
    }

    .hero-cta {
        flex-wrap: wrap;
    }

    .reviews-header p {
        font-size: 14px;
    }

    .review-cards {
        animation-duration: 44s;
    }

    .review-card {
        width: 280px;
        min-height: 212px;
    }

    .review-top h3 {
        font-size: 16px;
    }

    .review-top span {
        font-size: 11px;
    }

    .review-card p {
        font-size: 12px;
    }

    .team-header p {
        font-size: 14px;
    }

    .team-top h3 {
        font-size: 16px;
    }
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 10;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 225, 180, 0.16);
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.7) 0%, rgba(4, 5, 10, 0.98) 100%);
}

.footer-main {
    width: min(1320px, 94%);
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 24px 36px;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(520px, 3fr);
    gap: 36px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 16px rgba(255, 225, 180, 0.16));
}

.footer-wordmark {
    width: 210px;
    height: 52px;
    object-fit: cover;
    object-position: center;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 340px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(115px, 1fr));
    gap: 24px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
    position: relative;
}

.footer-nav-col h4::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--main-color, #ffd700);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-nav-col a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
    padding: 2px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav-col a:hover {
    color: #ffe082;
    transform: translateX(4px);
}

.footer-social-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-social-row h4 {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
    color: var(--main-color);
    background: rgba(255, 225, 180, 0.12);
    transform: translateY(-2px);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 6px;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
}

.legal-main {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 128px 0 72px;
}

.legal-hero {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0 0 56px;
    padding: 48px max(18px, calc((100vw - 780px) / 2)) 66px;
    isolation: isolate;
    overflow: hidden;
}

.legal-hero::before {
    content: none;
}

.legal-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: -1;
    width: min(940px, 90vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 225, 180, 0.18), transparent);
    opacity: 0.8;
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 225, 180, 0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.legal-hero h1 {
    color: #fff;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.6;
}

.legal-card {
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 22px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004) 38%, rgba(8, 8, 10, 0.08)),
        rgba(8, 8, 10, 0.08);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.045);
    padding: clamp(24px, 4vw, 48px);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.legal-card section + section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-card h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(22px, 2.3vw, 28px);
    line-height: 1.22;
}

.legal-card p,
.legal-card li {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.75;
}

.legal-card strong {
    color: rgba(255, 255, 255, 0.88);
}

.legal-card ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding-left: 20px;
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.legal-info-grid span {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.62);
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
}

.legal-note {
    margin-top: 26px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 225, 180, 0.18);
    background: rgba(255, 225, 180, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

.legal-company-info {
    margin-top: 22px;
    display: grid;
    gap: 9px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 14px;
    font-style: italic;
    line-height: 1.45;
}

.cookie-consent {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 225, 180, 0.22);
    background: rgba(8, 8, 10, 0.92);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-consent p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
}

.cookie-consent a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 700;
}

.cookie-consent button {
    border: none;
    border-radius: 999px;
    background: var(--main-color);
    color: #17120b;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 16px;
    cursor: pointer;
}

.legal-back {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.legal-card {
    width: min(1240px, 94%);
    margin: 0 auto;
}

.footer-bottom-bar {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.bottom-center {
    text-align: center;
}

.bottom-right {
    justify-self: end;
    display: flex;
    gap: 14px;
}

.bottom-right a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.bottom-right a:hover {
    color: var(--main-color);
}

/* Packages Page */
.packages-page main {
    padding-top: 120px;
}

.packages-hero {
    position: relative;
    padding: 32px 0 18px;
    width: min(1200px, 92%);
    margin: 0 auto;
}

.packages-hero::before {
    content: none;
}

.packages-header {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.packages-header h1 {
    font-size: clamp(30px, 4vw, 52px);
    letter-spacing: 0;
    color: var(--main-color);
}

.packages-header h1 span {
    color: #fff;
}

.packages-header p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.packages-search {
    margin-top: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.packages-search i {
    color: rgba(255, 255, 255, 0.55);
}

.packages-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.packages-search input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.packages-tags {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.pkg-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.pkg-tag.active,
.pkg-tag:hover {
    color: #0a0a0a;
    background: var(--main-color);
}

.products-grid {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 18px 0 70px;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 18px;
}

.product-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(14, 14, 16, 0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-products .product-card.is-visible {
    animation: cardFadeIn 0.35s ease;
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 16px 14px 14px;
}

.product-content h3 {
    font-size: 16px;
    line-height: 1.35;
}

.product-content p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    min-height: 50px;
}

.product-meta {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 4px 8px;
}

.product-price {
    margin-top: 14px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price strong {
    font-size: 30px;
    color: #fff;
    line-height: 1;
    font-weight: 650;
    letter-spacing: 0.3px;
}

.product-price del {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 1;
}

.product-price b {
    font-size: 14px;
    background: var(--main-color);
    color: #17120b;
    border-radius: 6px;
    padding: 4px 8px;
    line-height: 1;
    font-weight: 700;
}

.product-btn {
    position: relative;
    overflow: hidden;
    margin-top: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: #ffffff;
    color: #0a0a0a;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.product-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: left 0.8s ease;
}

.product-btn:hover {
    background: var(--main-color);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 225, 180, 0.28);
}

.product-btn:hover::after {
    left: 120%;
}

/* Checkout Flow */
.checkout-view {
    width: min(1110px, 90%);
    margin: 0 auto 88px;
}

.checkout-head {
    margin-bottom: 36px;
}

.checkout-step-label {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 6px;
}

.checkout-head h1 {
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.15;
    color: #fff;
    letter-spacing: 0;
}

.checkout-head p:not(.checkout-step-label) {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 40px;
    align-items: start;
}

.checkout-card,
.checkout-summary {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(18, 18, 18, 0.92);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.checkout-form {
    padding: 38px 40px 40px;
}

.checkout-field {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.checkout-field small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 400;
}

.checkout-field input {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    background: rgba(8, 9, 9, 0.74);
    color: #fff;
    outline: none;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 700;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.checkout-field input::placeholder {
    color: rgba(185, 202, 213, 0.72);
}

.checkout-field input:focus {
    border-color: rgba(255, 225, 180, 0.46);
    box-shadow: 0 0 0 3px rgba(255, 225, 180, 0.08);
}

.checkout-coupon > div {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 10px;
}

.checkout-coupon button,
.checkout-primary,
.checkout-secondary,
.checkout-method-btn {
    border: 1px solid rgba(255, 225, 180, 0.34);
    border-radius: 18px;
    height: 50px;
    padding: 0 22px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.checkout-coupon button {
    background: rgba(255, 225, 180, 0.08);
    color: #fff;
    border-radius: 12px;
}

.checkout-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.6;
}

.checkout-check input {
    appearance: none;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 5px;
    border: 2px solid rgba(255, 225, 180, 0.36);
    background: rgba(255, 255, 255, 0.03);
    margin-top: 2px;
    cursor: pointer;
}

.checkout-check input:checked {
    background: var(--main-color);
    box-shadow: inset 0 0 0 5px #15110b;
}

.checkout-check a {
    color: var(--main-color);
}

.checkout-actions {
    display: flex;
    gap: 14px;
    margin-top: 26px;
}

.checkout-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    min-width: 120px;
}

.checkout-primary,
.checkout-method-btn {
    background: var(--main-color);
    color: #18100a;
    border-color: transparent;
}

.checkout-primary {
    min-width: 170px;
}

.checkout-coupon button:hover,
.checkout-primary:hover,
.checkout-secondary:hover,
.checkout-method-btn:hover {
    transform: translateY(-1px);
    border-color: var(--main-color);
}

.checkout-summary {
    padding: 28px 30px;
}

.checkout-summary h2 {
    font-size: 22px;
    margin-bottom: 14px;
}

.checkout-summary-list {
    display: grid;
    gap: 9px;
}

.checkout-summary-list div,
.checkout-price-lines div,
.checkout-total {
    display: flex;
    justify-content: space-between;
    gap: 22px;
}

.checkout-summary-list dt,
.checkout-price-lines span {
    color: rgba(210, 223, 231, 0.86);
}

.checkout-summary-list dd,
.checkout-price-lines strong {
    color: #fff;
    font-weight: 800;
    text-align: right;
}

.checkout-price-lines {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-total {
    align-items: baseline;
    margin-top: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.checkout-total strong {
    color: var(--main-color);
    font-size: 32px;
}

.checkout-methods {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.checkout-method {
    min-height: 272px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    padding: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.checkout-method > span {
    width: 100%;
    border: 1px solid rgba(255, 225, 180, 0.46);
    border-radius: 999px;
    padding: 3px 12px;
    color: var(--main-color);
    font-size: 11px;
    font-weight: 900;
}

.checkout-method h2 {
    margin-top: 14px;
    font-size: 20px;
}

.checkout-method p {
    margin-top: 10px;
    color: rgba(230, 238, 245, 0.86);
    line-height: 1.55;
    font-size: 14px;
}

.checkout-method-btn {
    width: 100%;
    margin-top: auto;
}

.checkout-note {
    grid-column: 1 / -1;
    border-left: 2px solid rgba(255, 225, 180, 0.36);
    padding-left: 12px;
    color: rgba(218, 232, 240, 0.82);
    font-size: 13px;
    line-height: 1.55;
}

.checkout-methods > .checkout-secondary {
    width: max-content;
}

.checkout-success-view {
    width: min(640px, 90%);
    min-height: calc(100vh - 150px);
    margin: 34px auto 80px;
    display: grid;
    place-items: center;
}

.checkout-success-view[hidden] {
    display: none;
}

.checkout-success-card {
    width: 100%;
    border: 1px solid rgba(255, 225, 180, 0.18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 225, 180, 0.08), transparent 36%),
        rgba(14, 14, 16, 0.97);
    padding: 40px;
    text-align: center;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.44);
}

.checkout-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 2px solid #35d978;
    color: #35d978;
    display: grid;
    place-items: center;
    font-size: 38px;
}

.checkout-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(53, 217, 120, 0.14);
    border: 1px solid rgba(53, 217, 120, 0.25);
    color: #35d978;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.checkout-success-card h1 {
    margin-top: 18px;
    font-size: clamp(30px, 4vw, 38px);
}

.checkout-success-card > p {
    margin: 12px auto 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.checkout-success-rows {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.checkout-success-rows div {
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 0 16px;
}

.checkout-success-rows span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 800;
}

.checkout-success-rows strong {
    color: #fff;
}

.checkout-success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.checkout-success-actions a {
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

.checkout-whatsapp {
    background: #25d366;
    color: #fff;
}

.checkout-discord {
    background: rgba(255, 225, 180, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 225, 180, 0.24);
}

.checkout-home {
    background: var(--main-color);
    color: #17120b;
}

.checkout-support {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.checkout-success-note {
    font-size: 13px;
}

/* Product Detail View */
.product-detail-view {
    width: min(1200px, 92%);
    margin: 0 auto 80px;
}

.detail-back {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin-bottom: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
}

.detail-gallery,
.detail-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(14, 14, 16, 0.96);
    padding: 12px;
}

.detail-main-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.detail-thumbs {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.detail-thumbs img {
    width: 100%;
    height: 62px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
    opacity: 0.78;
}

.detail-thumbs img.active {
    opacity: 1;
    border-color: var(--main-color);
}

.detail-panel h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.detail-tags span {
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 4px 8px;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.detail-price strong {
    font-size: 44px;
    font-weight: 650;
}

.detail-price del {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.detail-price b {
    font-size: 14px;
    background: var(--main-color);
    color: #17120b;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 700;
}

.detail-cart-btn {
    margin-top: 0;
}

.detail-notes {
    margin-top: 12px;
    margin-bottom: 12px;
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.detail-notes span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.detail-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
}

.detail-item summary {
    list-style: none;
    padding: 12px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

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

.detail-item p {
    margin: 0;
    padding: 0 12px 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: none;
    will-change: max-height, opacity;
}

/* Team Section */
.team-section {
    width: min(1320px, 95%);
    margin: 8px auto 0;
    padding: 42px 0 10px;
}

.team-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 22px;
}

.team-header h2 {
    font-size: clamp(30px, 3.6vw, 46px);
}

.team-header h2 span {
    color: var(--main-color);
}

.team-header p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.team-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.team-card {
    position: relative;
    padding: 20px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 32%, rgba(8, 10, 16, 0.88) 100%),
        rgba(12, 14, 20, 0.94);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 225, 180, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 225, 180, 0.4);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(255, 225, 180, 0.16);
}

.team-card:hover::before {
    left: 100%;
}

.team-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.team-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #17120b;
    background: linear-gradient(135deg, #f6d18b, #d3b07e);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.32), 0 0 10px rgba(255, 225, 180, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.08) rotate(-4deg);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.team-top h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.team-card:hover .team-top h3 {
    color: var(--main-color);
}

.team-top span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.team-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 0;
}

.team-meta {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 225, 180, 0.2);
    border-radius: 999px;
    background: rgba(255, 225, 180, 0.05);
    padding: 5px 12px;
    transition: all 0.2s ease;
}

.team-card:hover .team-meta span {
    background: rgba(255, 225, 180, 0.12);
    color: var(--main-color);
    border-color: var(--main-color);
}

.team-meta i {
    color: var(--main-color);
}

/* FAQ Section */
.faq-section {
    position: relative;
    margin: 10px auto 0;
    width: min(1320px, 95%);
    padding: 44px 0 14px;
    overflow: hidden;
}

.faq-section::before {
    content: none;
}

.faq-glow {
    display: none;
}

.faq-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 26px;
}

.faq-header h2 {
    font-size: clamp(31px, 3.8vw, 48px);
}

.faq-header h2 span {
    color: var(--main-color);
}

.faq-header p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.faq-search {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.faq-search i {
    color: rgba(255, 255, 255, 0.58);
}

.faq-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    width: 100%;
}

.faq-search input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

#faqCount {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    white-space: nowrap;
}

.faq-layout {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 18px;
}

.faq-list {
    max-height: 430px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 225, 180, 0.65) rgba(255, 255, 255, 0.08);
}

.faq-list::-webkit-scrollbar {
    width: 8px;
}

.faq-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.faq-list::-webkit-scrollbar-thumb {
    background: rgba(255, 225, 180, 0.75);
    border-radius: 10px;
}

.faq-list::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

.faq-list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
}

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

.faq-item summary::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 240ms ease;
}

.faq-item.is-expanded summary::after {
    transform: rotate(180deg);
}

.faq-item summary i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(255, 225, 180, 0.1);
}

.faq-item p {
    padding: 0 16px 0 60px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-item.is-expanded p {
    padding-bottom: 14px;
}

.faq-aside {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(255, 225, 180, 0.22);
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 225, 180, 0.12), transparent 65%),
        linear-gradient(165deg, rgba(20, 24, 36, 0.92), rgba(10, 12, 18, 0.96));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    perspective: 1000px;
}

.faq-aside-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.28) 0%, rgba(255, 190, 80, 0.08) 60%, transparent 80%);
    filter: blur(35px);
    pointer-events: none;
    animation: faqGlowPulse 4s ease-in-out infinite alternate;
}

.faq-aside-logo-box {
    position: relative;
    z-index: 2;
    width: min(240px, 80%);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: faqLogoFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.faq-aside-logo-img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 25px rgba(255, 225, 180, 0.35));
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-aside:hover .faq-aside-logo-img {
    transform: scale(1.08) rotateY(12deg) rotateX(-6deg);
}

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

@keyframes faqGlowPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.admin-panel {
    width: min(1140px, 92%);
    margin: 14px auto 40px;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 8, 12, 0.84);
}

.packages-hero .admin-panel {
    width: 100%;
    margin: 14px 0 0;
    padding: 18px;
}

.pkg-tag-admin {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pkg-tag-admin i {
    font-size: 13px;
}

.admin-panel-header h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.admin-panel-header p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
}

.admin-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.admin-form-section {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.admin-form-section h3 {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 10px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.admin-form textarea,
.admin-form input,
.admin-form select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
}

.admin-file-field {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
}

.admin-file-field:hover {
    border-color: rgba(214, 181, 138, 0.5);
    background: rgba(214, 181, 138, 0.08);
}

.admin-file-title {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.admin-file-field input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.admin-file-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 9px;
    background: linear-gradient(135deg, #f0d7ac, #d3b07e);
    color: #17120b;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.admin-file-status {
    min-width: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-file-field.has-file .admin-file-status {
    color: #f0d7ac;
}

.admin-category-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.admin-category-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    cursor: pointer;
    transition: all 180ms ease;
}

.admin-category-btn:hover {
    border-color: rgba(214, 181, 138, 0.45);
    background: rgba(214, 181, 138, 0.12);
}

.admin-category-btn.active {
    background: linear-gradient(135deg, #f0d7ac, #d3b07e);
    color: #17120b;
    border-color: rgba(255, 255, 255, 0.2);
}

.admin-form .field-name { grid-column: 1 / -1; }
.admin-form .field-description { grid-column: 1 / -1; resize: vertical; min-height: 84px; }
.admin-form .field-image-cover { grid-column: 1 / -1; }
.admin-form .field-image-extra { grid-column: span 6; }
.admin-form .field-category { grid-column: 1 / -1; }
.admin-form .field-price-now { grid-column: 1 / span 6; }
.admin-form .field-price-old { grid-column: 7 / -1; }
.admin-form .field-doc { grid-column: 1 / -1; resize: vertical; min-height: 72px; }
.admin-form .field-tags { grid-column: 1 / -1; }

.admin-form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.admin-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
}

.admin-list {
    display: grid;
    gap: 10px;
}

.admin-package-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.admin-package-item h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.admin-package-item p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.admin-package-actions {
    display: flex;
    gap: 8px;
}

.admin-package-actions .product-btn {
    min-width: 92px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.admin-orders-panel {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-empty {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.admin-orders-list {
    display: grid;
    gap: 12px;
}

.admin-order-item {
    border: 1px solid rgba(255, 225, 180, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    padding: 14px;
}

.admin-order-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-order-top strong {
    color: var(--main-color);
    font-size: 16px;
}

.admin-order-top span {
    border-radius: 999px;
    background: rgba(53, 217, 120, 0.12);
    color: #35d978;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 800;
}

.admin-order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.admin-order-grid div {
    min-width: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.18);
    padding: 9px 10px;
}

.admin-order-grid small {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 4px;
}

.admin-order-grid b {
    display: block;
    color: #fff;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.admin-edit-btn {
    background: linear-gradient(135deg, #f0d7ac, #d3b07e);
    color: #141414;
    border-color: rgba(255, 255, 255, 0.2);
}

.admin-edit-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.admin-delete-btn {
    background: linear-gradient(135deg, #f04f4f, #b72222);
    color: #fff;
    border-color: rgba(255, 110, 110, 0.45);
}

.admin-delete-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.account-panel-shell {
    width: min(1480px, 94%);
    margin: 118px auto 70px;
}

.panel-page [hidden] {
    display: none !important;
}

.panel-locked,
.panel-access-denied {
    min-height: 58vh;
    display: grid;
    place-items: center;
}

.panel-locked > div,
.panel-access-denied > div {
    width: min(520px, 100%);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 225, 180, 0.18);
    background: rgba(10, 12, 18, 0.92);
    text-align: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.panel-locked span,
.panel-access-denied span {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--main-color);
    background: rgba(255, 225, 180, 0.1);
    font-size: 22px;
}

.panel-locked h1,
.panel-access-denied h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.panel-locked p,
.panel-access-denied p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
    margin-bottom: 18px;
}

.setup-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid rgba(145, 86, 255, 0.34);
    background:
        linear-gradient(90deg, rgba(13, 13, 24, 0.94), rgba(61, 23, 92, 0.78), rgba(42, 16, 63, 0.92)),
        rgba(10, 10, 16, 0.9);
    box-shadow: 0 18px 46px rgba(102, 44, 177, 0.2);
}

.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}

.panel-kicker i {
    color: #a46cff;
}

.setup-banner p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    margin-bottom: 12px;
}

.setup-progress {
    width: min(360px, 100%);
    height: 5px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.34);
}

.setup-progress span {
    display: block;
    width: 50%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7c5cff, #b34dff);
}

.panel-glow-button,
.panel-primary-action,
.panel-secondary-action {
    border: 0;
    border-radius: 10px;
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

.panel-glow-button,
.panel-primary-action {
    color: #16110a;
    background: linear-gradient(135deg, #f0d7ac, #d3b07e);
    box-shadow: 0 8px 22px rgba(211, 176, 126, 0.28);
}

.panel-secondary-action {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    margin: 28px 0 24px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 225, 180, 0.14);
    background:
        radial-gradient(circle at 0 0, rgba(255, 225, 180, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.025);
}

.panel-heading-mark {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #15110b;
    background: linear-gradient(135deg, #f0d7ac, #d3b07e);
    box-shadow: 0 10px 24px rgba(211, 176, 126, 0.22);
}

.panel-heading p,
.panel-section-head p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.panel-heading h1 {
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1.1;
    color: #fff;
    background: none;
    padding: 0;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.34);
}

#panelModeBadge {
    margin-left: auto;
    border-radius: 999px;
    padding: 9px 13px;
    color: #111;
    background: var(--main-color);
    font-size: 12px;
    font-weight: 900;
}

#panelModeBadge.is-staff {
    color: #16110a;
    background: linear-gradient(135deg, #f0d7ac, #d3b07e);
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.panel-stats article,
.panel-activity,
.staff-panel-section {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.panel-stats article {
    min-height: 98px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-stats i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(255, 225, 180, 0.1);
    font-size: 19px;
    flex-shrink: 0;
}

.panel-stats strong {
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.panel-stats span {
    color: rgba(255, 255, 255, 0.46);
    font-weight: 800;
    font-size: 13px;
}

.staff-panel-section,
.panel-activity {
    margin-top: 28px;
    padding: 20px;
}

.panel-package-admin {
    width: 100%;
    margin: 0 0 26px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
}

.panel-package-admin .admin-panel-header h2 {
    font-size: 24px;
}

.panel-package-admin .admin-orders-panel {
    margin-top: 18px;
}

.staff-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.18);
}

.staff-tab {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.staff-tab:hover {
    border-color: rgba(255, 225, 180, 0.32);
    color: #fff;
}

.staff-tab.active {
    color: #17120b;
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, #f0d7ac, #d3b07e);
}

.staff-tab-panel {
    display: none;
}

.staff-tab-panel.active {
    display: block;
}

.panel-section-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 14px;
    margin-bottom: 14px;
}

.panel-section-head h2 {
    font-size: 24px;
}

.panel-section-head > span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 800;
}

.member-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.member-form input,
.member-form textarea,
.member-form select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
    padding: 11px 12px;
    font-size: 14px;
}

.member-form textarea {
    grid-column: span 3;
    resize: vertical;
}

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

.member-list {
    display: grid;
    gap: 10px;
}

.bot-control-dashboard {
    display: grid;
    gap: 20px;
}

.bot-status-banner,
.bot-metric-card,
.bot-action-panel,
.bot-live-tools,
.bot-log-panel,
.bot-selected-panel {
    border-radius: 14px;
    border: 1px solid rgba(255, 225, 180, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 225, 180, 0.08), rgba(255, 255, 255, 0.025) 34%, rgba(8, 8, 8, 0.92) 100%),
        rgba(12, 12, 12, 0.94);
    color: #fff;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bot-status-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 20px;
}

.bot-status-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e33552;
    box-shadow: 0 0 0 8px rgba(227, 53, 82, 0.1);
}

.bot-status-dot.is-online {
    background: #22c55e;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.bot-status-dot.is-waiting {
    background: #f59e0b;
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.12);
}

.bot-status-banner strong {
    display: block;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.96);
}

.bot-status-banner small,
.bot-status-banner time {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

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

.bot-metric-card,
.bot-action-panel,
.bot-log-panel,
.bot-selected-panel {
    padding: 24px;
}

.bot-metric-card h3,
.bot-action-panel h3,
.bot-log-panel h3,
.bot-selected-panel h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 20px;
}

.bot-metric-card h3 i,
.bot-action-panel h3 i,
.bot-log-panel h3 i,
.bot-selected-panel h3 i {
    color: var(--main-color);
}

.bot-metric-card dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.bot-metric-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bot-metric-card dl div:last-child {
    border-bottom: 0;
}

.bot-metric-card dt {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 800;
}

.bot-metric-card dd {
    margin: 0;
    color: var(--main-color);
    font-weight: 900;
}

.bot-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.bot-control-btn {
    position: relative;
    overflow: hidden;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 10px 20px rgba(0, 0, 0, 0.16);
    transform: translateY(0);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.bot-control-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 46%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 520ms ease;
}

.bot-control-btn i,
.bot-control-btn {
    z-index: 0;
}

.bot-control-btn i {
    position: relative;
    transition: transform 220ms ease;
}

.bot-control-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 225, 180, 0.34);
    filter: brightness(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 16px 30px rgba(0, 0, 0, 0.26),
        0 0 18px rgba(255, 225, 180, 0.12);
}

.bot-control-btn:hover::before {
    transform: translateX(120%);
}

.bot-control-btn:hover i {
    transform: scale(1.08) rotate(-8deg);
}

.bot-control-btn:active {
    transform: translateY(0) scale(0.985);
    filter: brightness(0.96);
}

.bot-control-btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.bot-control-btn:disabled::before {
    display: none;
}

.bot-control-btn.is-start { background: linear-gradient(135deg, #24432d, #6fbf72); }
.bot-control-btn.is-restart { background: linear-gradient(135deg, #5b4630, #b6925f); }
.bot-control-btn.is-stop { background: linear-gradient(135deg, #5a2525, #c99063); }
.bot-control-btn.is-cache { background: linear-gradient(135deg, #232323, #756345); }

.bot-live-tools {
    padding: 16px;
    background:
        linear-gradient(145deg, rgba(255, 225, 180, 0.075), rgba(255, 255, 255, 0.02) 40%, rgba(8, 8, 8, 0.92) 100%),
        rgba(10, 10, 10, 0.95);
}

.bot-log-panel pre {
    min-height: 88px;
    max-height: 260px;
    overflow: auto;
    margin: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 225, 180, 0.12);
    background: rgba(4, 4, 4, 0.92);
    color: #35ff5e;
    padding: 20px;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    line-height: 1.7;
    white-space: pre-wrap;
}

.bot-selected-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.bot-selected-grid > span {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.54);
}

.bot-selected-grid article {
    min-height: 74px;
    border-radius: 10px;
    border: 1px solid rgba(255, 225, 180, 0.12);
    background: rgba(255, 225, 180, 0.055);
    padding: 12px;
    display: grid;
    align-content: center;
    gap: 5px;
}

.bot-selected-grid b {
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    font-weight: 900;
}

.bot-selected-grid strong {
    color: #fff;
    font-size: 14px;
    overflow-wrap: anywhere;
}

.bot-manager-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
    gap: 14px;
}

.bot-guild-list,
.bot-detail-panel {
    border-radius: 12px;
    border: 1px solid rgba(255, 225, 180, 0.12);
    background:
        linear-gradient(155deg, rgba(255, 225, 180, 0.06), rgba(255, 255, 255, 0.02) 36%, rgba(0, 0, 0, 0.34) 100%),
        rgba(0, 0, 0, 0.24);
    padding: 12px;
}

.bot-guild-list {
    display: grid;
    gap: 8px;
    align-content: start;
}

.bot-guild-row {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    border: 1px solid rgba(255, 225, 180, 0.16);
    border-radius: 10px;
    background: rgba(255, 225, 180, 0.055);
    color: #fff;
    padding: 10px;
    text-align: left;
    cursor: pointer;
}

.bot-guild-row.active {
    border-color: rgba(255, 225, 180, 0.44);
    background:
        linear-gradient(135deg, rgba(255, 225, 180, 0.18), rgba(155, 134, 102, 0.1)),
        rgba(255, 225, 180, 0.08);
}

.bot-guild-icon,
.bot-detail-head > span {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 225, 180, 0.1);
    border: 1px solid rgba(255, 225, 180, 0.18);
    color: var(--main-color);
}

.bot-guild-icon img,
.bot-detail-head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-guild-row strong,
.bot-detail-head strong {
    display: block;
    color: #fff;
}

.bot-guild-row small,
.bot-detail-head small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.bot-detail-panel {
    display: grid;
    gap: 14px;
    align-content: start;
}

.bot-detail-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
    min-height: 112px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 225, 180, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 225, 180, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(0, 0, 0, 0.18);
}

.bot-detail-head > span {
    width: 50px;
    height: 50px;
}

.bot-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.bot-detail-chips b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 225, 180, 0.14);
    background: rgba(255, 225, 180, 0.07);
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.bot-detail-chips i {
    color: var(--main-color);
}

.member-row,
.activity-row {
    display: grid;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.member-row {
    grid-template-columns: 1fr auto auto;
    padding: 12px;
}

.member-row strong,
.activity-row strong {
    color: #fff;
    display: block;
    margin-bottom: 3px;
}

.member-row span,
.activity-row span,
.activity-row time {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.member-row b {
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(65, 219, 130, 0.13);
    color: #68e89f;
    font-size: 12px;
}

.member-row b.is-passive {
    background: rgba(255, 99, 99, 0.13);
    color: #ff8585;
}

.member-row-actions {
    display: flex;
    gap: 6px;
}

.panel-icon-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.activity-list {
    display: grid;
    gap: 10px;
}

.activity-row {
    grid-template-columns: auto 1fr auto;
    padding: 14px;
}

.activity-row i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: rgba(255, 225, 180, 0.1);
}

.panel-empty {
    padding: 22px;
    text-align: center;
    color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 980px) {
    .setup-banner,
    .panel-heading,
    .panel-section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .panel-stats,
    .bot-metric-grid,
    .bot-selected-grid,
    .bot-action-grid {
        grid-template-columns: 1fr;
    }

    .member-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bot-manager-grid {
        grid-template-columns: 1fr;
    }

    .bot-status-banner {
        grid-template-columns: auto 1fr;
    }

    .bot-status-banner time {
        grid-column: 1 / -1;
    }

    .member-form textarea,
    .member-form-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .account-panel-shell {
        width: min(100% - 24px, 1480px);
        margin-top: 98px;
    }

    .setup-banner,
    .staff-panel-section,
    .panel-activity {
        padding: 16px;
    }

    .member-form,
    .bot-guild-row,
    .bot-detail-head,
    .member-row,
    .activity-row {
        grid-template-columns: 1fr;
    }

    .member-row-actions,
    .member-form-actions {
        width: 100%;
    }

    .panel-primary-action,
    .panel-secondary-action {
        width: 100%;
    }
}

.admin-toast-stack {
    position: fixed;
    top: 86px;
    right: 20px;
    z-index: 1200;
    display: grid;
    gap: 10px;
    width: min(320px, calc(100vw - 24px));
}

.admin-toast {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(165deg, rgba(11, 14, 22, 0.97), rgba(8, 11, 19, 0.97));
    padding: 12px 12px;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-8px);
    animation: toast-in 220ms ease forwards;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.admin-toast.is-success {
    border-color: rgba(118, 219, 159, 0.55);
}

.admin-toast.is-success::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -55%;
    width: 42%;
    height: 140%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: rotate(8deg);
    animation: toast-shine 900ms ease-out 1;
    pointer-events: none;
}

.admin-toast.is-error {
    border-color: rgba(240, 79, 79, 0.58);
}

.admin-toast-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.admin-toast.is-success .admin-toast-icon {
    background: rgba(118, 219, 159, 0.16);
    color: #7ce8a9;
}

.admin-toast.is-error .admin-toast-icon {
    background: rgba(240, 79, 79, 0.2);
    color: #ff7f7f;
}

.admin-toast-body strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.admin-toast-body p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.admin-toast-close {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.56);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-toast-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    background: rgba(2, 4, 8, 0.72);
    backdrop-filter: blur(3px);
    display: grid;
    place-items: center;
    padding: 14px;
}

.admin-confirm-modal {
    width: min(460px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background:
        radial-gradient(circle at 12% -10%, rgba(240, 79, 79, 0.22), transparent 40%),
        linear-gradient(170deg, rgba(16, 22, 34, 0.98), rgba(10, 14, 24, 0.98));
    padding: 18px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
    animation: confirm-pop 180ms ease-out;
}

.admin-confirm-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
}

.admin-confirm-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 79, 79, 0.2);
    color: #ff6f6f;
    border: 1px solid rgba(240, 79, 79, 0.45);
}

.admin-confirm-modal h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.admin-confirm-modal p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.5;
    margin-bottom: 12px;
}

.admin-confirm-note {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 9px 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.admin-confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.admin-confirm-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
}

.admin-confirm-cancel {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.admin-confirm-accept {
    background: linear-gradient(135deg, #f04f4f, #b72222);
    color: #fff;
    border-color: rgba(255, 110, 110, 0.5);
}

.admin-confirm-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.iban-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    padding: 14px;
}

.iban-modal {
    position: relative;
    width: min(620px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(170deg, rgba(18, 18, 22, 0.98), rgba(12, 12, 15, 0.98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
    padding: 26px 28px 28px;
    animation: confirm-pop 180ms ease-out;
}

.iban-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.iban-modal h2 {
    font-size: 24px;
    letter-spacing: 0;
    margin-bottom: 6px;
}

.iban-modal > p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    font-size: 14px;
}

.iban-info-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.iban-info-row {
    min-height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
}

.iban-info-row span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 800;
}

.iban-info-row strong {
    color: #fff;
    font-size: 14px;
    text-align: right;
    overflow-wrap: anywhere;
}

.iban-info-row button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.iban-modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.iban-paid-btn {
    min-width: 180px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: var(--main-color);
    color: #1c130b;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.iban-modal-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

@keyframes toast-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-shine {
    from {
        left: -55%;
    }
    to {
        left: 125%;
    }
}

@keyframes confirm-pop {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 900px) {
    .packages-header p {
        font-size: 14px;
    }

    .packages-search input {
        font-size: 14px;
    }

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

	.detail-layout {
	    grid-template-columns: 1fr;
	}

    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .checkout-form,
    .checkout-methods,
    .checkout-summary {
        padding: 24px;
    }

    .checkout-methods {
        grid-template-columns: 1fr;
    }

    .checkout-coupon > div {
        grid-template-columns: 1fr;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .checkout-success-card {
        padding: 28px 18px;
    }

    .checkout-success-actions {
        grid-template-columns: 1fr;
    }

    .checkout-primary,
    .checkout-secondary {
        width: 100%;
    }

    .checkout-total strong {
        font-size: 28px;
    }

    .iban-modal {
        padding: 22px 18px;
    }

    .iban-info-row {
        grid-template-columns: 1fr auto;
        min-height: 66px;
    }

    .iban-info-row span {
        grid-column: 1 / -1;
        margin-bottom: -10px;
    }

    .iban-info-row strong {
        text-align: left;
    }

	.detail-main-image {
	    height: 250px;
	}

    .detail-panel h2 {
        font-size: 24px;
    }

    .faq-section {
        width: 94%;
        margin: 8px auto 0;
    }

    .team-section {
        width: 94%;
    }

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

    .faq-header p {
        font-size: 15px;
    }

    .faq-search input {
        font-size: 15px;
    }

    #faqCount {
        font-size: 13px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-aside {
        min-height: 220px;
    }

    .faq-aside-mark {
        font-size: 120px;
    }

    .faq-item summary {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .admin-category-picker {
        grid-template-columns: 1fr;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-form .field-name,
    .admin-form .field-description,
    .admin-form .field-image-cover,
    .admin-form .field-image-extra,
    .admin-form .field-category,
    .admin-form .field-price-now,
    .admin-form .field-price-old,
    .admin-form .field-doc,
    .admin-form .field-tags {
        grid-column: 1 / -1;
    }

    .admin-form-actions {
        justify-content: stretch;
    }

    .admin-form-actions .product-btn {
        flex: 1;
    }

    .admin-package-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-order-grid {
        grid-template-columns: 1fr;
    }

    .pkg-tag-admin {
        margin-left: 0;
    }

    .footer-social-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .legal-info-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent {
        grid-template-columns: 1fr;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .footer-bottom-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bottom-center,
    .bottom-right {
        justify-self: center;
    }
}

/* Device fit refinements */
@media (max-width: 980px) {
    .premium-navbar {
        width: min(94%, 860px);
        height: auto;
        min-height: 68px;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        padding: 10px 14px;
    }

    .brand-wordmark {
        width: 160px;
        height: 42px;
    }

    .nav-links-center {
        justify-content: center;
        gap: 14px;
        min-width: 0;
        overflow: hidden;
    }

    .nav-item {
        font-size: 12px;
    }

    .social-icons {
        gap: 8px;
    }

    .hero {
        width: min(92%, 760px);
        gap: 22px;
        padding-top: 112px;
    }

    .hero h1 {
        font-size: clamp(38px, 8vw, 58px);
    }

    .hero p {
        max-width: 100%;
        font-size: 14px;
    }

    .hero-visual {
        min-height: 260px;
        justify-content: center;
    }

    .hero-character {
        width: min(560px, 100%);
        transform: translateX(0);
    }

    @keyframes robot-idle-tablet {
        0%, 100% {
            transform: translateX(0) translateY(0) rotate(0deg);
        }
        50% {
            transform: translateX(0) translateY(-8px) rotate(0.5deg);
        }
    }

    .reviews-section,
    .team-section,
    .faq-section {
        width: min(92%, 760px);
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .faq-aside {
        display: none;
    }
}

@media (max-width: 720px) {
    .premium-navbar {
        top: 8px;
        width: calc(100% - 18px);
        grid-template-columns: auto 1fr auto;
        border-radius: 12px;
    }

    .brand-wordmark {
        width: 132px;
        height: 36px;
    }

    .nav-links-center {
        justify-content: flex-end;
        gap: 10px;
    }

    .nav-links-center .nav-item:nth-child(2),
    .nav-links-center .nav-item:nth-child(4) {
        display: none;
    }

    .social-icons a:not([aria-label="Discord"]) {
        display: none;
    }

    .social-icons a,
    .cart-trigger {
        width: 32px;
        height: 32px;
    }

    .hero {
        width: min(92%, 560px);
        padding-top: 106px;
        padding-bottom: 32px;
        gap: 16px;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero-proof {
        margin-top: 24px;
        gap: 12px;
    }

    .hero-action-line {
        margin-top: 24px;
        padding-top: 22px;
        gap: 12px;
    }

    .hero-action-icon {
        width: 46px;
        height: 46px;
    }

    .hero-visual {
        min-height: 210px;
    }

    .hero-character {
        width: min(420px, 105%);
    }

    .reviews-header h2,
    .customers-content h2,
    .team-header h2,
    .faq-header h2 {
        font-size: clamp(25px, 8vw, 34px);
    }

    .review-marquee {
        mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
    }

    .review-card {
        width: min(260px, 78vw);
        min-height: 196px;
    }

    .customers-strip {
        min-height: 230px;
    }

    .customers-content {
        padding: 40px 0 44px;
    }

    .customers-ghost {
        font-size: clamp(48px, 15vw, 92px);
    }

    .customers-list {
        gap: 9px;
    }

    .customers-list span {
        min-height: 32px;
        padding: 0 11px;
        font-size: 12px;
    }

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

    .team-card {
        padding: 14px;
    }

    .faq-search {
        padding: 10px 12px;
        border-radius: 14px;
    }

    .faq-layout {
        padding: 12px;
        gap: 12px;
    }

    .faq-list {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .faq-item summary {
        align-items: flex-start;
        gap: 10px;
        padding: 13px 12px;
        font-size: 13px;
        line-height: 1.35;
    }

    .faq-item summary i {
        width: 28px;
        height: 28px;
        flex: 0 0 auto;
    }

    .faq-item p {
        padding-left: 50px;
        padding-right: 12px;
        font-size: 13px;
    }

    .site-footer {
        margin-top: 44px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 30px 18px 18px;
    }
}

@media (max-width: 420px) {
    .premium-navbar {
        min-height: 62px;
        padding: 8px 10px;
        gap: 8px;
    }

    .brand-wordmark {
        width: 112px;
        height: 32px;
    }

    .nav-links-center {
        gap: 8px;
    }

    .nav-item {
        font-size: 11px;
    }

    .hero {
        width: calc(100% - 28px);
        padding-top: 94px;
    }

    .hero h1 {
        font-size: clamp(31px, 12vw, 42px);
    }

    .hero-proof {
        align-items: flex-start;
    }

    .hero-avatars span {
        width: 34px;
        height: 34px;
    }

    .hero-action-line {
        flex-direction: row;
        align-items: flex-start;
    }

    .hero-visual {
        min-height: 170px;
    }

    .hero-character {
        width: min(340px, 108%);
    }

    .reviews-section,
    .team-section,
    .faq-section {
        width: calc(100% - 28px);
        padding-top: 34px;
    }

    .review-card {
        width: 238px;
    }

    .review-meta {
        grid-template-columns: 1fr;
    }

    .faq-search {
        gap: 8px;
    }

    #faqCount {
        display: none;
    }

    .faq-item p {
        padding-left: 12px;
    }
}

/* =========================================================
   3D INTERACTIVE HERO & PARALLAX STYLES
   ========================================================= */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    overflow: visible;
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.hero-character {
    position: relative;
    z-index: 2;
    width: min(540px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(255, 225, 180, 0.28));
    animation: robot-idle 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transform: translateZ(20px);
}

/* 3D Floating HUD Badges around Hero Robot */
.hero-hud-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 14px;
    background: rgba(12, 15, 24, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 225, 180, 0.28);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.5),
        0 0 18px rgba(255, 225, 180, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.hero-hud-badge:hover {
    border-color: var(--main-color);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 225, 180, 0.28);
}

.hero-hud-badge i {
    font-size: 15px;
    color: var(--main-color);
}

.hud-badge-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hud-badge-info strong {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #fff;
    line-height: 1.2;
}

.hud-badge-info span {
    font-size: 9.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.hud-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-green {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: botPulse 1.6s infinite alternate;
}

.dot-cyan {
    background: #00e5ff;
    box-shadow: 0 0 10px #00e5ff;
    animation: botPulse 1.8s infinite alternate-reverse;
}

.dot-gold {
    background: #ffd700;
    box-shadow: 0 0 10px #ffd700;
    animation: botPulse 2s infinite alternate;
}

/* Positions around the Robot */
.hud-badge-uptime {
    top: 12%;
    left: -15px;
    transform: translateZ(50px);
}

.hud-badge-ping {
    top: 8%;
    right: 15px;
    transform: translateZ(65px);
}

.hud-badge-guard {
    bottom: 16%;
    left: -10px;
    transform: translateZ(45px);
}

.hero-bot-badge {
    position: absolute;
    bottom: 8%;
    right: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(13, 15, 26, 0.88);
    border: 1px solid rgba(255, 225, 180, 0.35);
    color: var(--main-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 225, 180, 0.2);
    transform: translateZ(70px);
}

.bot-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px #00ff88;
    animation: botPulse 1.8s infinite alternate;
}

@keyframes botPulse {
    from { opacity: 0.5; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 900px) {
    .hud-badge-uptime,
    .hud-badge-guard {
        left: 5px;
    }
    .hud-badge-ping,
    .hero-bot-badge {
        right: 5px;
    }
}

@media (max-width: 600px) {
    .hud-badge-uptime,
    .hud-badge-ping {
        display: none;
    }
    .hero-bot-badge {
        bottom: 5px;
        right: 10px;
    }
    .hud-badge-guard {
        bottom: 5px;
        left: 10px;
    }
}

.card, .review-card, .package-card {
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    transform-style: preserve-3d;
}

/* =========================================================
   ANIMATED GOLDEN AMBIENT LIGHTING SYSTEM
   ========================================================= */
.golden-ambient-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.golden-light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.32;
    pointer-events: none;
    will-change: transform, opacity;
}

.golden-orb-1 {
    top: 0%;
    right: 5%;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(255, 225, 180, 0.42) 0%, rgba(246, 209, 139, 0.22) 45%, transparent 75%);
    animation: goldenDrift1 14s ease-in-out infinite alternate;
}

.golden-orb-2 {
    top: 45%;
    left: -8%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(255, 215, 150, 0.35) 0%, rgba(211, 176, 126, 0.16) 45%, transparent 75%);
    animation: goldenDrift2 18s ease-in-out infinite alternate;
}

.golden-orb-3 {
    bottom: -5%;
    right: 20%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 225, 180, 0.3) 0%, rgba(246, 209, 139, 0.14) 45%, transparent 75%);
    animation: goldenDrift3 16s ease-in-out infinite alternate;
}

.hero-golden-backlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 225, 180, 0.32) 0%, rgba(246, 209, 139, 0.15) 50%, transparent 72%);
    filter: blur(65px);
    pointer-events: none;
    z-index: 1;
    animation: heroGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.28; }
    50% { transform: translate(-48%, -52%) scale(1.1); opacity: 0.48; }
    100% { transform: translate(-52%, -48%) scale(0.96); opacity: 0.32; }
}

@keyframes goldenDrift1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.28; }
    50% { transform: translate(-70px, 90px) scale(1.18); opacity: 0.44; }
    100% { transform: translate(50px, -50px) scale(0.92); opacity: 0.26; }
}

@keyframes goldenDrift2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.25; }
    50% { transform: translate(90px, -70px) scale(1.15); opacity: 0.38; }
    100% { transform: translate(-50px, 80px) scale(0.9); opacity: 0.22; }
}

@keyframes goldenDrift3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.24; }
    50% { transform: translate(-80px, -60px) scale(1.2); opacity: 0.36; }
    100% { transform: translate(60px, 50px) scale(0.88); opacity: 0.2; }
}

/* =========================================================
   RIGHT-SIDE FLOATING DOCK NAVIGATION (VERTICAL PILL DOCK)
   ========================================================= */
.floating-dock-nav {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(20, 25, 40, 0.88) 0%, rgba(10, 13, 22, 0.94) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 225, 180, 0.26);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.7),
        0 0 36px rgba(255, 215, 0, 0.16),
        inset 0 1px 1.5px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(255, 215, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dock-item {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 21px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dock-item:hover {
    color: #ffe082;
    background: rgba(255, 225, 180, 0.14);
    border-color: rgba(255, 225, 180, 0.38);
    box-shadow: 0 0 24px rgba(255, 225, 180, 0.32), inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transform: scale(1.14);
}

.dock-item.active {
    color: #140f06;
    background: linear-gradient(135deg, #ffe082 0%, #ffc107 48%, #e6a100 100%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.06);
    box-shadow:
        0 0 28px rgba(255, 215, 0, 0.65),
        0 8px 20px rgba(0, 0, 0, 0.5),
        inset 0 1.5px 2px rgba(255, 255, 255, 0.75);
}

.dock-item.active i {
    color: #140f06;
}

.dock-divider {
    width: 28px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 225, 180, 0.35), transparent);
    margin: 4px 0;
}

.dock-discord:hover {
    color: #fff;
    background: rgba(88, 101, 242, 0.28);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 0 28px rgba(88, 101, 242, 0.5);
}

/* Floating Dock Tooltips */
.dock-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    padding: 8px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(16, 20, 32, 0.96), rgba(9, 11, 18, 0.98));
    border: 1px solid rgba(255, 225, 180, 0.35);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 225, 180, 0.15);
}

.dock-item::after {
    content: "";
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(255, 225, 180, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.dock-item:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.dock-item:hover::after {
    opacity: 1;
}

@media (max-width: 900px) {
    .floating-dock-nav {
        right: 14px;
        padding: 14px 8px;
        gap: 8px;
    }
    .dock-item {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .floating-dock-nav {
        display: none;
    }
}

/* =========================================================
   3D FLOATING BACKGROUND BRAND EMBLEMS
   ========================================================= */
.bg-3d-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    perspective: 1400px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.bg-3d-logo-wrapper {
    position: absolute;
    transform-style: preserve-3d;
    will-change: transform;
    pointer-events: none;
}

.bg-3d-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 40px rgba(255, 225, 180, 0.35));
}

/* Top-Left 3D Floating Logo */
.logo-floating-left {
    top: 10%;
    left: -20px;
    width: min(460px, 40vw);
    height: min(460px, 40vw);
    opacity: 0.22;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
}

/* =========================================================
   LANGUAGE SWITCHER DROPDOWN (TR / EN / DE)
   ========================================================= */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1000;
}

.btn-lang {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.btn-lang:hover {
    background: rgba(255, 225, 180, 0.12);
    border-color: rgba(255, 225, 180, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 12px rgba(255, 225, 180, 0.15);
}

.btn-lang i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.25s ease;
}

.btn-lang[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.lang-flag {
    font-size: 14px;
    line-height: 1;
}

.lang-code {
    color: var(--main-color);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: rgba(14, 17, 28, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 225, 180, 0.25);
    border-radius: 14px;
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 225, 180, 0.12);
    z-index: 1001;
    animation: langFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown.show {
    display: flex;
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border-radius: 9px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: left;
    width: 100%;
}

.lang-opt:hover {
    background: rgba(255, 225, 180, 0.12);
    color: #fff;
}

.lang-opt.active {
    background: rgba(255, 225, 180, 0.18);
    color: var(--main-color);
    font-weight: 700;
}

.opt-flag {
    font-size: 15px;
    line-height: 1;
}

.opt-name {
    flex: 1;
}

@keyframes langFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================================================
   PREMIUM LUXURY SITE FOOTER
   ========================================================= */
.site-footer {
    position: relative;
    z-index: 10;
    margin-top: 80px;
    background: linear-gradient(180deg, rgba(8, 10, 16, 0.75) 0%, rgba(4, 5, 10, 0.98) 100%);
    border-top: 1px solid rgba(255, 225, 180, 0.16);
    padding: 50px 0 0;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(800px, 90vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 225, 180, 0.6), transparent);
    box-shadow: 0 0 20px rgba(255, 225, 180, 0.5);
}

.footer-main,
.footer-container {
    width: min(1320px, 94%);
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(520px, 3fr);
    gap: 36px;
    align-items: start;
    padding-bottom: 44px;
}

.footer-brand,
.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footer-brand .footer-logo,
.footer-brand-logo {
    display: flex;
    align-items: center;
}

.footer-brand p,
.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 360px;
    margin: 0;
}

.footer-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 225, 180, 0.08);
    border: 1px solid rgba(255, 225, 180, 0.22);
    color: var(--main-color, #ffd700);
    font-size: 11.5px;
    font-weight: 700;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(115px, 1fr));
    gap: 24px;
    align-items: start;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-nav-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 6px;
    position: relative;
}

.footer-nav-col h4::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--main-color, #ffd700);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-nav-col a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 2px 0;
    white-space: nowrap;
}

.footer-nav-col a:hover {
    color: #ffe082;
    transform: translateX(4px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(4, 5, 8, 0.95);
    padding: 20px 0;
}

.footer-bottom-content {
    width: min(1320px, 94%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12.5px;
    margin: 0;
}

@media (max-width: 1100px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .footer-main,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 540px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* PayTR Modal & Checkout Styling */
.paytr-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(4, 5, 8, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: paytrFadeIn 0.25s ease;
}

@keyframes paytrFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.paytr-modal-box {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    background: linear-gradient(170deg, rgba(22, 24, 34, 0.98), rgba(11, 12, 18, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 180, 0, 0.15);
    padding: 24px 20px;
    color: #fff;
}

.paytr-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 16px;
}

.paytr-modal-close:hover {
    background: rgba(255, 75, 75, 0.25);
    border-color: #ff4b4b;
    color: #ff6b6b;
    transform: rotate(90deg);
}

.paytr-modal-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.paytr-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #00d26a;
}

.paytr-pkg-badge {
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #ffd700;
}

.paytr-frame-container {
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paytr-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
}

.paytr-loader i {
    font-size: 32px;
    color: #ffd700;
}

.paytr-error {
    text-align: center;
    padding: 30px 16px;
    color: #ff6b6b;
}

.paytr-error i {
    font-size: 38px;
    margin-bottom: 12px;
}

.paytr-error p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.paytr-error small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* ==========================================================================
   DEDICATED TEAM PAGE STYLES (ekibimiz.html)
   ========================================================================== */
.team-page {
    background-color: #09090b;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.team-page-main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 130px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.team-page-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #00f2fe;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.15);
}

.team-page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

.team-page-hero h1 span {
    background: linear-gradient(135deg, #00f2fe 0%, #38bdf8 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-page-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0;
}

.team-section-title {
    margin-bottom: 24px;
}

.team-section-title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.team-section-title p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.94rem;
    margin: 0;
}

/* Leadership Grid */
.team-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.leadership-card {
    background: rgba(18, 18, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.leadership-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 242, 254, 0.2);
}

.leadership-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.leader-avatar-box {
    position: relative;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}

.leader-aura {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #00f2fe, #818cf8, #0284c7, #00f2fe);
    filter: blur(8px);
    opacity: 0.8;
}

.leader-avatar-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #0d0e12;
    border: 2.5px solid #09090b;
    display: block;
}

.leader-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #23a55a;
    border: 2.5px solid #09090b;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 8px #23a55a;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.leader-name-row h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.leader-badges {
    display: flex;
    align-items: center;
    gap: 6px;
}

.leader-badges span {
    font-size: 0.85rem;
    color: #00f2fe;
}

.leader-role-pill {
    font-size: 0.78rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    display: inline-block;
    width: fit-content;
}

.leader-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.leader-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.leader-meta-tags span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.leader-meta-tags span i {
    color: #00f2fe;
}

.leadership-action {
    margin-top: 4px;
}

.btn-leader-profile {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: #00f2fe;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.btn-leader-profile:hover {
    background: rgba(0, 242, 254, 0.18);
    border-color: #00f2fe;
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
}

/* Metrics Section */
.team-metrics-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.team-metric-box {
    background: rgba(18, 18, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.team-metric-box:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.15);
}

.team-metric-box i {
    font-size: 1.4rem;
    color: #00f2fe;
    margin-bottom: 4px;
}

.team-metric-box strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.team-metric-box span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Join CTA */
.team-join-cta {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(129, 140, 248, 0.08) 100%);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 20px;
    padding: 28px 32px;
    backdrop-filter: blur(16px);
}

.join-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.join-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.join-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #5865f2;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.join-cta-left h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.join-cta-left p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 540px;
}

.btn-join-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865f2;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(88, 101, 242, 0.4);
}

.btn-join-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.6);
}

@media (max-width: 960px) {
    .team-leadership-grid {
        grid-template-columns: 1fr;
    }

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

    .join-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .team-page-main {
        padding: 100px 16px 60px;
        gap: 36px;
    }

    .team-metrics-section {
        grid-template-columns: 1fr;
    }
}

/* Homepage Team Showcase Strip */
.team-showcase-strip {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
}

.team-showcase-box {
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.75) 0%, rgba(0, 242, 254, 0.06) 100%);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.team-showcase-box:hover {
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 242, 254, 0.2);
    transform: translateY(-2px);
}

.team-showcase-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-showcase-avatars {
    display: flex;
    align-items: center;
}

.showcase-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #09090b;
    margin-right: -12px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.showcase-av-more {
    display: grid;
    place-items: center;
    background: #18181b;
    border: 2px solid #09090b;
    color: #00f2fe;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0 10px;
    height: 48px;
    border-radius: 999px;
    white-space: nowrap;
}

.team-showcase-text h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.team-showcase-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.btn-explore-team {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(129, 140, 248, 0.15) 100%);
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: #00f2fe;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.btn-explore-team:hover {
    background: #00f2fe;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .team-showcase-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-explore-team {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}






