@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&display=swap');

/* ============================================================
   CYBERTECH — FULL E-COMMERCE CSS
   ============================================================ */

:root {
    --bg: #04060c;
    --bg-card: rgba(10, 14, 26, 0.85);
    --bg-card-2: rgba(15, 20, 38, 0.7);
    --cyan: #00f0ff;
    --green: #00ff88;
    --yellow: #ffcc00;
    --purple: #9d4edd;
    --red: #ff3c5f;
    --text: #e8eaed;
    --text-dim: #7a8499;
    --border: rgba(0, 240, 255, 0.12);
    --border-hover: rgba(0, 240, 255, 0.4);
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.45);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.45);
    --glow-yellow: 0 0 20px rgba(255, 204, 0, 0.45);
    --glow-purple: 0 0 20px rgba(157, 78, 221, 0.45);
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --r: 10px;
    --r-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

input,
textarea {
    font-family: var(--font-sans);
}

/* ── GRID BG ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* ── UTILITIES ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}

.glow-text-cyan {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.glow-text-green {
    color: var(--green);
    text-shadow: var(--glow-green);
}

.glow-text-yellow {
    color: var(--yellow);
    text-shadow: var(--glow-yellow);
}

.glow-text-purple {
    color: var(--purple);
    text-shadow: var(--glow-purple);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    background: transparent;
    border: 1.5px solid var(--cyan);
    color: var(--cyan);
    border-radius: var(--r);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.75rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: var(--text);
    border-radius: var(--r);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: all .25s ease;
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    box-shadow: var(--glow-green);
}

.btn-block {
    width: 100%;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: .9rem;
}

.btn-submit {
    margin-top: 1.5rem;
    padding: 1.1rem;
    font-size: .95rem;
}

/* ── BADGE ── */
.badge {
    display: inline-block;
    padding: .2rem .6rem;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: var(--font-mono);
}

/* ── SECTION HEADERS ── */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: .75rem;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 600px;
}

/* ======================================================
   NAVIGATION
====================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 1.25rem 0;
    background: rgba(4, 6, 12, .9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding .3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    user-select: none;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: .05em;
}

nav ul li a:hover {
    color: var(--cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stock-live-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem .75rem;
    background: rgba(0, 255, 136, .08);
    border: 1px solid rgba(0, 255, 136, .3);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: .65rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-anim 1.5s ease infinite;
}

@keyframes pulse-anim {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

.cart-btn {
    position: relative;
    background: rgba(0, 240, 255, .08);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--cyan);
    padding: .6rem .8rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: all .2s;
}

.cart-btn:hover {
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--red);
    color: white;
    font-size: .65rem;
    font-weight: 800;
    font-family: var(--font-mono);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all .25s cubic-bezier(.68, -.55, .27, 1.55);
}

.cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: .4rem;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s;
}

/* ======================================================
   HERO
====================================================== */
.hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-fx::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 240, 255, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg-fx::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, .06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--cyan);
}

.hero-text-area h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-label {
    font-size: .7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Terminal */
.hero-terminal {
    min-height: 380px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.dots {
    display: flex;
    gap: .4rem;
}

.dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--text-dim);
}

.terminal-body {
    font-family: var(--font-mono);
    font-size: .82rem;
    line-height: 1.9;
    padding: 1.25rem;
    flex: 1;
    overflow: hidden;
}

.t-green {
    color: var(--green);
}

.t-yellow {
    color: var(--yellow);
}

.cursor {
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .6rem;
    color: var(--text-dim);
    letter-spacing: .2em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

/* ======================================================
   FILTER BAR
====================================================== */
.filter-bar {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: .45rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: all .2s;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 240, 255, .07);
}

