﻿:root {
    --primary: #A41E36;
    --primary-hover: #c42643;
    --dark: #191919;
    --darker: #121212;
    --card-bg: #222;
    --grey: #898C8E;
    --light-grey: #e1e1e1;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-main: 'Inter', sans-serif;
    --font-title: 'Outfit', sans-serif;
    --section-pad: 80px;
    --container-max: 1140px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #333, var(--primary), #333);
    border-radius: 10px;
    border: 2px solid #050505;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(164, 30, 54, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 30, 54, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--grey);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    border: 1px solid var(--grey);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

i {
    vertical-align: middle;
}

.header {
    position: fixed;
    width: 100%;
    top: 25px;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.header.scrolled {
    top: 15px;
}

.aether-nav-wrapper {
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px 12px;
    width: fit-content;
    max-width: 95%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.header.scrolled .aether-nav-wrapper {
    background: rgba(18, 18, 18, 0.7);
    padding: 6px 10px;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
    transform: translateY(1px);
}

.logo img {
    height: 32px;
    display: block;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 28px;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
}

.nav-link {
    color: var(--grey);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    color: var(--white);
}

.nav-indicator {
    position: absolute;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.btn-contact-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px !important;
    box-shadow: 0 4px 12px rgba(164, 30, 54, 0.2);
}

.btn-contact-nav:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    margin-left: 15px;
}

.hero-aether {
    background: #050505;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--section-pad) 0;
}

.aether-flux-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(164, 30, 54, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.aether-flux-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-aether .hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-aether .hero-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    perspective: 1000px;
}

.hero-aether .hero-title span {
    display: block;
    position: relative;
    background: linear-gradient(90deg,
            #fff 0%,
            #fff 45%,
            #A41E36 50%,
            #fff 55%,
            #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aetherSheen 8s linear infinite;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
}

.q-tap,
.q-connect {
    font-weight: 900;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.q-share {
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(90deg,
            #fff 0%,
            var(--primary) 50%,
            #fff 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

@keyframes aetherSheen {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes typographyEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-20deg);
        filter: blur(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.word-wrap {
    display: block;
    overflow: visible !important;
}

.hero-aether .hero-tagline {
    font-size: 1.1rem;
    color: #888;
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-aether-primary {
    position: relative;
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 100px;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(164, 30, 54, 0.2);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
    transform: translate(-100%, -100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-aether-primary:hover .btn-glow {
    transform: translate(0, 0);
}

.btn-aether-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 100px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.btn-aether-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.aether-intel {
    display: flex;
    align-items: center;
    gap: 30px;
}

.intel-node {
    display: flex;
    flex-direction: column;
}

.intel-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.intel-lab {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.intel-sep {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.orbital-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

.orbital-core {
    position: relative;
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    border-radius: 50%;
    border: 1px solid rgba(164, 30, 54, 0.2);
    transform-style: preserve-3d;
}

.ring.r-outer {
    width: 100%;
    height: 100%;
    animation: orbitRotate 15s linear infinite;
}

.ring.r-mid {
    width: 70%;
    height: 70%;
    border-color: rgba(255, 255, 255, 0.05);
    animation: orbitRotate 10s linear infinite reverse;
}

.ring.r-inner {
    width: 130%;
    height: 130%;
    border: 1px solid rgba(164, 30, 54, 0.08);
    animation: orbitRotate 25s linear infinite;
}

@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0);
    }

    100% {
        transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg);
    }
}

.singularity-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 400px;
    transform: translate(-50%, -50%) rotateY(15deg) rotateX(10deg);
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.card-glass {
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(164, 30, 54, 0.1);
}

.aether-logo {
    width: 120px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.nfc-pulse {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.nfc-pulse::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    animation: badgePulse 3s infinite;
}

.orbital-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
}

.n1 {
    top: 10%;
    left: 80%;
    animation: floatNode 4s ease-in-out infinite;
}

.n2 {
    bottom: 20%;
    left: 10%;
    animation: floatNode 5s ease-in-out infinite 1s;
}

.n3 {
    top: 50%;
    right: -20px;
    animation: floatNode 6s ease-in-out infinite 2.5s;
}

@keyframes floatNode {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.aether-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #444;
}

.scroll-bar {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.scroll-puck {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary);
    animation: puckScroll 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes puckScroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(250%);
    }
}

.animate-sequence {
    opacity: 0;
    transform: translateY(40px);
}

@media (max-width: 1100px) {
    .hero-aether .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .aether-intel {
        justify-content: center;
    }

    .orbital-core {
        width: 320px;
        height: 320px;
    }

    .singularity-card {
        width: 200px;
        height: 310px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 60px;
    }

    .hero-tagline {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem) !important;
        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}

.status-divider {
    height: 30px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.trust-avatars {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-stack {
    display: flex;
}

.a-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #000;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-left: -12px;
}

.a-item:first-child {
    margin-left: 0;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hologram-stage {
    position: relative;
    width: 400px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-light {
    position: absolute;
    bottom: 50px;
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(164, 30, 54, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    transform: rotateX(80deg);
}

.hologram-rings {
    position: absolute;
    bottom: 70px;
    width: 250px;
    height: 250px;
    transform: rotateX(80deg);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(164, 30, 54, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringOrbit 8s infinite linear;
}

.ring:nth-child(2) {
    width: 70%;
    height: 70%;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 12s;
}

@keyframes ringOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.card-3d-wrap-modern {
    width: 340px;
    height: 520px;
    perspective: 1000px;
    z-index: 10;
}

.card-3d-modern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111, #050505);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    transform: rotateY(-10deg) rotateX(5deg);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }
}

.c-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.c-logo-modern {
    height: 35px;
}

.c-nfc {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
}

.c-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.c-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.c-footer {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.c-id-tag {
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}

.c-qr-nexus {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.05);
}

.nexus-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.nexus-scroll:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 20px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-dot {
    width: 3px;
    height: 6px;
    background: var(--white);
    border-radius: 2px;
    animation: s-dot 2s infinite;
}

@keyframes s-dot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.nexus-scroll span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.card-3d-wrap {
    width: 340px;
    height: 520px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.card-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.03);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.1s;
}

.card-face {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.card-logo {
    width: 120px;
    opacity: 0.9;
}

.nfc-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.card-info {
    margin-top: auto;
}

.card-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-title {
    color: var(--grey);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

.section {
    padding: var(--section-pad) 0;
}

.alt-bg {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.evolution-discovery {
    background: transparent;
    padding: var(--section-pad) 0;
    position: relative;
}

.evolution-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.evo-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 36px 30px;
    transition: all 0.4s ease;
}

.evo-card.legacy {
    opacity: 0.6;
    filter: grayscale(0.8);
}

.evo-card.aether {
    background: rgba(164, 30, 54, 0.03);
    border-color: rgba(164, 30, 54, 0.15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.evo-card:hover {
    transform: translateY(-5px);
    filter: grayscale(0);
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.1);
}

.evo-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

.evo-tag.active {
    color: var(--primary);
    font-weight: 700;
}

.evo-card h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: var(--font-title);
}

.evo-stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.evo-stats li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.evo-stats i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 4px;
}

.evo-stats strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--white);
}

.evo-stats p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

.evo-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.evo-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.evo-pulse {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(164, 30, 54, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: evo-pulse-glow 2s infinite;
}

@keyframes evo-pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(164, 30, 54, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(164, 30, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(164, 30, 54, 0);
    }
}

.true-intel-bar {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.intel-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.intel-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.intel-item p {
    font-size: 0.8rem;
    color: #777;
    letter-spacing: 0.5px;
}

.intel-item strong {
    color: var(--white);
}

@media (max-width: 1100px) {
    .evolution-grid {
        grid-template-columns: 1fr;
    }

    .evo-divider {
        display: none;
    }

    .evo-card {
        padding: 35px 25px;
        border-radius: 24px;
    }

    .true-intel-bar {
        flex-direction: column;
        gap: 20px;
        border-radius: 30px;
        align-items: center;
    }
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.step-card:hover {
    background: rgba(25, 25, 25, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #631221);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(164, 30, 54, 0.3);
}

.step-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.2;
    }

    50% {
        transform: translateX(10px);
        opacity: 0.5;
    }
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.step-card p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.5;
}

.preview-section {
    background: #050505;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: float 10s infinite alternate ease-in-out;
}

.al-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #a41e36, transparent 70%);
}

.al-2 {
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2a2a2a, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, #a41e36 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.studio-container {
    display: flex;
    gap: 40px;
    background: rgba(20, 20, 20, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(30px);
}

.studio-controls {
    flex: 0 0 340px;
    background: rgba(10, 10, 10, 0.6);
    padding: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.control-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(164, 30, 54, 0.3);
    margin-bottom: 10px;
}

.control-group label {
    display: block;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(164, 30, 54, 0.05);
    box-shadow: 0 0 15px rgba(164, 30, 54, 0.2);
}

.input-wrapper input:focus+i {
    color: var(--primary);
}

.color-options {
    display: flex;
    gap: 15px;
}

.color-swatch {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s;
}

.color-swatch:hover,
.color-swatch.active {
    opacity: 1;
}

.swatch-preview {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swatch-preview.black-bg {
    background: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.swatch-preview.white-bg {
    background: #eee;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.color-swatch.active .swatch-preview {
    border-color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(164, 30, 54, 0.4);
}

.layout-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.layout-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.layout-btn i {
    font-size: 1.4rem;
}

.layout-btn span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.layout-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #aaa;
    background: rgba(255, 255, 255, 0.02);
}

.layout-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(164, 30, 54, 0.08);
    box-shadow: 0 0 20px rgba(164, 30, 54, 0.2) inset;
}

.studio-stage {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    overflow: hidden;
}

.digital-card {
    width: 320px;
    height: 200px;
    background: #111;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    padding: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.digital-card .card-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    border-radius: 16px;
    z-index: 0;
}

.digital-card.vertical {
    width: 220px;
    height: 350px;
}

.digital-card.white {
    background: #ffffff;
    color: #191919;
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.1);
}

.digital-card .card-content {
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.p-logo {
    width: 100px;
    display: block;
    margin-bottom: 20px;
}

.digital-card.white .p-logo {
    filter: invert(1);
}

.p-details h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: inherit;
}

.p-details p {
    font-size: 0.9rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.digital-card.white .p-details p {
    color: #666;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.p-qr {
    font-size: 2.2rem;
    opacity: 0.8;
}

.nfc-icon-sm {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    opacity: 0.2;
    transform: rotate(90deg);
}

@media (max-width: 900px) {
    .studio-container {
        flex-direction: column;
        min-height: auto;
    }

    .studio-controls {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .studio-stage {
        padding: 50px 20px;
        min-height: 400px;
    }
}

#features {
    background: radial-gradient(circle at top, rgba(164, 30, 54, 0.05), transparent 70%);
    position: relative;
}

#features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(164, 30, 54, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: 0.5s;
}

.feature-card:hover {
    border-color: rgba(164, 30, 54, 0.3);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.feature-card:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, var(--white), var(--primary));
}

.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(164, 30, 54, 0.1);
    border: 1px solid rgba(164, 30, 54, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(164, 30, 54, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.6;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(164, 30, 54, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    transition: 0.6s;
    pointer-events: none;
}

.persona-smart {
    background: #050505;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.smart-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 480px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 30px;
}

.dash-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dash-btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.dash-btn-content i {
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.dash-btn-content span {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dash-active-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(164, 30, 54, 0.1);
    border-left: 3px solid var(--primary);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.dash-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.dash-btn.active {
    color: #fff;
}

.dash-btn.active .dash-btn-content i {
    color: var(--primary);
}

.dash-btn.active .dash-active-indicator {
    width: 100%;
}

.dashboard-content-area {
    position: relative;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.dash-pane {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 20px;
    transform: translateY(-40%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.dash-pane.active {
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.pane-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.pane-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.pane-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.pane-desc {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.pane-metric {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.metric-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a0a0a;
}

.metric-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(var(--ring-color) var(--fill-deg), transparent 0);
    z-index: -1;
}

.metric-circle::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: #0a0a0a;
    z-index: -1;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
}

.metric-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-top: 4px;
}

.metric-details ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-details li {
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-details li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.blue-glow {
    color: #00f2ff;
    box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.1);
}

.blue-ring {
    --ring-color: #00f2ff;
    --fill-deg: 360deg;
}

.teal-glow {
    color: #00ffaa;
    box-shadow: inset 0 0 20px rgba(0, 255, 170, 0.1);
}

.teal-ring {
    --ring-color: #00ffaa;
    --fill-deg: 342deg;
}

.green-glow {
    color: #00ff41;
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.green-ring {
    --ring-color: #00ff41;
    --fill-deg: 306deg;
}

.purple-glow {
    color: #9d00ff;
    box-shadow: inset 0 0 20px rgba(157, 0, 255, 0.1);
}

.purple-ring {
    --ring-color: #9d00ff;
    --fill-deg: 360deg;
}

.gold-glow {
    color: #ffd700;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.gold-ring {
    --ring-color: #ffd700;
    --fill-deg: 360deg;
}

.pink-glow {
    color: #ff0055;
    box-shadow: inset 0 0 20px rgba(255, 0, 85, 0.1);
}

.pink-ring {
    --ring-color: #ff0055;
    --fill-deg: 324deg;
}

@media (max-width: 992px) {
    .smart-dashboard {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .dashboard-sidebar {
        flex-direction: row;
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .dashboard-sidebar::-webkit-scrollbar {
        display: none;
    }

    .dash-btn {
        white-space: nowrap;
        padding: 12px 20px;
    }

    .dash-active-indicator {
        top: auto;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 100%;
        border-left: none;
        border-bottom: 3px solid var(--primary);
        transform: scaleX(0);
        transform-origin: left;
    }

    .dash-btn.active .dash-active-indicator {
        transform: scaleX(1);
    }

    .dash-pane {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(20px);
    }

    .dash-pane.active {
        transform: translateY(0);
    }

    .pane-metric {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .metric-circle {
        width: 80px;
        height: 80px;
    }

    .metric-value {
        font-size: 1.2rem;
    }
}

/* ===================================================
   PRICING STUDIO — NEW PREMIUM REDESIGN
   =================================================== */
.pricing-studio {
    background: #020204;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.ps-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ps-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(164, 29, 54, 0.18) 0%, transparent 70%);
    top: -120px;
    left: -150px;
}

.ps-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 20, 200, 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.ps-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #a41d36;
    margin-bottom: 14px;
}

.ps-cards-row {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 54px;
    flex-wrap: wrap;
    perspective: 1200px;
}

.ps-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 28px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s ease;
}

.ps-card:hover {
    transform: translateY(-10px);
}

.ps-white {
    background: #0c0c10;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ps-black {
    background: linear-gradient(145deg, #100a0c 0%, #0a0a0d 100%);
    border: 1px solid rgba(164, 29, 54, 0.35);
    box-shadow: 0 0 0 1px rgba(164, 29, 54, 0.15),
        0 30px 80px rgba(164, 29, 54, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.7);
}

.ps-featured-ribbon {
    background: linear-gradient(90deg, #8e182e, #a41d36);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 28px 28px 0 0;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
}

.ps-pulse-ring {
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    border: 1.5px solid rgba(164, 29, 54, 0.5);
    animation: ps-pulse 3s infinite ease-out;
    pointer-events: none;
}

@keyframes ps-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.04);
        opacity: 0;
    }
}

.ps-card-inner {
    padding: 38px 36px 40px;
    display: flex;
    flex-direction: column;
}

.ps-edition-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 10px;
}

.ps-elite-badge {
    color: #a41d36;
}

.ps-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.ps-card-tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.ps-price-block {
    margin: 28px 0 22px;
}

.ps-price {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.ps-price-note {
    font-size: 0.8rem;
    color: #555;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.ps-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    margin-bottom: 24px;
}

.ps-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.ps-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.97rem;
    color: #aaa;
    transition: color 0.3s;
}

.ps-black .ps-features li {
    color: #c8c8cc;
}

.ps-features li:hover {
    color: #fff;
}

.ps-features li.ps-absent {
    color: #3a3a44;
}

.ps-check,
.ps-cross {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ps-check {
    background: rgba(164, 29, 54, 0.12);
    color: #a41d36;
    border: 1px solid rgba(164, 29, 54, 0.25);
}

.ps-check.ps-gold {
    background: rgba(212, 170, 84, 0.12);
    color: #d4aa54;
    border-color: rgba(212, 170, 84, 0.3);
}

.ps-cross {
    background: rgba(255, 255, 255, 0.03);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.ps-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background: transparent;
}

.ps-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}

.ps-btn-solid {
    background: #a41d36;
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(164, 29, 54, 0.35);
}

.ps-btn-solid:hover {
    background: #8e182e;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(164, 29, 54, 0.5);
}

.ps-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.ps-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
}

.ps-trust-item i {
    font-size: 1.7rem;
    color: #a41d36;
    opacity: 0.85;
    flex-shrink: 0;
}

.ps-trust-item strong {
    display: block;
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 2px;
}

.ps-trust-item span {
    font-size: 0.78rem;
    color: #555;
}

.ps-trust-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .ps-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .ps-trust-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .ps-trust-sep {
        display: none;
    }

    .ps-trust-item {
        max-width: 100%;
    }
}

.quantum-pricing-nodes {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 90px;
    perspective: 2000px;
    flex-wrap: wrap;
}

.q-node {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.q-node:hover {
    transform: translateY(-20px) rotateX(8deg);
    border-color: var(--primary);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 1);
    background: rgba(255, 255, 255, 0.03);
}

.hologram-glare {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.q-node:hover .hologram-glare {
    opacity: 1;
}

.node-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(164, 30, 54, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) translateZ(-100px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.q-node:hover .node-glow {
    opacity: 1;
}

.node-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #555;
    margin-bottom: 20px;
}

.node-tag.elite {
    color: var(--primary);
}

.node-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.node-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 40px;
}

.node-price span {
    font-size: 1rem;
    color: #444;
    font-weight: 400;
}

.node-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    margin-bottom: 40px;
}

.node-features {
    margin-bottom: 40px;
}

.node-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #777;
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 300;
    transition: color 0.3s;
}

.q-node:hover .node-features li {
    color: #ccc;
}

.node-features li i {
    color: var(--primary);
    font-size: 1.3rem;
    opacity: 0.6;
}

.popular-node {
    border: 1px solid rgba(164, 30, 54, 0.3);
    box-shadow: 0 0 40px rgba(164, 30, 54, 0.1);
}

.popular-pulse {
    position: absolute;
    inset: -2px;
    border: 2px solid var(--primary);
    border-radius: 24px;
    animation: n-pulse 3s infinite;
    pointer-events: none;
    opacity: 0;
}

@keyframes n-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.05, 1.1);
        opacity: 0;
    }
}

.btn-q-primary,
.btn-q-elite {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-q-primary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-q-elite {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(164, 30, 54, 0.3);
}

.btn-q-primary:hover {
    background: var(--white);
    color: #000;
}

.quantum-intel-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-top: 40px;
}

.intel-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.intel-item i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.8;
}

.intel-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.intel-item p {
    font-size: 0.8rem;
    color: #555;
}

.intel-divider {
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.intel-item p {
    font-size: 0.8rem;
    color: #555;
}

.intel-divider {
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1000px) {
    .quantum-intel-bar {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .intel-divider {
        display: none;
    }
}

.info-chips-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.info-chip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: default;
    max-width: 450px;
}

.info-chip:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(164, 30, 54, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chip-icon {
    width: 45px;
    height: 45px;
    background: rgba(164, 30, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.chip-content h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.chip-content p {
    font-size: 0.85rem;
    color: var(--grey);
    margin: 0;
}

@media (max-width: 768px) {
    .info-chips-container {
        flex-direction: column;
        align-items: center;
    }

    .info-chip {
        width: 100%;
        border-radius: 16px;
    }
}

.carousel-section {
    position: relative;
    padding: 60px 0 100px;
    overflow: visible;
}

.carousel-3d-stage {
    position: relative;
    height: 350px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.t-card {
    position: absolute;
    width: 420px;
    min-height: 300px;
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translate3d(0, 0, -400px) scale(0.6);
    z-index: 0;
    pointer-events: none;
    filter: blur(10px) brightness(0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t-card.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateY(0);
    z-index: 30;
    border-color: rgba(164, 30, 54, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(164, 30, 54, 0.2);
    pointer-events: auto;
    filter: blur(0) brightness(1);
}

.t-card.prev {
    opacity: 0.6;
    transform: translate3d(-340px, 0, -150px) scale(0.85) rotateY(25deg);
    z-index: 20;
    pointer-events: auto;
    cursor: pointer;
    filter: blur(4px) brightness(0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.t-card.next {
    opacity: 0.6;
    transform: translate3d(340px, 0, -150px) scale(0.85) rotateY(-25deg);
    z-index: 20;
    pointer-events: auto;
    cursor: pointer;
    filter: blur(4px) brightness(0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.t-card.prev:hover,
.t-card.next:hover {
    opacity: 0.9;
    filter: blur(2px) brightness(0.9);
    border-color: var(--primary);
    transform: translate3d(-360px, 0, -120px) scale(0.88) rotateY(20deg);
}

.t-card.next:hover {
    transform: translate3d(360px, 0, -120px) scale(0.88) rotateY(-20deg);
}

.t-quote {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 0.8;
    opacity: 0.9;
}

.t-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 25px;
    font-weight: 300;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.c-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.c-text strong {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
}

.c-text span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    z-index: 30;
    position: relative;
}

.c-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.c-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(164, 30, 54, 0.5);
}

@media (max-width: 900px) {
    .t-card {
        width: 85%;
        min-height: auto;
    }

    .t-card.prev {
        transform: translateX(-40px) translateZ(-300px) scale(0.8) rotateY(0);
        opacity: 0.2;
    }

    .t-card.next {
        transform: translateX(40px) translateZ(-300px) scale(0.8) rotateY(0);
        opacity: 0.2;
    }

    .carousel-3d-stage {
        height: 400px;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-color: var(--primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(164, 30, 54, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.c-details h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.c-details p {
    color: var(--grey);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
}

.btn-block {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.faq-section {
    background: var(--darker);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(164, 30, 54, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active {
    background: rgba(164, 30, 54, 0.05);
    border-color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg) scale(1.2);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--grey);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 30px;
}

.footer {
    background: #050505;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--grey);
    max-width: 300px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--grey);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--grey);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .header {
        top: 15px;
    }

    .aether-nav-wrapper {
        width: 95%;
        padding: 6px 15px;
        border-radius: 50px;
    }

    .header-container {
        justify-content: space-between;
        gap: 0;
    }

    .logo img {
        height: 26px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 100px 40px;
        gap: 15px;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 1.2rem;
        padding: 15px;
        text-align: left;
    }

    .nav-indicator {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }

    .btn-contact-nav {
        margin-top: 20px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 100px;
        gap: 80px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-indicator {
        justify-content: center;
    }

    .preview-container {
        flex-direction: column;
        padding: 30px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .price-card {
        width: 100%;
    }
}

.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 50%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.switching-color {
    animation: fadeCard 0.4s ease-in-out;
}

@keyframes fadeCard {

    0%,
    100% {
        opacity: 1;
        filter: blur(0);
    }

    50% {
        opacity: 0.5;
        filter: blur(5px);
    }
}

.morphing {
    animation: elasticMorph 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes elasticMorph {
    0% {
        transform: perspective(1000px) rotateX(0) scale(1);
        filter: brightness(1);
    }

    30% {
        transform: perspective(1000px) rotateX(15deg) scale(0.94);
        filter: brightness(1.1);
    }

    100% {
        transform: perspective(1000px) rotateX(0) scale(1);
        filter: brightness(1);
    }
}

#previewCard {
    transition: transform 0.1s ease-out, background 0.4s ease, box-shadow 0.4s ease, width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-section {
    position: relative;
    background: radial-gradient(circle at bottom right, rgba(164, 30, 54, 0.05), transparent 60%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
    background: rgba(164, 30, 54, 0.08);
    border-color: var(--primary);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-card .icon-box {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
}

.contact-form-wrapper {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
    border-radius: 12px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(164, 30, 54, 0.03);
    box-shadow: 0 0 20px rgba(164, 30, 54, 0.15);
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.order-modal-content {
    width: 100%;
    max-width: 900px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 45px 50px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-modal {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal:hover {
    background: var(--primary);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(164, 30, 54, 0.4);
}

.order-flow-container {
    padding: 30px 50px 50px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.order-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 14px;
    font-weight: 800;
    opacity: 0.8;
}

.form-group input,
.form-group textarea,
.select-styled {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 16px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.select-styled:focus {
    border-color: var(--primary);
    background: rgba(164, 30, 54, 0.04);
    box-shadow: 0 0 30px rgba(164, 30, 54, 0.15),
        inset 0 0 0 1px rgba(164, 30, 54, 0.2);
}

.select-styled {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
}

.form-group input[readonly] {
    background: rgba(255, 255, 255, 0.01);
    color: var(--grey);
    cursor: not-allowed;
}

.order-summary-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 20px 0 40px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item span {
    color: var(--grey);
    font-size: 0.9rem;
}

.summary-item strong {
    color: var(--white);
}

.price-item {
    border-bottom: none;
    margin-top: 10px;
}

.selection-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 600px) {
    .selection-visuals {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.edition-card-v3 {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    text-align: center;
}

.edition-card-v3:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.edition-card-v3.active {
    background: rgba(164, 30, 54, 0.05);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(164, 30, 54, 0.2);
}

.v3-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--grey);
}

.v3-badge.featured {
    background: rgba(164, 30, 54, 0.2);
    color: var(--primary);
}

.edition-card-v3 h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Outfit';
}

.edition-card-v3 p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
}

.v3-price {
    margin-top: 25px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.quantity-nexus {
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nexus-q-control {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nexus-q-control button {
    width: 40px;
    height: 40px;
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.nexus-q-control button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nexus-q-control input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.quantity-nexus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.quantity-nexus label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    font-weight: 700;
}

.redesigned-summary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.summary-preview-nexus {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 220px;
}

.verification-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 15px var(--primary);
    animation: nexusScan 3s infinite linear;
}

@keyframes nexusScan {
    0% {
        top: 0;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0;
    }
}

.summary-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 500px) {
    .summary-matrix {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.matrix-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.matrix-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.matrix-item span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.matrix-item.total {
    grid-column: span 2;
    background: rgba(164, 30, 54, 0.08);
    border: 1px solid var(--primary);
    align-items: center;
    text-align: center;
    box-shadow: 0 0 20px rgba(164, 30, 54, 0.15);
}

.matrix-item.total span {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(164, 30, 54, 0.3);
}

.delivery-note-nexus {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    border-radius: 16px;
    margin: 10px 0;
}

.delivery-note-nexus i {
    color: var(--primary);
    font-size: 1.2rem;
}

.delivery-note-nexus p {
    font-size: 0.85rem;
    color: var(--grey);
    margin: 0;
    line-height: 1.4;
}

.personalization-header {
    margin-bottom: 25px;
    text-align: center;
}

.personalization-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.personalization-header p {
    font-size: 0.9rem;
    color: var(--grey);
}

.input-styled {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 25px;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-styled:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
    box-shadow: 0 0 15px rgba(164, 30, 54, 0.2);
}

.protocol-selection-box {
    margin-bottom: 35px;
    text-align: center;
}

.protocol-selection-box label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 20px;
    font-weight: 700;
}

.protocol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 550px) {
    .protocol-grid {
        grid-template-columns: 1fr;
    }
}

.protocol-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.protocol-card i {
    font-size: 1.5rem;
    color: var(--grey);
    transition: all 0.3s ease;
}

.protocol-card span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.protocol-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.protocol-card.active {
    background: rgba(164, 30, 54, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(164, 30, 54, 0.2);
}

.protocol-card.active i {
    color: var(--primary);
}

.final-design-nexus {
    margin-top: 10px;
}

.final-design-nexus label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 15px;
}

.design-protocol-nexus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.design-proto-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.design-proto-card i {
    font-size: 1.3rem;
    color: var(--grey);
}

.design-proto-card span {
    font-size: 0.8rem;
    font-weight: 600;
}

.design-proto-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.design-proto-card.active {
    background: rgba(164, 30, 54, 0.1);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(164, 30, 54, 0.2);
}

.design-proto-card.active i {
    color: var(--primary);
}

.summary-preview {
    text-align: center;
}

.preview-mini-card {
    width: 100%;
    aspect-ratio: 1.6/1;
    background: #111;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.preview-label {
    font-size: 0.65rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.order-actions {
    display: flex;
    gap: 15px;
}

.order-note {
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--grey);
    text-align: center;
    line-height: 1.4;
}

.order-note i {
    color: var(--primary);
}

@media (max-width: 650px) {
    .order-summary-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .order-modal-content {
        border-radius: 20px;
    }
}

.nexus-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 35px;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.nexus-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.step-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.node-oct {
    width: 42px;
    height: 42px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    font-family: 'Outfit';
    color: var(--grey);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-node.active .node-oct {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(164, 30, 54, 0.4);
    transform: scale(1.1);
}

.step-node.completed .node-oct {
    background: rgba(30, 164, 110, 0.2);
    border-color: #1EA46E;
    color: #1EA46E;
}

.node-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--grey);
}

.step-node.active .node-label {
    color: var(--white);
    opacity: 1;
}

.step-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.step-actions.split {
    justify-content: space-between;
}

.btn-nexus {
    padding: 18px 35px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .order-modal-content {
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
        border: none;
    }

    .modal-header {
        padding: 25px 30px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .nexus-stepper {
        padding: 0 20px 25px;
    }

    .nexus-stepper::before {
        left: 40px;
        right: 40px;
    }

    .order-flow-container {
        padding: 20px 20px 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 400px) {
    .node-oct {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .node-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .nexus-stepper::before {
        top: 18px;
    }
}

.order-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 30px;
    position: relative;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    position: relative;
    opacity: 0.3;
    transition: var(--transition);
}

.step-node.active {
    opacity: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    background: #191919;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit';
}

.step-node.active .step-num {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(164, 30, 54, 0.4);
}

.step-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--grey);
}

.step-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 15px;
    margin-bottom: 25px;
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.edition-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.edition-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.edition-card.selected {
    border-color: var(--primary);
    background: rgba(164, 30, 54, 0.05);
}

.edition-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.edition-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.edition-card p {
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 15px;
}

.edition-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit';
}

.select-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.edition-card.selected .select-indicator {
    opacity: 1;
    transform: scale(1);
}

.quantity-control {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-control label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    font-weight: 700;
}

.q-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.q-btns button {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-btns input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-actions {
    margin-top: 20px;
}

.step-actions.split {
    display: flex;
    gap: 15px;
}

.order-summary-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.summary-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.summary-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 15px;
}

.data-item label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 5px;
}

.data-item strong {
    font-size: 1rem;
    color: var(--white);
}

.data-item strong.highlight {
    color: var(--primary);
    font-size: 1.1rem;
}

.order-note-v2 {
    font-size: 0.75rem;
    color: var(--grey);
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
}

@media (max-width: 650px) {
    .selection-grid {
        grid-template-columns: 1fr;
    }

    .summary-data {
        grid-template-columns: 1fr;
    }

    .order-stepper {
        padding: 0 20px 25px;
    }
}

.modal-customization-zone {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.modal-customization-zone .form-group {
    margin-bottom: 0;
}

.modal-variants,
.modal-layouts {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.modal-swatch {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-swatch.active {
    background: rgba(164, 30, 54, 0.1);
    border-color: var(--primary);
}

.modal-swatch span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.modal-layout-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 12px;
    color: var(--grey);
    cursor: pointer;
    transition: var(--transition);
}

.modal-layout-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(164, 30, 54, 0.3);
}

.modal-layout-btn i {
    font-size: 1.1rem;
}

.modal-layout-btn span {
    font-size: 0.8rem;
    font-weight: 600;
}

.success-vault {
    text-align: center;
    padding: 20px 0;
    animation: slideUpSuccess 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpSuccess {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper i {
    font-size: 3.5rem;
    color: #1EA46E;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(30, 164, 110, 0.4));
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(30, 164, 110, 0.1);
    border: 1px solid rgba(30, 164, 110, 0.2);
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.success-vault h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-vault p {
    color: var(--grey);
    font-size: 0.9rem;
    max-width: 300px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.order-id-display {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.order-id-display span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 10px;
}

.order-id-display h2 {
    font-size: 2.2rem;
    font-family: 'Outfit';
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.copy-id-btn {
    background: rgba(164, 30, 54, 0.1);
    border: 1px solid rgba(164, 30, 54, 0.2);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: var(--transition);
}

.copy-id-btn:hover {
    background: var(--primary);
    color: white;
}

.next-steps-v2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.next-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.next-item i {
    color: var(--primary);
    margin-top: 3px;
}

.next-item p {
    font-size: 0.8rem;
    color: var(--grey);
    margin: 0;
    max-width: none;
}

.wa-alt-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.75rem;
    color: #25D366;
    text-decoration: none;
    font-weight: 700;
}

.wa-alt-link:hover {
    text-decoration: underline;
}

.track-modal-content {
    max-width: 600px;
}

.track-search {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.track-search .input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.track-search .input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--primary);
}

.track-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 15px 15px 50px;
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-main);
}

.track-result-container {
    min-height: 200px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.track-placeholder {
    text-align: center;
    padding: 40px 0;
    color: var(--grey);
}

.track-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.2;
    display: block;
}

.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 25px;
    position: relative;
    padding-bottom: 35px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 35px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    width: 36px;
    height: 36px;
    background: #191919;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: var(--grey);
    transition: var(--transition);
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--grey);
}

.timeline-content p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.timeline-item.active .timeline-icon {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 0 20px rgba(164, 30, 54, 0.4);
}

.timeline-item.active .timeline-content h4 {
    color: var(--white);
}

.timeline-item.active .timeline-content p {
    color: var(--grey);
}

.timeline-item.active+.timeline-item.active::before {
    background: var(--primary);
}

.order-mini-info {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}

.order-mini-info span {
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-mini-info strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.skeuo-switchboard {
    background-color: #0d0f12;
    padding: 100px 0;
}

.machina-board {
    max-width: 1000px;
    margin: 60px auto 0;
    perspective: 1200px;
}

.machina-bezel {
    background: linear-gradient(135deg, #2b2e35 0%, #1a1c23 100%);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8),
        inset 0 2px 3px rgba(255, 255, 255, 0.1),
        inset 0 -4px 6px rgba(0, 0, 0, 0.6),
        0 0 0 1px #000;
    position: relative;
}

.machina-screws .screw {
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #444 0%, #222 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 3px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screw.top-left {
    top: 12px;
    left: 12px;
}

.screw.top-right {
    top: 12px;
    right: 12px;
}

.screw.bottom-left {
    bottom: 12px;
    left: 12px;
}

.screw.bottom-right {
    bottom: 12px;
    right: 12px;
}

.screw-slot {
    width: 14px;
    height: 2px;
    background: #111;
    transform: rotate(45deg);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.screw.top-right .screw-slot {
    transform: rotate(15deg);
}

.screw.bottom-left .screw-slot {
    transform: rotate(-30deg);
}

.screw.bottom-right .screw-slot {
    transform: rotate(70deg);
}

.machina-surface {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 4px 4px,
        linear-gradient(180deg, #1c1e22 0%, #15161a 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 900px) {
    .machina-surface {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 40px;
    }
}

.machina-display-bezel {
    background: #08080a;
    padding: 15px;
    border-radius: 16px;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 1),
        0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.machina-display-glass {
    background: radial-gradient(circle at 50% 50%, #1a2522 0%, #0a1010 100%);
    border-radius: 8px;
    height: 300px;
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 200, 0.1);
    transition: all 0.2s ease-out;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 3px);
    pointer-events: none;
    z-index: 2;
}

.crt-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(164, 29, 54, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.display-content {
    position: relative;
    z-index: 3;
    color: #4df8c4;
    text-shadow: 0 0 8px rgba(77, 248, 196, 0.6);
    font-family: 'Courier New', Courier, monospace;
}

.display-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(77, 248, 196, 0.2);
    padding-bottom: 15px;
}

.display-header i {
    font-size: 2.5rem;
}

.display-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.display-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.machina-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeuo-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.led-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2a1111;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.led-indicator.active {
    background: #ff3366;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5),
        0 0 15px #ff3366,
        0 0 30px rgba(255, 51, 102, 0.4);
}

.skeuo-btn {
    flex: 1;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    height: 64px;
    transform-style: preserve-3d;
    -webkit-tap-highlight-color: transparent;
}

.btn-base {
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #111, #000);
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5),
        inset 0 -1px 1px rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.btn-cap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #2b2d31, #212326);
    border-radius: 8px;
    border: 1px solid #111;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
    z-index: 2;
    transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    color: #a0a5b0;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.8);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary, 'Outfit');
}

.btn-cap i {
    font-size: 1.4rem;
    color: #888;
}

.skeuo-btn:hover:not(.active) .btn-cap {
    background: linear-gradient(to bottom, #303338, #26282c);
    color: #d0d5e0;
}

.skeuo-btn:hover:not(.active) .btn-cap i {
    color: #aaa;
}

.skeuo-btn.active .btn-cap {
    transform: translateY(6px);
    background: linear-gradient(to bottom, #1d1f22, #18191c);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(0, 0, 0, 0.9);
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.skeuo-btn.active .btn-cap i {
    color: #ff3366;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.4);
}

.skeuo-btn:active .btn-cap {
    transform: translateY(4px);
}

.bento-contact-section {
    position: relative;
    background-color: #030406;
    padding: 120px 0;
    z-index: 1;
    overflow: hidden;
}

.bento-contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.bento-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .bento-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

.bento-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 500px) {
    .bento-left {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    background: #0a0a0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 10px 30px -10px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(164, 29, 54, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(164, 29, 54, 0.15);
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-mini {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.bento-icon {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.bento-mini:hover .bento-icon {
    background: rgba(164, 29, 54, 0.1);
    color: #a41d36;
    border-color: rgba(164, 29, 54, 0.3);
    box-shadow: 0 0 20px rgba(164, 29, 54, 0.2);
}

.bento-mini:hover .bento-icon.whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.bento-mini:hover .bento-icon.facebook {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
}

.bento-mini:hover .bento-icon.email {
    color: #ff3366;
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
}

.bento-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.bento-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.bento-form-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.bento-form-header {
    margin-bottom: 30px;
}

.bento-form-header h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bento-form-header h3 i {
    color: #a41d36;
}

.bento-form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.bento-input-group {
    position: relative;
    margin-bottom: 20px;
}

.bento-input-group input,
.bento-input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 16px 16px 45px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.bento-input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.bento-input-icon {
    position: absolute;
    left: 16px;
    top: 18px;
    color: #555;
    font-size: 1.2rem;
    transition: color 0.3s;
    pointer-events: none;
}

.bento-input-group input:focus,
.bento-input-group textarea:focus {
    border-color: #a41d36;
    background: rgba(164, 29, 54, 0.05);
    box-shadow: 0 0 15px rgba(164, 29, 54, 0.1);
}

.bento-input-group input:focus+.bento-input-icon,
.bento-input-group textarea:focus+.bento-input-icon {
    color: #a41d36;
}

.bento-submit-btn {
    margin-top: auto;
    width: 100%;
    padding: 18px;
    background: #a41d36;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.bento-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.bento-submit-btn:hover {
    background: #8e182e;
    box-shadow: 0 5px 20px rgba(164, 29, 54, 0.4);
}

.bento-submit-btn:hover::before {
    left: 200%;
}

.advanced-footer {
    position: relative;
    background-color: #030406;
    border-top: 1px solid rgba(164, 29, 54, 0.1);
    padding-top: 80px;
    z-index: 2;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(164, 29, 54, 0.5), transparent);
    box-shadow: 0 0 20px 2px rgba(164, 29, 54, 0.2);
}

.advanced-footer .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

@media (max-width: 900px) {
    .advanced-footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .advanced-footer .footer-container {
        grid-template-columns: 1fr;
    }
}

.brand-col .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 20px;
}

.brand-col .footer-brand img {
    height: 40px;
}

.brand-col .brand-text {
    font-size: 1.5rem;
    font-family: var(--font-primary, 'Outfit');
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #a0a5b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-col .brand-desc {
    color: #8a8f98;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
    max-width: 85%;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    max-width: 90%;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.newsletter-form:focus-within {
    border-color: rgba(164, 29, 54, 0.3);
    box-shadow: 0 0 15px rgba(164, 29, 54, 0.1);
}

.nl-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
}

.nl-input-wrapper i {
    color: #666;
    font-size: 1.2rem;
}

.nl-input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.btn-nl {
    background: rgba(164, 29, 54, 0.1);
    border: 1px solid rgba(164, 29, 54, 0.2);
    color: #a41d36;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-nl:hover {
    background: rgba(164, 29, 54, 0.2);
    box-shadow: 0 0 15px rgba(164, 29, 54, 0.3);
    transform: translateX(3px);
}

.col-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: var(--font-primary, 'Outfit');
    letter-spacing: 1px;
    text-transform: uppercase;
}

.advanced-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advanced-footer .footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.advanced-footer .footer-links a {
    color: #8a8f98;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.advanced-footer .footer-links a:hover {
    color: #fff;
}

.hover-underline {
    position: relative;
    padding-bottom: 2px;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #a41d36;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-underline:hover::after {
    width: 100%;
}

.badge-soon {
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.2);
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 12px;
    letter-spacing: 1px;
}

.social-orbs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.s-orb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a5b0;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.s-orb::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-color);
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.s-orb i {
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.s-orb.whatsapp {
    --brand-color: rgba(37, 211, 102, 0.9);
}

.s-orb.facebook {
    --brand-color: rgba(24, 119, 242, 0.9);
}

.s-orb.twitter {
    --brand-color: rgba(20, 23, 26, 0.9);
}

.s-orb.linkedin {
    --brand-color: rgba(10, 102, 194, 0.9);
}

.s-orb:hover::before {
    top: 0;
}

.s-orb:hover i {
    color: #fff;
    transform: scale(1.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(164, 29, 54, 0.05);
    border: 1px solid rgba(164, 29, 54, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #a41d36;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(164, 29, 54, 0.8);
    animation: pulseStatus 2s infinite;
}

.status-text {
    color: #a41d36;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
}

@keyframes pulseStatus {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 15px rgba(164, 29, 54, 0.9);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

@media (max-width: 600px) {
    .fb-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================================================================
   DESIGN YOUR IDENTITY — GLASSMORPHISM STUDIO
   ========================================================================= */
.gi-section {
    position: relative;
    padding: var(--section-pad) 0;
    background: #040408;
    overflow: hidden;
}

.gi-env {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gi-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.gi-orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(164, 29, 54, 0.22) 0%, transparent 70%);
    top: -80px;
    left: -100px;
    animation: gi-drift-1 12s ease-in-out infinite alternate;
}

.gi-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60, 30, 160, 0.18) 0%, transparent 70%);
    bottom: -60px;
    right: -80px;
    animation: gi-drift-2 15s ease-in-out infinite alternate;
}

.gi-orb-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 180, 200, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 55%;
    animation: gi-drift-1 18s ease-in-out infinite alternate-reverse;
}

@keyframes gi-drift-1 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 30px);
    }
}

@keyframes gi-drift-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-30px, -40px);
    }
}

.gi-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
}

.gi-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a41d36;
    background: rgba(164, 29, 54, 0.08);
    border: 1px solid rgba(164, 29, 54, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.gi-workspace {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.gi-panel {
    width: 100%;
}

.gi-panel-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0 0 32px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: box-shadow 0.4s;
}

.gi-panel-glass:hover {
    box-shadow: 0 12px 60px rgba(164, 29, 54, 0.15),
        0 8px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gi-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.gi-header-dots {
    display: flex;
    gap: 7px;
}

.gd-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.gd-red {
    background: #ff5f57;
}

.gd-yellow {
    background: #febc2e;
}

.gd-green {
    background: #28c840;
}

.gi-panel-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.gi-field {
    padding: 0 24px;
    margin-bottom: 22px;
}

.gi-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.gi-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.gi-input-icon {
    position: absolute;
    left: 14px;
    color: #a41d36;
    font-size: 1rem;
    opacity: 0.7;
    pointer-events: none;
}

.gi-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 13px 16px 13px 42px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.gi-input::placeholder {
    color: #444;
}

.gi-input:focus {
    border-color: rgba(164, 29, 54, 0.5);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(164, 29, 54, 0.1);
}

.gi-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    margin: 4px 24px 22px;
}

.gi-theme-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gi-theme-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    color: #999;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
    text-align: left;
}

.gi-theme-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #ccc;
}

.gi-theme-btn.active {
    border-color: rgba(164, 29, 54, 0.4);
    background: rgba(164, 29, 54, 0.08);
    color: #fff;
}

.gi-theme-swatch {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    flex-shrink: 0;
}

.gi-theme-check {
    margin-left: auto;
    color: #a41d36;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.gi-theme-btn.active .gi-theme-check {
    opacity: 1;
}

.gi-orient-row {
    display: flex;
    gap: 10px;
}

.gi-orient-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 13px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    color: #777;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s;
}

.gi-orient-btn i {
    font-size: 1.2rem;
}

.gi-orient-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: #ccc;
}

.gi-orient-btn.active {
    border-color: rgba(164, 29, 54, 0.4);
    background: rgba(164, 29, 54, 0.08);
    color: #fff;
}

.gi-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 24px 0;
    padding: 16px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #a41d36, #7a1529);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(164, 29, 54, 0.3);
}

.gi-cta-btn:hover {
    background: linear-gradient(135deg, #be2340, #8e182e);
    box-shadow: 0 10px 32px rgba(164, 29, 54, 0.5);
    transform: translateY(-2px);
}

.gi-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.gi-stage-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164, 29, 54, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: gi-pulse 4s ease-in-out infinite;
}

@keyframes gi-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

#previewCard {
    position: relative;
    z-index: 1;
}

.gi-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaa;
    white-space: nowrap;
    animation: gi-float 4s ease-in-out infinite;
    z-index: 2;
}

.gi-badge i {
    color: #a41d36;
    font-size: 0.9rem;
}

.gi-badge-top {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.gi-badge-bottom {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes gi-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 960px) {
    .gi-workspace {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gi-panel {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .gi-badge {
        display: none;
    }
}

/* =========================================================================
   WhatsApp Live Support Button
   ========================================================================= */
.wa-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.5);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: wa-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.wa-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    animation: none;
    color: white;
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.wa-float-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes wa-pulse {
    to {
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .wa-float-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .wa-tooltip {
        display: none;
    }
}