/* ============================================
   LANDING PAGE CSS — QR RESTO SAAS SYSTEM
   ============================================ */

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

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

:root {
    --accent: #FF6B35;
    --accent-2: #F7C59F;
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --dark: #0A0A0F;
    --dark-2: #13131A;
    --dark-3: #1C1C28;
    --dark-4: #252535;
    --border: rgba(255, 255, 255, 0.08);
    --text: #F0F0F5;
    --text-muted: #8888AA;
    --grad-1: linear-gradient(135deg, #FF6B35 0%, #F7C59F 50%, #7C3AED 100%);
    --grad-2: linear-gradient(135deg, #7C3AED 0%, #FF6B35 100%);
    --radius: 16px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* GRADIENT TEXT */
.gradient-text {
    background: var(--grad-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--dark-3);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav--scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.nav__actions-group {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text);
}

.logo-svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.3));
    animation: logoBreath 3s infinite ease-in-out;
}

.nav__brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.brand-name strong {
    color: var(--accent);
}

.brand-tagline {
    font-family: var(--font-mono);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

.logo-icon {
    font-size: 22px;
    color: var(--accent);
}

@keyframes logoBreath {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    animation: glowDrift 20s infinite alternate linear;
}

@keyframes glowDrift {
    0% {
        transform: translate(-50%, -55%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -45%) rotate(5deg);
    }
}

.btn-primary {
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(30deg);
    transition: 0.6s ease-in-out;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 100%;
}

.nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav__links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

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

.nav-link-login { 
    color: #FFFFFF !important; 
    font-weight: 800 !important; 
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 14px !important;
    padding: 14px 32px !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 14px !important;
    margin-left: 40px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
}

.nav-link-login:hover { 
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.3) !important;
    color: #FFFFFF !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    transform: translateY(-2px);
}