/* ======================================================
   PRODUCT GRID
====================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    padding: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 240, 255, .1);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: rgba(0, 0, 0, .3);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-status-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    padding: .2rem .55rem;
    border-radius: 4px;
    font-size: .58rem;
    font-weight: 800;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.badge-available {
    background: rgba(0, 255, 136, .15);
    color: var(--green);
    border: 1px solid rgba(0, 255, 136, .4);
}

.badge-preorder {
    background: rgba(255, 204, 0, .12);
    color: var(--yellow);
    border: 1px solid rgba(255, 204, 0, .4);
}

.btn-inbox {
    background: rgba(0, 240, 255, .08);
    color: var(--cyan);
    border: 1px solid rgba(0, 240, 255, .3);
}

.product-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-family: var(--font-mono);
    font-size: .6rem;
    color: var(--cyan);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .5rem;
}

.product-card p {
    font-size: .82rem;
    color: var(--text-dim);
    flex: 1;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.price {
    font-family: var(--font-mono);
    font-weight: 800;
    color: var(--cyan);
    font-size: 1.05rem;
    letter-spacing: -.02em;
}

.price-large {
    font-family: var(--font-mono);
    font-weight: 800;
    color: var(--cyan);
    font-size: 1.8rem;
    letter-spacing: -.03em;
}

.add-cart-btn {
    padding: .5rem 1rem;
    background: rgba(0, 240, 255, .08);
    border: 1px solid rgba(0, 240, 255, .3);
    color: var(--cyan);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .2s;
}

.add-cart-btn:hover {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: var(--glow-cyan);
}

.add-cart-btn.added {
    background: var(--green);
    color: var(--bg);
    border-color: var(--green);
}

/* ======================================================
   PRE-ORDER SECTION
====================================================== */
.preorder-section {
    background: rgba(255, 204, 0, .015);
}

.preorder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.preorder-card {
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1px solid rgba(255, 204, 0, 0.25);
    background: rgba(10, 14, 26, .9);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all .3s ease;
}

.preorder-card:hover {
    border-color: rgba(255, 204, 0, .6);
    box-shadow: 0 0 40px rgba(255, 204, 0, .08);
    transform: translateY(-4px);
}

.preorder-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: var(--r);
    flex-shrink: 0;
    border: 1px solid rgba(255, 204, 0, .2);
}

.preorder-details {
    flex: 1;
}

