/*
    YerVar Public Redesign CSS
    Clean Modern SaaS Visual Language
    Brand Colors: Primary Green #10e341, Main Background #ffffff, Dark Text #0f172a
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --ys-green: #10e341;
    --ys-green-hover: #0cd03a;
    --ys-green-light: rgba(16, 227, 65, 0.1);
    --ys-green-tint: #f4fbf6;
    --ys-bg: #ffffff;
    --ys-dark: #0f172a;
    --ys-muted: #64748b;
    --ys-border: #e2e8f0;
    --ys-border-subtle: #f1f5f9;
    --ys-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --ys-shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
    --ys-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
    --ys-font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.layout-public {
    margin: 0;
    padding: 0;
    background-color: var(--ys-bg);
    color: var(--ys-dark);
    font-family: var(--ys-font);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

body.layout-public *,
body.layout-public *::before,
body.layout-public *::after {
    box-sizing: border-box;
}

.landing {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body.layout-public h1,
body.layout-public h2,
body.layout-public h3,
body.layout-public h4,
body.layout-public h5,
body.layout-public h6 {
    font-family: var(--ys-font);
    color: var(--ys-dark);
    letter-spacing: -0.02em;
    margin-top: 0;
}

body.layout-public a {
    color: var(--ys-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.landing .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Green Highlight */
.ys-highlight {
    color: var(--ys-green);
    position: relative;
    display: inline-block;
}

/* Shared Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-primary {
    background-color: var(--ys-green);
    color: #ffffff !important;
    border-color: var(--ys-green);
    box-shadow: 0 4px 14px rgba(16, 227, 65, 0.3);
}

.btn-primary:hover {
    background-color: var(--ys-green-hover);
    border-color: var(--ys-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 227, 65, 0.4);
}

.btn-outline {
    background-color: #ffffff;
    color: var(--ys-green) !important;
    border-color: var(--ys-green);
}

.btn-outline:hover {
    background-color: var(--ys-green);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-cta {
    background-color: #ffffff;
    color: var(--ys-green) !important;
    font-weight: 700;
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #f8fafc;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* ==========================================================================
   1. HEADER
   ========================================================================== */
.landing-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ys-border-subtle);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.landing-header.scrolled {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ys-dark);
    letter-spacing: -0.03em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155 !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--ys-green) !important;
}

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

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--ys-dark);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(16, 227, 65, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(16, 227, 65, 0.03) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--ys-green-light);
    color: var(--ys-green);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 227, 65, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--ys-green);
    border-radius: 50%;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ys-dark);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--ys-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-actions .btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 10px;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-1 {
    background-color: #3b82f6;
}

.avatar-2 {
    background-color: #10b981;
}

.avatar-3 {
    background-color: #f59e0b;
}

.avatar-4 {
    background-color: #8b5cf6;
}

.proof-info {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.proof-text {
    font-size: 0.88rem;
    color: var(--ys-muted);
}

.proof-text strong {
    color: var(--ys-dark);
}

/* Smartphone Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 580px;
    overflow: visible;
}

.hero-glow-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 227, 65, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

.hero-glow-bg-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(-30%, -60%);
    animation: glowPulse 5s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Orbiting Dots */
.hero-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 460px;
    z-index: 0;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: orbitSpin 12s linear infinite;
}

.orbit-1 {
    background: var(--ys-green);
    top: 0;
    left: 50%;
    box-shadow: 0 0 12px rgba(16, 227, 65, 0.6);
    animation-delay: 0s;
}

.orbit-2 {
    background: #3b82f6;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation-delay: -3s;
    animation-duration: 16s;
}

.orbit-3 {
    background: #f59e0b;
    bottom: 0;
    left: 50%;
    width: 5px;
    height: 5px;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    animation-delay: -6s;
    animation-duration: 20s;
}

.orbit-4 {
    background: #8b5cf6;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    animation-delay: -9s;
    animation-duration: 14s;
}

@keyframes orbitSpin {
    0% {
        transform: rotate(0deg) translateX(230px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(230px) rotate(-360deg);
    }
}

/* Devices Wrapper */
.devices-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    padding-top: 20px;
}

/* ============================================
   LAPTOP MOCKUP (advanced)
   ============================================ */