.nav__cta {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none !important;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -100px;
    left: -100px;
    animation: float 8s infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -50px;
    right: 200px;
    animation: float 10s infinite reverse;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: #06B6D4;
    top: 30%;
    right: 0;
    animation: float 6s infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero__showcase {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.hero__content {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    pointer-events: auto !important;
}

.hero__text {
    flex: 1.2;
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero__title {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 32px;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.hero__subtitle {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__3d-scene {
    position: relative;
    width: 600px;
    height: 500px;
    perspective: 3000px;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__table-surface {
    position: absolute;
    bottom: 0;
    width: 1000px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    transform: rotateX(75deg) translateY(250px);
    border-radius: 50%;
    z-index: 1;
}

.stand--realist {
    position: absolute;
    bottom: 20%;
    left: 20%;
    transform: rotateY(20deg) rotateX(10deg);
    background: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: -20px 40px 60px rgba(0, 0, 0, 0.8);
    z-index: 5;
    text-align: center;
}

.scan-beam-visual {
    position: absolute;
    top: 35%;
    left: 45%;
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    box-shadow: 0 0 20px var(--accent);
    transform: rotate(-30deg) skewX(45deg);
    z-index: 8;
    opacity: 0.4;
    animation: beamSync 2s infinite alternate ease-in-out;
}

@keyframes beamSync {
    0% {
        opacity: 0.2;
        transform: rotate(-30deg) skewX(45deg) scaleX(0.8);
    }

    100% {
        opacity: 0.6;
        transform: rotate(-30deg) skewX(45deg) scaleX(1.2);
    }
}

.frame--realist {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-20deg) rotateX(15deg) scale(1.1);
    z-index: 10;
    filter: drop-shadow(40px 60px 100px rgba(0, 0, 0, 0.7));
}

@keyframes scanFloatRealist {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateY(-20deg) rotateX(15deg) scale(1.1);
    }

    50% {
        transform: translate(-50%, -60px) rotateY(-15deg) rotateX(20deg) scale(1.15);
    }
}

/* STAT BAR */
.stat-bar {
    background: var(--dark-2);
    padding: 40px 0;
}

.stat-bar__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.sb-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sb-item strong {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
}

.sb-item span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* JOURNEY SECTION */
.journey {
    padding: 120px 0;
}

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

.section-tag {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
}

.journey-flow {
    display: flex;
    flex-direction: column;
    gap: 160px;
    position: relative;
}

.j-step {
    display: flex;
    align-items: center;
    gap: 80px;
}

.j-step--reverse {
    flex-direction: row-reverse;
}

.j-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1200px;
}

.j-line {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 160px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    z-index: -1;
}

.j-text {
    flex: 1;
    position: relative;
}

.j-num {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    font-family: 'Space Grotesk', sans-serif;
}

.j-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.j-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.j-text strong {
    color: var(--accent);
}

/* MOCKUPS */
.phone-frame {
    width: 280px;
    height: 560px;
    background: #010101;
    border-radius: 45px;
    padding: 10px;
    border: 3px solid #1a1a1a;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.phone-screen {
    background: var(--dark-3);
    border-radius: 35px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-screen--scan {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #010101;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 100;
}

.phone-status-bar {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 90;
    font-size: 10px;
    font-weight: 700;
    color: white;
    opacity: 0.8;
}

.phone-glare {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 150%;
    height: 60%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    transform: rotate(-30deg);
    pointer-events: none;
    z-index: 80;
}

.phone-float-label {
    position: absolute;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    z-index: 200;
    animation: driftLabel 4s infinite ease-in-out;
}

.label--top {
    top: -40px;
    left: -100px;
    animation-delay: 0.5s;
}

.label--bottom {
    bottom: 20px;
    right: -120px;
}

@keyframes driftLabel {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

/* CYBER BRACKETS */
.phone-screen--scan::before,
.phone-screen--scan::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    z-index: 10;
    pointer-events: none;
    animation: cornerPulse 4s infinite;
}

@keyframes cornerPulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.mockup-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent), 0 0 60px var(--accent);
    animation: scanMoveLine 2.5s infinite ease-in-out;
    z-index: 20;
}

.mockup-scan-line::after {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, var(--accent), transparent);
    opacity: 0.2;
}

@keyframes scanMoveLine {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

.mockup-qr-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 5;
    animation: qrBreathe 4s infinite ease-in-out;
}

@keyframes qrBreathe {

    0%,
    100% {
        transform: scale(0.95);
        filter: brightness(0.8);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

.qr-scan-text {
    font-size: 11px;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textGlitch 2s infinite;
}

@keyframes textGlitch {

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

    10%,
    30% {
        transform: translateX(-2px) skewX(2deg);
        color: #fff;
    }

    20% {
        transform: translateX(2px) skewX(-2deg);
        color: var(--accent);
    }

    50% {
        opacity: 0.4;
    }
}

.phone-header {
    background: var(--accent);
    padding: 30px 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-logo {
    font-size: 12px;
    font-weight: 800;
    color: white;
}

.table-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
}

.phone-menu {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: var(--dark-3);
}

.phone-cat {
    padding: 6px 12px;
    background: var(--dark-4);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
}

.phone-cat.active {
    background: var(--accent);
    color: white;
}

.phone-items {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.phone-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark-4);
    padding: 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.pi-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.veg-dot,
.nonveg-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
}

.veg-dot {
    background: #10B981;
    box-shadow: 0 0 5px #10B981;
}

.nonveg-dot {
    background: #EF4444;
    box-shadow: 0 0 5px #EF4444;
}

.pi-name {
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.pi-price {
    font-size: 10px;
    color: var(--accent-2);
}

.pi-add {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 900;
    cursor: pointer;
}

.pi-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.pi-qty button {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 900;
    cursor: pointer;
}

.pi-qty span {
    font-size: 11px;
    font-weight: 800;
    color: white;
}

.phone-cart {
    background: var(--accent);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.phone-cart span {
    font-size: 12px;
    font-weight: 800;
    color: white;
}

.phone-cart button {
    background: white;
    color: var(--accent);
    border: none;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
}

.mini-app-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 15px 15px;
    gap: 10px;
}

.mini-header {
    font-size: 12px;
    font-weight: 900;
    color: var(--accent);
    text-align: center;
}

.mini-item {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    font-size: 10px;
}

.mini-cart {
    background: var(--accent);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 10px;
    font-weight: 900;
    margin-top: auto;
}

.kitchen-mockup-box {
    width: 100%;
    max-width: 440px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: rotateY(15deg);
}

.k-header {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}


.k-order {
    background: var(--dark-3);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.k-order--new {
    border-left: 4px solid var(--accent);
}

.k-status {
    font-size: 10px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 4px;
    background: var(--accent);
    color: white;
}

.owner-mockup-box {
    width: 100%;
    max-width: 400px;
    background: var(--dark-2);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.o-stat {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
}

.o-stat small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.o-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    margin-top: 20px;
}

.o-bar {
    flex: 1;
    background: var(--accent);
    opacity: 0.8;
    border-radius: 3px 3px 0 0;
}

.desktop-mockup {
    width: 100%;
    max-width: 500px;
    background: var(--dark-2);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transform: rotateY(-15deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.desktop-head {
    background: var(--dark-3);
    padding: 10px 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.address-bar {
    background: var(--dark);
    padding: 4px 15px;
    border-radius: 20px;
    flex: 1;
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
}

.dv-table {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dv-row {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 10px;
}

.dv-row em {
    font-style: normal;
    font-weight: 800;
    color: #10B981;
}

/* FEATURES GRID */
.features {
    padding: 120px 0;
    background: var(--dark-2);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .features__grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--dark-3);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: var(--dark-4);
}

.feature-card--primary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), var(--dark-3));
    border-color: rgba(255, 107, 53, 0.3);
}

.f-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* AD SECTION */
.ad-section {
    padding: 140px 0;
}

.ad-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.ad-content h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    font-family: 'Space Grotesk', sans-serif;
}

.ad-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.ad-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.ad-stat__val {
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--accent);
    line-height: 1;
}

.ad-stat__lab {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.rapid-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

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

.rs-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.sb-item strong {
    display: block;
    font-size: 32px;
    font-family: 'IBM Plex Mono', monospace;
    color: white;
}

.rs-item div strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.rs-item div small {
    font-size: 11px;
    color: var(--text-muted);
}

.trust-footer {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

.mockup-glow-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: glowRing 4s infinite alternate;
}

@keyframes glowRing {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.ad-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-table {
    position: absolute;
    bottom: 0;
    width: 500px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    filter: blur(20px);
    transform: rotateX(70deg);
}

.mockup-qr-code {
    width: 140px;
    height: 140px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.qr-code--hero {
    position: absolute;
    left: 15%;
    top: 30%;
    transform: rotateY(30deg);
    z-index: 5;
}

.mockup-dish-preview {
    position: absolute;
    top: 10%;
    left: -50px;
    width: 200px;
    background: var(--dark-2);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: driftLabel 5s infinite ease-in-out reverse;
}

.mockup-dish-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.mdp-info {
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.mdp-info strong {
    display: block;
    font-size: 13px;
    color: var(--accent);
}

.mdp-info small {
    font-size: 11px;
    color: var(--text-muted);
}

.qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: sepia(100%) saturate(1000%) hue-rotate(330deg);
    opacity: 1;
}

.qr-mockup-branding {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.qr-mockup-branding svg {
    width: 24px;
    height: 24px;
}

/* PRICING */
.pricing {
    padding: 120px 0;
    background: var(--dark);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pricing__grid {
        grid-template-columns: 1fr;
    }
}

.plan-card {
    background: var(--dark-2);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.plan-card--featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), var(--dark-2));
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
}

.plan-price span {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
}

.plan-price {
    font-size: 20px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin: 20px 0;
}

.plan-features li {
    font-size: 15px;
    color: var(--text);
}

/* FOOTER */
.footer {
    background: var(--dark-2);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 80px;
}

.footer__links-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.f-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.f-col a {
    display: block;
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.f-col a:hover {
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.footer__social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer__social a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer__social a svg {
    margin-top: -2px;
}

.footer__social a:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .footer__top {
        flex-direction: column;
        gap: 50px;
    }
    .footer__links-grid {
        justify-content: flex-start;
        gap: 40px;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ============================================
   MODAL SYSTEM
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(40px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.modal-body {
    padding: 60px;
}

/* Modal Content Styles */
.modal-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.modal-input {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--dark-4);
}

textarea.modal-input {
    min-height: 120px;
    resize: vertical;
}

.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.ms-item strong { display: block; font-size: 32px; font-weight: 800; color: var(--accent); }
.ms-item span { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 768px) {
    .modal-body { padding: 40px 24px; }
    .modal-info-grid { grid-template-columns: 1fr; }
    .modal-title { font-size: 32px; }
}

/* ============================================
   ABOUT & CONTACT PREMIUM POPUP STYLES
   ============================================ */

/* 0. SYSTEM PRELOADER / SPLASH SCREEN */
.preloader {
    position: fixed;
    inset: 0;
    background: #030303;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


/* ============================================
   ENTERPRISE ELITE SPLASH (LANDING ADAPTATION)
   ============================================ */
.qrdar-splash-screen {
    position: fixed !important;
    inset: 0 !important;
    background: #050508 !important;
    z-index: 2147483647 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.qrdar-splash-screen.splash-exit {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);
    filter: blur(30px);
}

/* Background Atmosphere */
.splash-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.splash-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,103,51,0.05) 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.splash-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,103,51,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

/* Container & Assembly */
.splash-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.splash-logo-box {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-svg {
    width: 100%;
    height: 100%;
    z-index: 2;
}

.splash-path-hex {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: splashDraw 2.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.splash-path-details {
    opacity: 0;
    animation: splashFadeIn 0.8s ease-out forwards 0.8s;
}

.splash-p { transform-origin: bottom; transform: scaleY(0); animation: splashGrow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.p-1 { animation-delay: 1.1s; }
.p-2 { animation-delay: 1.3s; }

.splash-c { opacity: 0; transform: scale(0.9); animation: splashSnap 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.splash-c:nth-child(3) { animation-delay: 1.5s; }
.splash-c:nth-child(4) { animation-delay: 1.7s; }
.splash-c:nth-child(5) { animation-delay: 1.9s; }

.splash-tail-elite { stroke-dasharray: 60; stroke-dashoffset: 60; animation: splashDraw 0.6s ease-out forwards 2.1s; }

@keyframes splashDraw { to { stroke-dashoffset: 0; } }
@keyframes splashFadeIn { to { opacity: 1; } }
@keyframes splashGrow { to { transform: scaleY(1); } }
@keyframes splashSnap { to { opacity: 1; transform: scale(1); } }

.splash-aura-rings .ring {
    position: absolute;
    inset: -30px;
    border: 1px solid rgba(255,103,51,0.15);
    border-radius: 50%;
    animation: splashPulse 3s infinite ease-out;
}
.ring:nth-child(2) { animation-delay: 1.5s; }

@keyframes splashPulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Branding Reveal */
.splash-branding {
    text-align: center;
}

.splash-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: splashRise 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s;
}

.active-dot { color: #FF6733; }

.splash-tagline-barrier { overflow: hidden; margin-top: -5px; }

.splash-tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    animation: splashSlideUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 1.3s;
}

@keyframes splashRise { to { opacity: 1; transform: translateY(0); } }
@keyframes splashSlideUp { to { opacity: 1; transform: translateY(0); } }

.splash-loading-interface {
    margin-top: 30px;
}

.loader-line {
    width: 160px;
    height: 1.5px;
    background: rgba(255,255,255,0.05);
    border-radius: 1px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: #FF6733;
    box-shadow: 0 0 15px rgba(255,103,51,0.5);
    animation: splashFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashFill { to { width: 100%; } }

/* BODY REVEAL */
body.splash-revealed {
    animation: pageDiscovery 0.8s ease-out forwards;
}

@keyframes pageDiscovery {
    0% { opacity: 0.9; transform: scale(0.99); }
    100% { opacity: 1; transform: scale(1); }
}
/* BRANDING ANIMATIONS */
.logo-breathing {
    animation: breathing 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.2));
}

@keyframes breathing {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.2)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.4)); }
}

.nav__logo:hover .logo-svg {
    transform: rotate(-5deg) scale(1.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