.preorder-label {
    display: inline-block;
    padding: .15rem .5rem;
    background: rgba(255, 204, 0, .12);
    color: var(--yellow);
    border: 1px solid rgba(255, 204, 0, .4);
    border-radius: 4px;
    font-size: .58rem;
    font-weight: 800;
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.preorder-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.preorder-card p {
    font-size: .8rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.preorder-price {
    color: var(--yellow);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 800;
}

.preorder-card .btn-primary {
    border-color: var(--yellow);
    color: var(--yellow);
    margin-top: .75rem;
    width: 100%;
    justify-content: center;
}

.preorder-card .btn-primary:hover {
    background: var(--yellow);
    color: var(--bg);
    box-shadow: var(--glow-yellow);
}

.preorder-card .btn-primary::before {
    background: var(--yellow);
}

/* ======================================================
   HOW IT WORKS
====================================================== */
.how-section {
    background: rgba(0, 240, 255, .015);
}

.steps-grid {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s ease;
}

.step-card:hover {
    border-color: rgba(0, 240, 255, .4);
    transform: translateY(-4px);
}

.step-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: .85rem;
    font-family: var(--font-mono);
    letter-spacing: .05em;
    margin-bottom: .75rem;
}

.step-card p {
    font-size: .82rem;
    color: var(--text-dim);
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

/* ======================================================
   POLICY
====================================================== */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.policy-card {
    padding: 2rem;
    text-align: center;
    transition: all .3s ease;
}

.policy-card:hover {
    border-color: rgba(157, 78, 221, .5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(157, 78, 221, .08);
}

.policy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-card h3 {
    font-family: var(--font-mono);
    font-size: .8rem;
    letter-spacing: .05em;
    margin-bottom: 1rem;
}

.policy-card p {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.policy-card strong {
    color: var(--text);
}

/* ======================================================
   CONTACT
====================================================== */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3.5rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--r);
    transition: all .2s;
    border-color: var(--border);
}

.contact-link:hover {
    border-color: var(--cyan);
    transform: translateX(4px);
}

.contact-link-icon {
    font-size: 1.5rem;
}

.contact-link strong {
    display: block;
    font-size: .9rem;
}

.contact-link span {
    font-size: .8rem;
    color: var(--text-dim);
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-box h3 {
    font-family: var(--font-mono);
    font-size: .9rem;
    letter-spacing: .05em;
    margin-bottom: .25rem;
}

.newsletter-box p {
    font-size: .85rem;
    color: var(--text-dim);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.newsletter-form input,
.newsletter-form textarea {
    padding: .85rem 1.1rem;
}

/* ======================================================
   FOOTER
====================================================== */
.footer-main {
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    background: rgba(4, 6, 12, .98);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: .75rem;
}

.footer-brand p {
    font-size: .8rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links ul li {
    margin-bottom: .6rem;
}

.footer-links ul li a {
    font-size: .85rem;
    color: var(--text-dim);
}

.footer-links ul li a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    font-size: .78rem;
    color: var(--text-dim);
}

.footer-disclaimer {
    margin-top: .4rem;
    opacity: .6;
}

/* ======================================================
   FORM INPUTS
====================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--text);
    padding: .85rem 1.1rem;
    font-size: .9rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, .1);
}

textarea {
    resize: vertical;
    min-height: 90px;
}

label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: .4rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ======================================================
   CART SIDEBAR
====================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    border-right: none;
    border-top: none;
    border-bottom: none;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-header h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
}

.cart-close-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    transition: all .2s;
}

.cart-close-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-items::-webkit-scrollbar {
    width: 4px;
}

.cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.cart-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: .25rem;
}

.cart-empty span {
    font-size: .8rem;
    color: var(--text-dim);
    opacity: .6;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: .85rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: .6rem;
    background: rgba(255, 255, 255, .02);
    animation: slideIn .25s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--cyan);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.qty-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.qty-display {
    font-family: var(--font-mono);
    font-size: .8rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1rem;
    padding: .2rem;
    transition: color .15s;
}

.remove-btn:hover {
    color: var(--red);
}

.cart-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cart-note {
    margin-bottom: 1.25rem;
}

.cart-note p {
    font-size: .75rem;
    color: var(--text-dim);
    margin-bottom: .25rem;
}

.cart-note strong {
    color: var(--yellow);
}

/* ======================================================
   PRODUCT MODAL
====================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.product-modal {
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: var(--r-lg);
    animation: modalIn .3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    transition: all .2s;
}

.modal-close-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.product-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
}

.modal-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg) 0 0 var(--r-lg);
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, .3);
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-status-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-info #modal-category {
    width: fit-content;
}

.modal-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.modal-desc {
    font-size: .88rem;
    color: var(--text-dim);
}

.modal-info .specs-grid {
    background: rgba(0, 0, 0, .25);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: .75rem;
    font-family: var(--font-mono);
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: var(--cyan);
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.spec-val {
    color: var(--text-dim);
    text-align: right;
}

.modal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.modal-actions {
    display: flex;
    gap: .75rem;
}

/* ======================================================
   ORDER MODAL
====================================================== */
.order-modal {
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    animation: modalIn .3s ease;
}

.order-modal h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.modal-subtitle {
    font-size: .85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.order-summary-box {
    background: rgba(0, 240, 255, .05);
    border: 1px solid rgba(0, 240, 255, .2);
    border-radius: var(--r);
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    font-size: .78rem;
}

.order-summary-line {
    display: flex;
    justify-content: space-between;
    padding: .25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.order-summary-line:last-child {
    border: none;
    font-weight: 800;
    color: var(--cyan);
    padding-top: .5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}

.form-full {
    grid-column: 1 / -1;
}

.payment-options {
    margin-top: 1.5rem;
}

.payment-options h4 {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--text-dim);
    letter-spacing: .12em;
    margin-bottom: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: .5rem;
    cursor: pointer;
    font-size: .85rem;
    transition: all .2s;
}

.radio-option:hover,
.radio-option:has(input:checked) {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, .05);
}

.radio-option input {
    accent-color: var(--cyan);
}

/* ======================================================
   TOAST
====================================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--green);
    color: var(--green);
    padding: .85rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: .82rem;
    font-weight: 700;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 30px rgba(0, 255, 136, .2);
}

.toast.show {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-terminal {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        min-width: calc(50% - 1rem);
    }

    .product-modal-inner {
        grid-template-columns: 1fr;
    }

    .modal-img-wrap {
        border-radius: var(--r-lg) var(--r-lg) 0 0;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    #main-menu {
        display: none;
    }

    #main-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(4, 6, 12, .98);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }

    #main-menu ul {
        flex-direction: column;
        gap: .5rem;
    }

    .hamburger {
        display: flex;
    }

    .stock-live-badge {
        display: none;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-hero {
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

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

    .modal-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .order-modal {
        padding: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text-area h1 {
        font-size: 2rem;
    }

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

    .steps-grid .step-card {
        min-width: 100%;
    }

    .about-card {
        flex-direction: column;
    }

    .about-logo-col {
        text-align: center;
    }

    .about-logo-img {
        width: 120px;
        height: 120px;
    }

    .preorder-grid-new {
        grid-template-columns: 1fr;
    }

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

/* ============================================================
   CYBERTEK — LOGO & NAVBAR
   ============================================================ */

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    cursor: pointer;
    user-select: none;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, .3);
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .05em;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(0, 240, 255, .3);
}

/* ============================================================
   BRAND STORY SECTION
   ============================================================ */

.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, .03) 50%, transparent);
}