.laptop-mockup-advanced {
    position: relative;
    z-index: 1;
    transform: perspective(1200px) rotateY(8deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.laptop-mockup-advanced:hover {
    transform: perspective(1200px) rotateY(4deg) rotateX(1deg);
}

.laptop-frame-adv {
    background: linear-gradient(145deg, #2a2a2e, #1a1a1e);
    border-radius: 16px 16px 0 0;
    padding: 8px 8px 0 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.laptop-camera {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    margin: 4px auto 4px;
    border: 1px solid #444;
}

.laptop-bezel {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.laptop-topbar-adv {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: #1a1a1e;
    border-bottom: 1px solid #333;
}

.laptop-dots-adv {
    display: flex;
    gap: 5px;
}

.ldot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ldot.red {
    background: #ef4444;
}

.ldot.yellow {
    background: #f59e0b;
}

.ldot.green {
    background: #22c55e;
}

.laptop-url-bar {
    flex: 1;
    background: #0f0f12;
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: #888;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.laptop-url-bar svg {
    color: #22c55e;
    flex-shrink: 0;
}

.laptop-screen-adv {
    background: #f8fafc;
    height: 310px;
    display: flex;
    overflow: hidden;
}

/* Dashboard Sidebar */
.dash-adv-sidebar {
    width: 56px;
    background: #0f172a;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.dash-adv-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.dash-adv-nav-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    padding: 8px 0;
}

.dash-adv-nav-item {
    padding: 6px 4px;
    font-size: 0.5rem;
    color: #64748b;
    text-align: center;
    border-radius: 6px;
    cursor: default;
    line-height: 1.2;
}

.dash-adv-nav-item .nav-icon {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 1px;
}

.dash-adv-nav-item.active {
    background: rgba(16, 227, 65, 0.15);
    color: #22c55e;
}

/* Dashboard Main */
.dash-adv-main {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.dash-adv-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-adv-greeting {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
}

.dash-adv-date {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* Stats Cards */
.dash-adv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dash-adv-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.adv-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.adv-stat-icon.blue {
    background: #eff6ff;
}

.adv-stat-icon.green {
    background: #f0fdf4;
}

.adv-stat-icon.amber {
    background: #fffbeb;
}

.adv-stat-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.adv-stat-lbl {
    font-size: 0.55rem;
    color: #94a3b8;
}

/* Chart */
.dash-adv-chart {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dash-adv-chart-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.dash-adv-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    flex: 1;
    padding-bottom: 18px;
    position: relative;
}

.adv-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(to top, #e2e8f0, #cbd5e1);
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 10px;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.adv-bar.active {
    background: linear-gradient(to top, #22c55e, #4ade80);
}

.adv-bar span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: #94a3b8;
    white-space: nowrap;
}

@keyframes barGrow {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Mini Table */
.dash-adv-table-mini {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.6rem;
}

.dtable-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 4px 6px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #f1f5f9;
}

.dtable-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 5px 6px;
    align-items: center;
    color: #334155;
    border-bottom: 1px solid #f8fafc;
}

.dstatus {
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.5rem;
    text-align: center;
    display: inline-block;
}

.dstatus.confirmed {
    background: #dcfce7;
    color: #15803d;
}

.dstatus.pending {
    background: #fef3c7;
    color: #b45309;
}

/* Laptop Base */
.laptop-base-adv {
    background: linear-gradient(180deg, #2a2a2e 0%, #3a3a3e 100%);
    height: 14px;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.laptop-notch-adv {
    width: 80px;
    height: 4px;
    background: #555;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    top: 4px;
}

.laptop-reflection {
    position: absolute;
    bottom: -60px;
    left: 10%;
    right: 10%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
    filter: blur(8px);
    border-radius: 0 0 50% 50%;
}

/* ============================================
   PHONE MOCKUP (advanced)
   ============================================ */
.phone-mockup-advanced {
    position: relative;
    z-index: 3;
    margin-left: -30px;
    margin-bottom: -20px;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

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

    50% {
        transform: translateY(-12px);
    }
}

.phone-frame-adv {
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch-adv {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 5;
}

.phone-notch-adv::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 1px solid #333;
}

.phone-screen-adv {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.phone-statusbar-adv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0f172a;
}

.psb-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-app-header-adv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px 10px;
}

.phone-app-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
}

.phone-app-brand img {
    width: 22px;
    height: 22px;
    border-radius: 5px;
}

.phone-app-avatar-adv {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.phone-body-adv {
    flex: 1;
    padding: 0 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

/* Welcome */
.phone-welcome-adv {
    padding: 0 2px;
}

.pwa-greeting {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
}

.pwa-sub {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 1px;
}

/* Phone Stats */
.phone-stats-adv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pstat-adv {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
}

.pstat-adv.accent {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: rgba(34, 197, 94, 0.3);
}

.pstat-adv-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pstat-adv.accent .pstat-adv-val {
    color: #16a34a;
}

.pstat-adv-lbl {
    font-size: 0.6rem;
    color: #94a3b8;
    margin: 2px 0 6px;
}

.pstat-adv-bar {
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.pstat-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 3px;
    animation: fillGrow 2s ease-out forwards;
}

@keyframes fillGrow {
    from {
        width: 0 !important;
    }
}

/* Phone Reservation Section */
.phone-section-label-adv {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 2px;
}

.phone-res-adv {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pres-item-adv {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    animation: slideInRight 0.5s ease-out backwards;
    animation-delay: calc(var(--delay) * 0.15s);
}

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

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

.pres-avatar-adv {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.green-bg {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.amber-bg {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.blue-bg {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.pres-info-adv {
    flex: 1;
    min-width: 0;
}

.pres-name-adv {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pres-meta-adv {
    font-size: 0.55rem;
    color: #94a3b8;
}

.pres-badge-adv {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.pres-badge-adv.confirmed {
    background: #dcfce7;
    color: #15803d;
}

.pres-badge-adv.pending {
    background: #fef3c7;
    color: #b45309;
}

/* Phone Bottom Nav */
.phone-bottom-nav-adv {
    display: flex;
    justify-content: space-around;
    padding: 8px 4px 6px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.pnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.5rem;
    color: #94a3b8;
}

.pnav-item.active {
    color: #22c55e;
}

.pnav-item.active svg {
    filter: drop-shadow(0 1px 4px rgba(34, 197, 94, 0.4));
}

/* Phone Home Indicator */
.phone-home-indicator-adv {
    width: 40%;
    height: 4px;
    background: #666;
    border-radius: 4px;
    margin: 6px auto 4px;
}

.phone-reflection-adv {
    position: absolute;
    bottom: -40px;
    left: 15%;
    right: 15%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    filter: blur(6px);
    border-radius: 0 0 50% 50%;
}

/* ============================================
   GLASS FLOATING CARDS
   ============================================ */
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: glassFloat 5s ease-in-out infinite;
}

.glass-card-1 {
    top: 30px;
    left: -10px;
    animation-delay: 0s;
}

.glass-card-2 {
    bottom: 80px;
    right: -20px;
    animation-delay: -1.5s;
}

.glass-card-3 {
    bottom: 20px;
    left: -25px;
    animation-delay: -3s;
}

@keyframes glassFloat {

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

    50% {
        transform: translateY(-8px);
    }
}

.glass-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.green-glow {
    background: #dcfce7;
    color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.amber-glow {
    background: #fef3c7;
    color: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.blue-glow {
    background: #dbeafe;
    color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.glass-card-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
}

.glass-card-sub {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* ==========================================================================
   3. FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

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

.section-header.center {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ys-green);
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ys-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--ys-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--ys-border);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    box-shadow: var(--ys-shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ys-shadow-md);
    border-color: var(--ys-green);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--ys-green-light);
    color: var(--ys-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ys-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--ys-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   4. MANAGEMENT / DASHBOARD SECTION
   ========================================================================== */
.dashboard-section {
    padding: 60px 0 100px 0;
    overflow: hidden;
}

.dashboard-box {
    background: var(--ys-green-tint);
    border-radius: 32px;
    padding: 60px;
    border: 1px solid rgba(16, 227, 65, 0.15);
    box-shadow: var(--ys-shadow-md);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ys-green);
    display: inline-block;
    margin-bottom: 12px;
}

.dashboard-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ys-dark);
    margin-bottom: 18px;
    line-height: 1.25;
}

.dashboard-content p {
    font-size: 1.05rem;
    color: var(--ys-muted);
    margin-bottom: 28px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ys-dark);
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ys-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Laptop Mockup - Advanced Dashboard */
.dash-laptop-adv {
    position: relative;
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.dash-laptop-adv:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.dlaptop-lid {
    background: linear-gradient(145deg, #2a2a2e, #1a1a1e);
    border-radius: 16px 16px 0 0;
    padding: 8px 8px 0 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.dlaptop-camera {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    margin: 4px auto 4px;
    border: 1px solid #444;
}

.dlaptop-screen {
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.dl-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.dl-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dl-dots-group {
    display: flex;
    gap: 5px;
}

.dldot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dldot.r {
    background: #ef4444;
}

.dldot.y {
    background: #f59e0b;
}

.dldot.g {
    background: #22c55e;
}

.dl-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    color: #e2e8f0;
    background: rgba(34, 197, 94, 0.15);
    font-weight: 600;
}

.dl-tab i {
    font-size: 0.6rem;
    color: #22c55e;
}

.dl-tab.inactive {
    background: transparent;
    color: #64748b;
}

.dl-tab.inactive i {
    color: #64748b;
}

.dl-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dl-search {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #0f172a;
    border-radius: 6px;
    font-size: 0.6rem;
    color: #64748b;
}

.dl-notif {
    position: relative;
    color: #94a3b8;
    font-size: 0.75rem;
}

.dl-notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
}

.dl-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}

/* Dashboard Content Layout */
.dl-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar */
.dl-sidebar {
    width: 52px;
    background: #0f172a;
    border-right: 1px solid #1e293b;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.dl-sidebar-logo img {
    width: 26px;
    height: 26px;
    border-radius: 6px;
}

.dl-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    padding: 12px 0;
}

.dl-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 6px 2px;
    font-size: 0.45rem;
    color: #64748b;
    border-radius: 6px;
    margin: 0 4px;
}

.dl-menu-item i {
    font-size: 0.7rem;
}

.dl-menu-item.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.dl-menu-item.active i {
    color: #22c55e;
}

/* Main Area */
.dl-main {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f1f5f9;
    overflow: hidden;
}

.dl-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dl-greeting {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
}

.dl-subtitle {
    font-size: 0.6rem;
    color: #94a3b8;
    margin-top: 1px;
}

.dl-header-actions {
    display: flex;
    gap: 6px;
}

.dl-btn-sm {
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 0.55rem;
    font-weight: 600;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dl-btn-primary-sm {
    padding: 4px 8px;
    border-radius: 6px;
    border: none;
    background: #22c55e;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 600;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Stats Row */
.dl-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.dl-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dl-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.dl-stat-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.dl-stat-icon.green {
    background: #f0fdf4;
    color: #22c55e;
}

.dl-stat-icon.amber {
    background: #fffbeb;
    color: #f59e0b;
}

.dl-stat-icon.red {
    background: #fef2f2;
    color: #ef4444;
}

.dl-stat-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.dl-stat-lbl {
    font-size: 0.5rem;
    color: #94a3b8;
}

.dl-stat-trend {
    font-size: 0.5rem;
    font-weight: 700;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
}

.dl-stat-trend.up {
    color: #22c55e;
}

.dl-stat-trend.down {
    color: #ef4444;
}

/* Bottom Row */
.dl-bottom-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.dl-table-wrap {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dl-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #f1f5f9;
}

.dl-table-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dl-table-title i {
    color: #94a3b8;
}

.dl-table-link {
    font-size: 0.55rem;
    color: #22c55e;
    font-weight: 600;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dl-table {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dl-thead {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    padding: 5px 12px;
    font-size: 0.5rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.dl-trow {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    padding: 6px 12px;
    font-size: 0.55rem;
    color: #334155;
    align-items: center;
    border-bottom: 1px solid #f8fafc;
}

.dl-cust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.dl-cust-av {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.green-av {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.amber-av {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.blue-av {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.purple-av {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.dl-badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.dl-badge.confirmed {
    background: #dcfce7;
    color: #15803d;
}

.dl-badge.pending {
    background: #fef3c7;
    color: #b45309;
}

.dl-badge.seated {
    background: #dbeafe;
    color: #2563eb;
}

/* Chart Area */
.dl-chart-area {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
}

.dl-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dl-chart-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dl-chart-title i {
    color: #94a3b8;
}

.dl-chart-tabs {
    display: flex;
    gap: 0;
    font-size: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.dl-chart-tabs span {
    padding: 2px 8px;
    font-weight: 600;
    color: #94a3b8;
    cursor: default;
}

.dl-chart-tabs span.active {
    background: #0f172a;
    color: #fff;
}

.dl-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex: 1;
    padding-bottom: 18px;
    position: relative;
}

.dl-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.dl-bar {
    width: 100%;
    height: var(--h);
    background: linear-gradient(to top, #cbd5e1, #e2e8f0);
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 8px;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.dl-bar.highlight {
    background: linear-gradient(to top, #22c55e, #4ade80);
}

.dl-bar span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.45rem;
    color: #94a3b8;
    white-space: nowrap;
}

/* Laptop Base */
.dlaptop-base {
    background: linear-gradient(180deg, #2a2a2e 0%, #3a3a3e 100%);
    height: 14px;
    border-radius: 0 0 12px 12px;
    position: relative;
}

.dlaptop-notch {
    width: 80px;
    height: 4px;
    background: #555;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    top: 4px;
}

.dlaptop-shadow {
    position: absolute;
    bottom: -50px;
    left: 5%;
    right: 5%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
    filter: blur(8px);
    border-radius: 0 0 50% 50%;
}

/* ==========================================================================
   5. HOW IT WORKS SECTION
   ========================================================================== */
.steps-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--ys-border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--ys-shadow-sm);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--ys-green);
    box-shadow: var(--ys-shadow-md);
}

.step-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ys-green);
    margin-bottom: 20px;
    display: inline-block;
    background: var(--ys-green-light);
    padding: 4px 16px;
    border-radius: 12px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ys-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--ys-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   6. PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--ys-bg);
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.price-card {
    background: #ffffff;
    border: 1.5px solid var(--ys-border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    box-shadow: var(--ys-shadow-sm);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ys-shadow-md);
}

.price-card.featured {
    border-color: var(--ys-green);
    box-shadow: 0 15px 40px rgba(16, 227, 65, 0.15);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ys-green);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
}

.plan-header {
    margin-bottom: 24px;

}

.plan-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ys-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.price-card.featured .plan-name {
    color: var(--ys-green);
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ys-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ys-muted);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--ys-muted);
    margin: 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--ys-border-subtle);
    padding-top: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--ys-dark);
    font-weight: 500;
}

.plan-features .chk {
    color: var(--ys-green);
    font-weight: 800;
}

/* Support Card */
.support-card {
    background: var(--ys-green-tint);
    border: 1px solid rgba(16, 227, 65, 0.2);
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.support-icon {
    font-size: 2.2rem;
}

.support-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ys-dark);
    margin-bottom: 4px;
}

.support-text p {
    font-size: 0.92rem;
    color: var(--ys-muted);
    margin: 0;
}

/* ==========================================================================
   7. CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 60px 0 100px 0;
    overflow: hidden;
}

.cta-banner {
    background: var(--ys-green);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(16, 227, 65, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-action {
    flex-shrink: 0;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--ys-border);
    padding: 80px 0 40px 0;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--ys-muted);
    margin: 16px 0 24px 0;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--ys-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--ys-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ys-dark);
    margin-bottom: 20px;
}

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

.footer-col a,
.footer-col span {
    font-size: 0.92rem;
    color: var(--ys-muted);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--ys-green);
}

.footer-bottom {
    border-top: 1px solid var(--ys-border-subtle);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--ys-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
}

.footer-bottom-links a {
    color: var(--ys-muted);
}

.footer-bottom-links a:hover {
    color: var(--ys-green);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #ffffff;
    z-index: 1060;
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-nav-panel.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--ys-dark);
    transition: background 0.2s;
}

.mobile-nav-close:hover {
    background: #e5e5e5;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ys-dark);
    padding: 14px 12px;
    border-radius: 12px;
    transition: background 0.2s;
}

.mobile-nav-links a:hover {
    background: #f5f5f5;
}

.mobile-nav-links a i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.mobile-nav-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0 16px;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dash-laptop-adv {
        transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    }

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

    .price-card.featured {
        transform: none;
    }

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

    .laptop-mockup-advanced {
        transform: perspective(1200px) rotateY(4deg) rotateX(1deg);
    }

    .devices-wrapper {
        gap: 0;
    }

    .phone-mockup-advanced {
        margin-left: -20px;
    }

    .glass-card-2 {
        right: -10px;
    }

    .glass-card-3 {
        left: -15px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-social-proof {
        justify-content: center;
    }
    .hero-visual, .dash-laptop-adv, .dashboard-visual {
        display: none !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-nav,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-section {
        padding: 50px 0 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .hero-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    /* Features */
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    /* Dashboard */
    .dashboard-section {
        padding: 40px 0 60px 0;
    }

    .dashboard-box {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .dashboard-content h2 {
        font-size: 1.6rem;
    }

    .dashboard-content p {
        font-size: 0.95rem;
    }

    .dash-laptop-adv {
        display: none;
    }

    .dlaptop-screen {
        height: 280px;
    }

    .dl-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .dl-stat-card {
        padding: 8px 10px;
    }

    .dl-stat-val {
        font-size: 0.8rem;
    }

    .dl-bottom-row {
        grid-template-columns: 1fr;
    }

    .dl-table-wrap {
        display: none;
    }

    .dl-chart-area {
        min-height: 180px;
    }

    /* Steps */
    .steps-section {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 28px 24px;
    }

    /* Pricing */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        gap: 20px;
    }

    .price-card {
        padding: 28px 24px;
    }

    .support-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0 60px 0;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        border-radius: 24px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    /* Footer */
    .site-footer {
        padding: 50px 0 30px 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }
}

/* Ultra Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-visual {
        transform: scale(0.65);
        min-height: 320px;
    }

    .hero-actions {
        max-width: 280px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .dlaptop-screen {
        height: 240px;
    }

    .dl-sidebar {
        width: 40px;
    }

    .dl-menu-item {
        font-size: 0;
        padding: 6px 2px;
    }

    .dl-menu-item i {
        font-size: 0.65rem;
    }

    .dl-main {
        padding: 8px 10px;
    }

    .dl-greeting {
        font-size: 0.75rem;
    }

    .dl-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .dl-stat-icon {
        width: 26px;
        height: 26px;
        font-size: 0.6rem;
    }

    .dl-stat-val {
        font-size: 0.75rem;
    }

    .dl-stat-trend {
        display: none;
    }

    .cta-banner {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.35rem;
    }

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

    .glass-card {
        display: none;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .hero-visual {
        transform: scale(0.55);
        min-height: 280px;
    }

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

    .dlaptop-screen {
        height: 220px;
    }

    .dl-header-actions {
        display: none;
    }

    .dl-chart-area {
        display: none;
    }
}

/* ==========================================================================
   AUTH PAGES (Login / Register)
   ========================================================================== */
.auth-layout {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.auth-layout::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 227, 65, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.auth-layout::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.auth-form-side {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.auth-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(0,0,0,0.02);
}

.auth-form-card-wide {
    max-width: 540px;
    margin: 0 auto;
}

/* Brand */
.auth-card-brand {
    text-align: center;
    margin-bottom: 32px;
}

.auth-card-brand .logo-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.auth-card-logo {
    height: 48px;
    width: auto;
}

.logo-text-dark {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

/* Header */
.auth-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-card-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.auth-card-header p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
}

/* Alerts */
.ys-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.ys-alert svg, .ys-alert i {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 1rem;
}

.ys-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.ys-alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

/* Fields */
.ys-field {
    margin-bottom: 20px;
}

.ys-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.ys-label-hint {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.8rem;
}

.ys-field input[type="text"],
.ys-field input[type="email"],
.ys-field input[type="password"],
.ys-field input[type="tel"],
.ys-field input[type="number"],
.ys-field select,
.ys-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
    outline: none;
}

.ys-field input:focus,
.ys-field select:focus,
.ys-field textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.ys-field input::placeholder,
.ys-field textarea::placeholder {
    color: #cbd5e1;
}

.ys-field textarea {
    resize: vertical;
    min-height: 80px;
}

.ys-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Input with icon */
.ys-input-wrap {
    position: relative;
}

.ys-input-wrap input {
    padding-left: 42px;
    padding-right: 42px;
}

.ys-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 0.9rem;
}

.ys-input-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.ys-input-toggle:hover {
    color: #64748b;
}

/* Field row (checkbox + link) */
.ys-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ys-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #64748b;
    cursor: pointer;
    user-select: none;
}

.ys-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #22c55e;
    cursor: pointer;
}

.ys-link-sm {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
}

.ys-link-sm:hover {
    text-decoration: underline;
}

/* Buttons */
.ys-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}

.ys-btn-primary {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
}

.ys-btn-primary:hover {
    background: #16a34a;
    border-color: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.ys-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ys-btn-outline {
    background: #ffffff;
    color: #334155;
    border-color: #e2e8f0;
}

.ys-btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.ys-btn-block {
    width: 100%;
}

.ys-btn-lg {
    padding: 13px 28px;
    font-size: 1rem;
}

.ys-btn-text,
.ys-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Spinner */
.ys-spinner {
    animation: ysSpin 1s linear infinite;
}

.ys-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ys-btn-loading i {
    font-size: 1rem;
}

@keyframes ysSpin {
    to { transform: rotate(360deg); }
}

/* Divider */
.ys-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.ys-divider::before,
.ys-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Footer link */
.auth-card-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.auth-card-footer a {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
}

.auth-card-footer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   REGISTER - Progress Steps
   ========================================================================== */
.ys-progress {
    margin-bottom: 32px;
}

.ys-progress-track {
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ys-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0%;
}

.ys-progress-steps {
    display: flex;
    justify-content: space-between;
}

.ys-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.ys-progress-step span {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.3s;
}

.ys-progress-step.active span,
.ys-progress-step.completed span {
    color: #22c55e;
    font-weight: 700;
}

.ys-progress-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.3s;
}

.ys-progress-step.active .ys-progress-dot {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.ys-progress-step.completed .ys-progress-dot {
    background: #dcfce7;
    border-color: #22c55e;
    color: #22c55e;
}

/* ==========================================================================
   REGISTER - Form Steps
   ========================================================================== */
.ys-form-step {
    display: none;
    animation: fadeInUp 0.3s ease;
}

.ys-form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ys-step-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.ys-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.ys-step-head h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.ys-step-head p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 2px 0 0;
}

/* Two column fields */
.ys-field-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* File upload */
.ys-file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 28px 20px;
    border: 2px dashed #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    color: #64748b;
}

.ys-file-upload:hover {
    border-color: #22c55e;
    background: #f0fdf4;
    color: #22c55e;
}

.ys-file-upload svg {
    color: #94a3b8;
}

.ys-file-upload:hover svg {
    color: #22c55e;
}

.ys-file-hint {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* Hint box */
.ys-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #166534;
    margin-top: 16px;
}

.ys-hint svg, .ys-hint i {
    flex-shrink: 0;
    color: #22c55e;
    font-size: 0.9rem;
}

/* Form actions */
.ys-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.ys-form-actions .ys-btn-outline {
    flex: 0 0 auto;
}

.ys-form-actions .ys-btn-primary,
.ys-form-actions .ys-btn {
    flex: 1;
}

/* ==========================================================================
   AUTH RESPONSIVE
   ========================================================================== */
@media (max-width: 480px) {
    .auth-layout {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 40px;
    }

    .auth-form-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .auth-card-logo {
        height: 40px;
    }

    .logo-text-dark {
        font-size: 1.3rem;
    }

    .auth-card-header h2 {
        font-size: 1.35rem;
    }

    .ys-field-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ys-progress-steps {
        gap: 4px;
    }

    .ys-progress-step span {
        font-size: 0.65rem;
    }

    .ys-progress-dot {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .ys-step-head {
        gap: 10px;
    }

    .ys-step-icon {
        width: 38px;
        height: 38px;
    }

    .ys-step-head h3 {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
@media (max-width: 992px) {
    .header-nav, .header-actions {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1060;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 100vw;
}

.mobile-nav-panel.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ys-border-subtle);
}

.mobile-nav-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--ys-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-nav-close:hover {
    background: var(--ys-border-subtle);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mobile-nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ys-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-nav-links a i {
    color: var(--ys-muted);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    transition: color 0.2s;
}

.mobile-nav-links a:hover {
    background: var(--ys-green-light);
    color: var(--ys-green);
}

.mobile-nav-links a:hover i {
    color: var(--ys-green);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--ys-border-subtle);
    margin: 20px 0;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}