.about-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}

.about-logo-col {
    flex-shrink: 0;
    text-align: center;
}

.about-logo-img {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, .3), 0 0 60px rgba(0, 240, 255, .1);
    margin-bottom: 1rem;
}

.about-tagline {
    font-family: var(--font-mono);
    font-size: .85rem;
    color: var(--cyan);
    letter-spacing: .1em;
}

.about-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: .75rem 0 1rem;
}

.about-desc {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .75rem 1rem;
    background: rgba(0, 240, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color .3s;
}

.pillar:hover {
    border-color: var(--border-hover);
}

.pillar-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.pillar strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: .2rem;
}

.pillar span {
    font-size: .85rem;
    color: var(--text-dim);
}

/* ============================================================
   PRE-ORDER — NEW RICH CARD LAYOUT (USD PRICING)
   ============================================================ */

#preorder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.75rem;
}

.preorder-card-new {
    border-radius: var(--r-lg);
    border: 1px solid rgba(255, 204, 0, .15);
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}

.preorder-card-new:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 204, 0, .5);
    box-shadow: 0 16px 48px rgba(255, 204, 0, .12);
}

.preorder-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, .03);
    overflow: hidden;
}

.preorder-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.preorder-card-new:hover .preorder-card-img img {
    transform: scale(1.06);
}

.preorder-badge-tag {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--yellow);
    color: #000;
    font-size: .65rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: .08em;
    padding: .3rem .65rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.preorder-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .6rem;
}

.preorder-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    flex-wrap: wrap;
}

.preorder-brand-badge {
    font-size: .7rem;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--cyan);
    border: 1px solid rgba(0, 240, 255, .3);
    padding: .2rem .6rem;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: .06em;
    transition: background .2s;
}

.preorder-brand-badge:hover {
    background: rgba(0, 240, 255, .1);
}

.preorder-label-tag {
    font-size: .65rem;
    font-family: var(--font-mono);
    color: var(--yellow);
    letter-spacing: .06em;
}

.preorder-card-new h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.preorder-highlight {
    font-size: .82rem;
    color: var(--green);
    background: rgba(0, 255, 136, .06);
    border-left: 3px solid var(--green);
    padding: .4rem .75rem;
    border-radius: 0 6px 6px 0;
    font-weight: 500;
}

.preorder-desc {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.6;
    flex: 1;
}

.preorder-specs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .3rem .75rem;
    margin-top: .25rem;
}

.spec-row {
    display: flex;
    flex-direction: column;
    font-size: .72rem;
}

.spec-key {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .06em;
    opacity: .8;
}

.spec-val {
    color: var(--text-dim);
    font-size: .75rem;
}

.preorder-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
    flex-wrap: wrap;
}

.preorder-price-usd {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--yellow);
    text-shadow: 0 0 15px rgba(255, 204, 0, .5);
    letter-spacing: -.02em;
}

.btn-preorder {
    background: linear-gradient(135deg, rgba(255, 204, 0, .15), rgba(255, 204, 0, .05));
    border: 1px solid var(--yellow);
    color: var(--yellow);
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .65rem 1.25rem;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}

.btn-preorder:hover {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, .4);
    transform: translateY(-2px);
}

/* ============================================================
   LEGAL DISCLAIMER SECTION
   ============================================================ */

:root {
    --red: #ff3c5f;
    --glow-red: 0 0 20px rgba(255, 60, 95, .4);
}

.disclaimer-section {
    padding: 80px 0;
}

.disclaimer-card {
    border-radius: var(--r-lg);
    border: 1px solid rgba(255, 60, 95, .25);
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 60, 95, .04), rgba(10, 14, 26, .9));
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 60, 95, .15);
}

.disclaimer-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.disclaimer-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
}

.glow-text-red {
    color: var(--red);
}

.disclaimer-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 60, 95, .06);
    border: 1px solid rgba(255, 60, 95, .2);
    border-radius: var(--r);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
}

.disclaimer-shield {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.disclaimer-highlight p {
    color: var(--text);
    line-height: 1.7;
    font-size: .95rem;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.disclaimer-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: var(--r);
}

.di-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.disclaimer-item h4 {
    font-family: var(--font-mono);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: .75rem;
    color: var(--text);
}

.disclaimer-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.disclaimer-item ul li {
    font-size: .82rem;
    color: var(--text-dim);
    padding-left: .9rem;
    position: relative;
    line-height: 1.5;
}

.disclaimer-item ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.disclaimer-legal {
    background: rgba(0, 0, 0, .3);
    border-radius: var(--r);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.disclaimer-legal p {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ======================================================
   CONTACT FORM SECTION
====================================================== */
.contact-form-section {
    padding: 6rem 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-card {
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.contact-form-card>p {
    color: var(--text-dim);
    font-size: .9rem;
    margin-bottom: 2rem;
}

.contact-inquiry-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-inquiry-form label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}

.contact-inquiry-form input,
.contact-inquiry-form textarea,
.contact-inquiry-form select {
    width: 100%;
    background: rgba(0, 0, 0, .35);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: .8rem 1rem;
    color: var(--text);
    font-size: .9rem;
    font-family: var(--font-sans);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.contact-inquiry-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f0ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-inquiry-form select option {
    background: #0a0e1a;
    color: var(--text);
}

.contact-inquiry-form input:focus,
.contact-inquiry-form textarea:focus,
.contact-inquiry-form select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, .08);
}

.contact-inquiry-form input::placeholder,
.contact-inquiry-form textarea::placeholder {
    color: #3a4055;
}

.contact-inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

.inquiry-info-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inquiry-info-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.inquiry-info-card>p {
    color: var(--text-dim);
    font-size: .85rem;
    margin-top: -.5rem;
    margin-bottom: .5rem;
}

.inquiry-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, .3);
    border-radius: var(--r);
    border-left: 3px solid var(--cyan);
}

.inquiry-stat-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.inquiry-stat-info strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .15rem;
}

.inquiry-stat-info span {
    font-size: .75rem;
    color: var(--text-dim);
}

.inquiry-stat-info span.glow-text-cyan {
    font-family: var(--font-mono);
    font-size: .85rem;
}

.contact-form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.contact-form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-form-success h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: .5rem;
}

.contact-form-success p {
    color: var(--text-dim);
    font-size: .9rem;
}

/* ======================================================
   FLOATING CHAT WIDGET
====================================================== */
#chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

/* Launcher Button */
#chat-launcher {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan) 0%, rgba(0, 120, 200, 1) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 240, 255, .45), 0 0 0 0 rgba(0, 240, 255, .3);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    animation: chat-pulse 2.5s ease infinite;
}

@keyframes chat-pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 240, 255, .45), 0 0 0 0 rgba(0, 240, 255, .25);
    }

    50% {
        box-shadow: 0 8px 40px rgba(0, 240, 255, .6), 0 0 0 12px rgba(0, 240, 255, 0);
    }
}

#chat-launcher:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 12px 40px rgba(0, 240, 255, .6);
}

#chat-launcher .chat-icon,
#chat-launcher .chat-close-icon {
    position: absolute;
    transition: opacity .2s ease, transform .2s ease;
}

#chat-launcher .chat-close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(.5);
}

#chat-launcher.open .chat-icon {
    opacity: 0;
    transform: rotate(90deg) scale(.5);
}

#chat-launcher.open .chat-close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

#chat-launcher .chat-unread-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: white;
    font-size: .6rem;
    font-weight: 800;
    font-family: var(--font-mono);
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 4px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg);
}

#chat-launcher .chat-unread-badge.has-unread {
    display: flex;
    animation: bounce-in .3s cubic-bezier(.68, -.55, .27, 1.55);
}

@keyframes bounce-in {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Chat Window */
#chat-window {
    width: 360px;
    max-height: 540px;
    border-radius: 18px;
    background: rgba(8, 11, 22, .98);
    border: 1px solid rgba(0, 240, 255, .2);
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .7), 0 0 0 1px rgba(0, 240, 255, .06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(.95);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s cubic-bezier(.25, .46, .45, .94);
}

#chat-window.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-win-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, .1), rgba(0, 100, 180, .08));
    border-bottom: 1px solid rgba(0, 240, 255, .12);
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-shrink: 0;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), #0060aa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
}

.chat-avatar::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid rgba(8, 11, 22, .98);
}

.chat-header-info {
    flex: 1;
}

.chat-header-info strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
}

.chat-header-info span {
    font-size: .72rem;
    color: var(--green);
    font-family: var(--font-mono);
}

.chat-header-actions {
    display: flex;
    gap: .4rem;
}

.chat-header-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .75rem;
    transition: all .2s;
}

.chat-header-btn:hover {
    background: rgba(0, 240, 255, .12);
    border-color: rgba(0, 240, 255, .3);
    color: var(--cyan);
}

/* Name Input Step */
#chat-name-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    text-align: center;
}

#chat-name-step .chat-greeting-icon {
    font-size: 3rem;
}

#chat-name-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

#chat-name-step p {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.5;
}

#chat-name-input {
    width: 100%;
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(0, 240, 255, .2);
    border-radius: var(--r);
    padding: .75rem 1rem;
    color: var(--text);
    font-size: .9rem;
    font-family: var(--font-sans);
    outline: none;
    text-align: center;
    transition: border-color .2s;
}

#chat-name-input:focus {
    border-color: var(--cyan);
}

#chat-name-input::placeholder {
    color: #3a4055;
}

/* Messages Area */
#chat-messages-step {
    flex: 1;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

#chat-messages-step.active {
    display: flex;
}

#chat-messages-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 240, 255, .15) transparent;
}

#chat-messages-body::-webkit-scrollbar {
    width: 4px;
}

#chat-messages-body::-webkit-scrollbar-track {
    background: transparent;
}

#chat-messages-body::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, .15);
    border-radius: 4px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    animation: msg-in .25s ease;
}

@keyframes msg-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-msg.guest {
    align-self: flex-end;
    align-items: flex-end;
}

.chat-msg.owner {
    align-self: flex-start;
    align-items: flex-start;
}

.chat-msg.system {
    align-self: center;
    align-items: center;
    max-width: 90%;
}

.chat-bubble {
    padding: .65rem .9rem;
    border-radius: 14px;
    font-size: .85rem;
    line-height: 1.5;
    word-break: break-word;
}

.chat-msg.guest .chat-bubble {
    background: linear-gradient(135deg, rgba(0, 240, 255, .18), rgba(0, 120, 180, .15));
    border: 1px solid rgba(0, 240, 255, .2);
    color: var(--text);
    border-bottom-right-radius: 4px;
}

.chat-msg.owner .chat-bubble {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.chat-msg.system .chat-bubble {
    background: rgba(0, 240, 255, .05);
    border: 1px solid rgba(0, 240, 255, .1);
    color: var(--text-dim);
    font-size: .75rem;
    font-family: var(--font-mono);
    text-align: center;
    border-radius: 8px;
    padding: .4rem .8rem;
}

.chat-msg-time {
    font-size: .62rem;
    color: #3f4a60;
    margin-top: .2rem;
    font-family: var(--font-mono);
    padding: 0 .25rem;
}

/* Typing indicator */
.chat-typing {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem .9rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    max-width: 70px;
    align-self: flex-start;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dim);
    animation: typing-dot 1.2s ease infinite;
}

.chat-typing span:nth-child(2) {
    animation-delay: .2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes typing-dot {

    0%,
    60%,
    100% {
        opacity: .3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* Input Area */
.chat-input-area {
    padding: .85rem 1rem;
    border-top: 1px solid rgba(0, 240, 255, .1);
    display: flex;
    gap: .65rem;
    align-items: flex-end;
    flex-shrink: 0;
    background: rgba(0, 0, 0, .3);
}

#chat-input {
    flex: 1;
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(0, 240, 255, .15);
    border-radius: 12px;
    padding: .65rem .9rem;
    color: var(--text);
    font-size: .875rem;
    font-family: var(--font-sans);
    outline: none;
    resize: none;
    max-height: 120px;
    line-height: 1.4;
    transition: border-color .2s;
}

#chat-input:focus {
    border-color: rgba(0, 240, 255, .4);
}

#chat-input::placeholder {
    color: #3a4055;
}

#chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), #0060aa);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .2s;
    box-shadow: 0 4px 12px rgba(0, 240, 255, .3);
}

#chat-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 240, 255, .5);
}

#chat-send-btn:active {
    transform: scale(.95);
}

/* Chat Tooltip bubble before open */
.chat-tooltip {
    background: rgba(8, 11, 22, .97);
    border: 1px solid rgba(0, 240, 255, .2);
    border-radius: 12px;
    padding: .6rem 1rem;
    font-size: .82rem;
    color: var(--text);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    animation: tooltip-bounce 1s ease 2s both;
    pointer-events: none;
}

@keyframes tooltip-bounce {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive for chat */
@media (max-width: 480px) {
    #chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    #chat-window {
        width: calc(100vw - 2rem);
        max-height: 70vh;
    }
}