/* ==========================================================================
   KUYUMCU PANELİM - CUSTOM PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-dark-base: #06090e;
    --bg-dark-card: rgba(14, 20, 32, 0.75);
    --bg-dark-header: rgba(8, 12, 20, 0.85);
    --bg-dark-accent: #172030;
    
    --color-gold: #db9c21;
    --color-gold-bright: #f0ad2b;
    --color-gold-dark: #b87e14;
    --color-gold-glow: rgba(219, 156, 33, 0.28);
    --gold-gradient-start: #f0ad2b;
    --gold-gradient-end: #db9c21;
    --bg-gold-gradient: linear-gradient(135deg, #f0ad2b 0%, #db9c21 100%);
    
    --color-silver: #a6b1c2;
    --color-silver-bright: #cbd5e1;
    --color-silver-dark: #64748b;
    
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    --color-success: #10b981;
    --color-success-bg: rgba(16, 185, 129, 0.1);
    --color-danger: #f43f5e;
    --color-danger-bg: rgba(244, 63, 94, 0.1);
    --color-blue: #3b82f6;
    --color-blue-bg: rgba(59, 130, 246, 0.1);
    
    --border-glass: 1px solid rgba(212, 175, 55, 0.12);
    --border-glass-light: 1px solid rgba(255, 255, 255, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Raleway', sans-serif;
    
    --shadow-premium: 0 12px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button, input, select, textarea {
    font-family: 'Raleway', sans-serif;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark-base);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

#landing-page,
#contact-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

/* View Switcher Engine */
.view-inactive {
    display: none !important;
}
.view-active {
    display: block !important;
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-base);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--bg-dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

/* Button UI */
.lp-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 700;
    font-size: 14.5px;
    height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    box-sizing: border-box;
    text-decoration: none;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.lp-btn--primary {
    background: linear-gradient(135deg, #f0ad2b 0%, #db9c21 100%) !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(219, 156, 33, 0.35);
    border: 1px solid rgba(219, 156, 33, 0.4) !important;
}

/* Sweep Effect pseudo-element */
.lp-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.45) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.lp-btn--primary:hover {
    background: linear-gradient(135deg, #f5bb42 0%, #e0a227 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 156, 33, 0.55);
}

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

.lp-btn--secondary {
    background: rgba(15, 23, 42, 0.05);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.1);
    font-weight: 600;
}

.lp-btn--secondary:hover {
    background: rgba(15, 23, 42, 0.1);
    color: var(--color-gold-dark);
    transform: translateY(-2px);
}

.lp-btn--outline {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid rgba(15, 23, 42, 0.22) !important;
    font-weight: 700;
}

.lp-btn--outline:hover {
    border-color: var(--color-gold) !important;
    color: var(--color-gold-dark) !important;
    background: rgba(212, 175, 55, 0.06) !important;
    transform: translateY(-2px);
}

.lp-btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    flex-shrink: 0;
}

.lp-btn--lg {
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 32px;
    font-size: 15.5px;
    border-radius: 8px !important;
}

.lp-btn--sm {
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 6px;
}

/* Status Badges */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}


/* ==========================================================================
   LANDING PAGE COMPONENT STYLES
   ========================================================================== */

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

/* Header & Navbar */
.lp-header {
    background-color: var(--bg-dark-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-glass-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.lp-header__inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-brand__logo, .db-brand__logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.lp-footer__logo {
    display: block !important;
    height: 40px;
    width: auto;
    object-fit: contain;
}

.lp-brand__text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 30%, var(--color-silver-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.lp-nav__mobile-actions {
    display: none;
}

.lp-nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.lp-nav__link:hover {
    color: var(--color-gold);
}

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

.lp-mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
    outline: none;
}

.lp-mobile-menu-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    display: block;
}

.lp-mobile-menu-btn:hover,
.lp-mobile-menu-btn[aria-expanded="true"] {
    background: rgba(202, 164, 61, 0.15);
    border-color: rgba(202, 164, 61, 0.4);
    color: var(--color-gold);
}

.theme-light .lp-mobile-menu-btn,
html.theme-light .lp-mobile-menu-btn,
body.theme-light .lp-mobile-menu-btn {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.14);
    color: #0f172a;
}

.theme-light .lp-mobile-menu-btn:hover,
.theme-light .lp-mobile-menu-btn[aria-expanded="true"],
html.theme-light .lp-mobile-menu-btn:hover,
html.theme-light .lp-mobile-menu-btn[aria-expanded="true"],
body.theme-light .lp-mobile-menu-btn:hover,
body.theme-light .lp-mobile-menu-btn[aria-expanded="true"] {
    background: rgba(202, 164, 61, 0.12);
    border-color: var(--color-gold);
    color: #0f172a;
}

/* Ticker Bar (Ultra-clean, unboxed financial ticker with vertical dividers) */
.lp-ticker {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    padding: 8px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 32px, black calc(100% - 32px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 32px, black calc(100% - 32px), transparent);
}

.lp-ticker__inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.lp-ticker__items {
    display: flex;
    width: max-content;
    animation: ticker-scroll 45s linear infinite;
    will-change: transform;
}

.lp-ticker:hover .lp-ticker__items {
    animation-play-state: paused;
}

.lp-ticker__track {
    display: flex;
    align-items: center;
}

@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.lp-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    white-space: nowrap;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 24px 0 0;
    margin-right: 24px;
    position: relative;
}

/* Vertical divider line between ticker items */
.lp-ticker__item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #cbd5e1;
}

.lp-ticker__label {
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.1px;
}

.lp-ticker__value {
    font-weight: 500;
    color: #475569;
    font-size: 13px;
    letter-spacing: -0.1px;
}

.lp-ticker__change {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: -0.1px;
    line-height: 1.25;
}

.lp-ticker__change.up, .db-change-pill.up {
    color: #059669;
    background: rgba(16, 185, 129, 0.12);
}

.lp-ticker__change.down, .db-change-pill.down {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.08);
}

/* Hero Section */
.lp-hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.lp-hero__badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.lp-hero__title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.lp-text-gradient {
    background: linear-gradient(135deg, var(--gold-gradient-start) 0%, var(--gold-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero__desc {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
}

.lp-hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.lp-hero__buttons .lp-btn {
    flex: 1;
    max-width: 200px;
    white-space: nowrap;
}

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

.lp-hero__feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.lp-hero__feat-icon {
    color: var(--color-gold);
    font-weight: bold;
}

/* Hero Store Badges */
.lp-hero__store-badges {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theme-light .lp-hero__store-badges {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.lp-hero__store-tagline {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.lp-hero__store-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}

.theme-light .lp-store-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-store-badge:hover {
    transform: translateY(-2px);
    border-color: var(--color-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.theme-light .lp-store-badge:hover {
    border-color: var(--color-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.lp-store-badge-img {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.theme-light .lp-store-badge-img {
    filter: none;
}

/* Hero Banner Image Visual */
.lp-hero__preview-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.lp-hero__banner-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-hero__banner-img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
    transition: transform 0.4s ease, filter 0.4s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.lp-hero__banner-container:hover .lp-hero__banner-img {
    transform: translateY(-4px) scale(1.015);
}

.theme-light .lp-hero__banner-img,
html.theme-light .lp-hero__banner-img,
body.theme-light .lp-hero__banner-img {
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.12));
}

.text-gold {
    color: var(--color-gold) !important;
}

.lp-hero__glow {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Features Section Style */
.lp-features-section {
    padding: 100px 0;
    border-top: var(--border-glass-light);
}

.lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.lp-section-subtitle {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.lp-section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.lp-section-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-feature-card {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
}

.lp-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.lp-feature-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.lp-feature-card:hover .lp-feature-card__icon {
    background: var(--color-gold);
    color: #000;
}

.lp-feature-card__title {
    font-size: 20px;
    margin-bottom: 12px;
}

.lp-feature-card__desc {
    color: var(--color-text-secondary);
    font-size: 15px;
}

/* Steps / Workflow */
.lp-steps-section {
    padding: 100px 0;
    background: #080d16;
    border-top: var(--border-glass-light);
    border-bottom: var(--border-glass-light);
}

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

.lp-step-card {
    position: relative;
    padding-top: 70px;
}

.lp-step-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 1;
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 1;
}

.lp-step-title {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.lp-step-desc {
    color: var(--color-text-secondary);
    font-size: 15px;
}

/* CTA */
.lp-cta-section {
    padding: 100px 0;
}

.lp-cta-card {
    background: linear-gradient(135deg, #0e1627 0%, #070a12 100%);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.lp-cta-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.lp-cta-desc {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 36px auto;
    font-size: 16px;
}

.lp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.lp-cta-actions .lp-btn {
    flex: 1;
    max-width: 260px;
    white-space: nowrap;
}

/* Footer styling */
.lp-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: #05080c !important;
    padding: 60px 0 30px 0;
    color: #f8fafc !important;
}

.lp-footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.lp-footer__left {
    max-width: 360px;
}

.lp-footer__slogan {
    margin-top: 16px;
    color: #94a3b8 !important;
    font-size: 14px;
}

.lp-footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.lp-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.lp-footer__social-link:hover {
    background: rgba(212, 160, 23, 0.12);
    border-color: rgba(212, 160, 23, 0.45);
    color: #f3ba2f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.18);
}

.lp-footer__links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.lp-footer__col {
    min-width: 160px;
}

.lp-footer__col h4 {
    color: #f8fafc !important;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-footer__col a {
    display: block;
    color: #94a3b8 !important;
    font-size: 14px;
    margin-bottom: 12px;
}

.lp-footer__col a:hover {
    color: var(--color-gold) !important;
}

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b !important;
}


/* ==========================================================================
   INTERACTIVE DASHBOARD SYSTEM
   ========================================================================== */

#dashboard-page,
#demo-page {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-dark-base);
}

/* Sidebar styling */
.db-sidebar {
    width: 260px;
    background: #090e18;
    border-right: var(--border-glass);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 10;
}

.db-sidebar__brand {
    padding: 28px 24px;
    border-bottom: var(--border-glass-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.db-brand__logo {
    height: 64px;
}

/* Logo Theme Switching */
.logo-light-theme {
    display: none !important;
}
.logo-dark-theme {
    display: block !important;
}

.theme-light .logo-dark-theme,
html.theme-light .logo-dark-theme,
body.theme-light .logo-dark-theme {
    display: none !important;
}

.theme-light .logo-light-theme,
html.theme-light .logo-light-theme,
body.theme-light .logo-light-theme {
    display: block !important;
}

.db-brand__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    display: block;
    line-height: 1.2;
}

.db-brand__sub {
    font-size: 11px;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.db-sidebar__menu {
    flex: 1;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
    color: var(--color-text-secondary);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.db-menu-item:hover {
    color: var(--color-text-primary);
    background: rgba(255,255,255,0.03);
}

.db-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
    color: var(--color-text-secondary);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.db-menu-link:hover {
    color: var(--color-text-primary);
    background: rgba(255,255,255,0.03);
}

.db-menu-item.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    color: var(--color-gold);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding-left: 13px; /* account for border width */
}

.db-menu-icon {
    width: 18px;
    height: 18px;
}

.db-sidebar__footer {
    padding: 20px 16px;
    border-top: var(--border-glass-light);
}

.db-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(244, 63, 94, 0.06);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: var(--radius-sm);
    color: var(--color-danger);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.db-logout-btn:hover {
    background: var(--color-danger-bg);
    color: #fff;
    border-color: var(--color-danger);
}

/* Main Workspace */
.db-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--bg-dark-base);
}

/* Demo Sandbox Inspection Banner */
.db-demo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.14) 0%, rgba(20, 20, 24, 0.95) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    position: sticky;
    top: 0;
    z-index: 10;
    gap: 16px;
    backdrop-filter: blur(12px);
}

.db-demo-banner__content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.db-demo-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--color-gold-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.db-demo-banner__icon {
    width: 14px;
    height: 14px;
    stroke: var(--color-gold-light);
}

.db-demo-banner__text {
    font-size: 13px;
    color: var(--color-text-dim);
    line-height: 1.4;
}

.db-demo-banner__text strong {
    color: var(--color-gold-light);
}

.db-demo-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.db-demo-banner__cta {
    padding: 7px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
}

.db-demo-banner__login-btn {
    padding: 6px 12px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
}

.theme-light .db-demo-banner {
    background: linear-gradient(90deg, #fff7e6 0%, #fefaf0 100%);
    border-bottom: 1px solid rgba(197, 160, 40, 0.35);
}

.theme-light .db-demo-banner__text {
    color: #4a453e;
}

.theme-light .db-demo-banner__text strong {
    color: #8c6f14;
}

.theme-light .db-demo-banner__badge {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(197, 160, 40, 0.5);
    color: #735905;
}

/* Header Area */
.db-header {
    background: var(--bg-dark-header);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-glass-light);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 5;
}

.db-header__title {
    font-size: 24px;
    font-weight: 700;
}

.db-active-tenant-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.db-select-tenant {
    background: rgba(255,255,255,0.04);
    border: var(--border-glass-light);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 11px;
    border-radius: 4px;
    padding: 2px 8px;
    outline: none;
    cursor: pointer;
}

.db-header__status {
    display: flex;
    align-items: center;
    gap: 16px;
}

.db-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-success-bg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

.db-live-indicator__text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-success);
    white-space: nowrap;
}

.db-price-speed-control {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-muted);
    justify-content: flex-end;
}

.db-price-speed-control input {
    width: 80px;
    accent-color: var(--color-gold);
}

.db-tab-content {
    display: none;
    padding: 32px;
    animation: fade-in 0.4s ease-out;
}
.db-tab-content.active {
    display: block;
}

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

/* Gold Live Price Cards */
.db-prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.db-price-card {
    background: linear-gradient(135deg, #0e1525 0%, #080d16 100%);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-smooth);
}

.db-price-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.db-price-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.db-price-card__badge {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 9px;
    color: var(--color-text-secondary);
}

.db-price-card.gold .db-price-card__badge, .db-price-card.gold-22k .db-price-card__badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.db-price-val {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin: 8px 0;
    transition: var(--transition-smooth);
}

.db-price-val.tick-up {
    color: var(--color-success);
    transform: scale(1.03);
}
.db-price-val.tick-down {
    color: var(--color-danger);
    transform: scale(1.03);
}

.db-price-val small {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.db-price-change-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.db-change-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 4px;
}
.db-change-pill.up { background: var(--color-success-bg); }
.db-change-pill.down { background: var(--color-danger-bg); }

.db-price-bid-ask {
    font-size: 10px;
    color: var(--color-text-muted);
}

/* Stats Cards */
.db-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.db-stat-card {
    background: var(--bg-dark-card);
    border: var(--border-glass-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.db-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-dark-accent);
}

.db-stat-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.db-stat-card__icon.text-gold { background: rgba(212, 175, 55, 0.08); color: var(--color-gold); }
.db-stat-card__icon.text-blue { background: rgba(59, 130, 246, 0.08); color: var(--color-blue); }
.db-stat-card__icon.text-green { background: rgba(16, 185, 129, 0.08); color: var(--color-success); }

.db-stat-card__info {
    flex: 1;
}

.db-stat-card__label {
    display: block;
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.db-stat-card__val {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.db-stat-card__val .currency {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.db-stat-card__sub {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Card layout wrapper */
.db-dashboard-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}

.db-card {
    background: var(--bg-dark-card);
    border: var(--border-glass-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.db-card__header {
    padding: 20px 24px;
    border-bottom: var(--border-glass-light);
}

.db-card__title {
    font-size: 16px;
    font-weight: 600;
}

.db-card__subtitle {
    font-size: 12px;
    color: var(--color-text-muted);
    display: block;
    margin-top: 2px;
}

.db-card__body {
    padding: 24px;
    flex: 1;
}
.db-card__body.no-padding {
    padding: 0;
}
.db-card__body.scrollable-y {
    max-height: 350px;
    overflow-y: auto;
}

/* Chart Styles */
.chart-canvas-container {
    position: relative;
    height: 220px;
    width: 100%;
}

#sales-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

#sales-chart circle {
    cursor: pointer;
    transition: r 0.15s ease, fill 0.15s ease, stroke-width 0.15s ease;
}

#sales-chart circle:hover {
    r: 7px;
    fill: #ffffff !important;
    stroke: var(--color-gold) !important;
    stroke-width: 3px !important;
}

#chart-line-glow {
    filter: blur(4px);
    pointer-events: none;
}

.chart-tooltip {
    position: absolute;
    background: rgba(10, 15, 26, 0.96);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-primary);
    box-shadow: var(--shadow-premium), var(--shadow-gold);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -100%) translateY(-10px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.chart-tooltip.active {
    opacity: 1;
    transform: translate(-50%, -100%) translateY(-15px);
}

.chart-empty-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 20, 0.4);
    font-size: 13px;
    color: var(--color-text-muted);
    z-index: 2;
    transition: var(--transition-smooth);
}
.chart-empty-state.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Quick Sales list */
.quick-sales-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-sales-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: var(--border-glass-light);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.quick-sales-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
}

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

.qs-name {
    font-size: 13px;
    font-weight: 600;
}

.qs-details {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.qs-details span {
    margin-right: 8px;
}

.qs-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qs-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 15px;
}

.qs-btn-sell {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.qs-btn-sell:hover {
    background: var(--color-success);
    color: #000;
    transform: translateY(-1px);
}

.qs-btn-sell:disabled {
    background: rgba(255,255,255,0.02);
    color: var(--color-text-muted);
    border-color: rgba(255,255,255,0.05);
    cursor: not-allowed;
}

/* Custom Table Component */
.db-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.db-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
}

.db-search-wrapper input {
    width: 100%;
    background: var(--bg-dark-card);
    border: var(--border-glass-light);
    border-radius: var(--radius-sm);
    padding: 10px 16px 10px 42px;
    color: var(--color-text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.db-search-wrapper input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.overflow-x {
    overflow-x: auto;
}

.db-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.db-table th {
    background: #090e18;
    color: var(--color-text-muted);
    font-weight: 600;
    padding: 16px 24px;
    border-bottom: var(--border-glass-light);
    white-space: nowrap;
}

.db-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-text-secondary);
    vertical-align: middle;
}

.db-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--color-text-primary);
}

.db-table tr:last-child td {
    border-bottom: none;
}

.db-table .cell-action {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.btn-table-action {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-table-action.delete {
    background: rgba(244, 63, 94, 0.08);
    color: var(--color-danger);
    border-color: rgba(244, 63, 94, 0.15);
}
.btn-table-action.delete:hover {
    background: var(--color-danger);
    color: white;
}

.btn-table-action.edit {
    background: rgba(59, 130, 246, 0.08);
    color: var(--color-blue);
    border-color: rgba(59, 130, 246, 0.15);
}
.btn-table-action.edit:hover {
    background: var(--color-blue);
    color: white;
}

.btn-table-action.sell {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-success);
    border-color: rgba(16, 185, 129, 0.15);
}
.btn-table-action.sell:hover {
    background: var(--color-success);
    color: black;
}

.badge-stock {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
}
.badge-stock.in-stock { background: var(--color-success-bg); color: var(--color-success); }
.badge-stock.low-stock { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.badge-stock.no-stock { background: var(--color-danger-bg); color: var(--color-danger); }

/* Sales log empty */
.sales-empty-state {
    padding: 60px 40px;
    text-align: center;
    color: var(--color-text-muted);
}
.sales-empty-state.hidden {
    display: none;
}

.empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    color: rgba(255,255,255,0.05);
}

/* Settings elements */
.db-settings-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

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

.form-row {
    display: flex;
    gap: 16px;
}

.form-group.col {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: var(--border-glass-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.form-help {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.licence-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.licence-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 12px;
}
.licence-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.licence-row .label {
    color: var(--color-text-secondary);
}

.licence-row .value {
    font-weight: 600;
}

.badge-success {
    background: var(--color-success-bg);
    color: var(--color-success);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.db-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 24px 0;
}

/* Logo Upload Component */
.db-logo-upload-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 6px;
    transition: var(--transition-smooth);
}
.db-logo-upload-box:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
}
.db-logo-preview-wrapper {
    width: 150px;
    height: 75px;
    border-radius: 8px;
    background: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
    flex-shrink: 0;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.4);
}
.theme-light .db-logo-preview-wrapper {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.db-logo-preview-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.db-logo-placeholder {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 1px;
}
.db-logo-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.db-logo-btn-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* ==========================================================================
   MODALS AND TOAST NOTIFICATIONS
   ========================================================================== */

.db-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.db-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.db-modal {
    background: #0f1524;
    border: var(--border-glass);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-premium), var(--shadow-gold);
    overflow: hidden;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.db-modal-overlay.active .db-modal {
    transform: scale(1);
    opacity: 1;
}

.db-modal__header {
    padding: 20px 24px;
    border-bottom: var(--border-glass-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-modal__close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.db-modal__close:hover {
    color: var(--color-danger);
}

.db-modal__body {
    padding: 24px;
}

.db-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: rgba(15, 21, 36, 0.95);
    border: var(--border-glass);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-sm);
    color: white;
    padding: 16px 20px;
    min-width: 280px;
    max-width: 400px;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    animation: slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.toast-success {
    border-left-color: var(--color-success);
}
.toast-danger {
    border-left-color: var(--color-danger);
}

.toast-message {
    font-size: 13px;
    font-weight: 500;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 16px;
}
.toast-close:hover {
    color: white;
}

@keyframes slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


/* ==========================================================================
   RESPONSIVE LAYOUTS (MOBILE ADAPTATION)
   ========================================================================== */

@media (max-width: 1024px) {
    .lp-hero__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    
    .lp-hero__content {
        display: contents;
    }

    .lp-hero__title {
        order: 1;
    }
    
    .lp-hero__desc {
        order: 2;
        margin-left: auto;
        margin-right: auto;
    }
    
    .lp-hero__buttons {
        order: 3;
        justify-content: center;
        margin-bottom: 24px;
    }

    .lp-hero__preview-wrapper {
        order: 4;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 24px;
    }

    .lp-hero__banner-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .lp-hero__banner-img {
        max-height: 440px;
    }

    .lp-hero__features {
        order: 5;
        justify-content: center;
    }

    .lp-hero__store-badges {
        order: 6;
        align-items: center;
        margin-top: 24px;
    }

    .lp-hero__store-links {
        justify-content: center;
    }

    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .db-prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .db-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .db-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .db-settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .lp-header__inner {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .lp-actions {
        display: none;
    }
    
    .lp-mobile-menu-btn {
        display: flex !important;
    }

    .lp-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: absolute;
        top: 70px;
        left: -24px;
        right: -24px;
        width: calc(100% + 48px);
        background: #ffffff !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 24px 28px;
        box-sizing: border-box;
        border-bottom: 1px solid #e2e8f0;
        gap: 12px;
        z-index: 99999;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    
    .lp-nav.active {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    .theme-light .lp-nav,
    html.theme-light .lp-nav,
    body.theme-light .lp-nav {
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    }
    
    .lp-nav .lp-nav__link {
        font-size: 15.5px;
        font-weight: 600;
        width: 100%;
        text-align: center;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: var(--color-text-primary);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .theme-light .lp-nav .lp-nav__link,
    html.theme-light .lp-nav .lp-nav__link,
    body.theme-light .lp-nav .lp-nav__link {
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        color: #1e293b;
    }
    
    .lp-nav .lp-nav__link:hover {
        color: var(--color-gold);
        padding-left: 0;
    }
    
    .lp-nav__mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
        width: 100%;
        max-width: 320px;
    }
    
    .lp-nav__mobile-actions .lp-btn {
        width: 100% !important;
        justify-content: center;
        height: 48px !important;
        min-height: 48px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 768px) {
    .lp-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .lp-hero {
        padding: 44px 0 60px;
        overflow: hidden;
    }

    .lp-hero__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .lp-hero__content {
        display: contents;
    }

    .lp-hero__title {
        order: 1;
        font-size: 30px;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 18px;
    }

    .lp-hero__desc {
        order: 2;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 100%;
        padding: 0 4px;
        box-sizing: border-box;
    }

    .lp-hero__buttons {
        order: 3;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
        margin-bottom: 24px;
    }

    .lp-hero__buttons .lp-btn {
        width: 100% !important;
        max-width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        font-size: 15.5px !important;
        justify-content: center;
        border-radius: 8px !important;
        box-sizing: border-box !important;
    }

    .lp-hero__preview-wrapper {
        order: 4;
        width: 100%;
        margin: 0 auto 26px auto;
    }

    .lp-hero__banner-container {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .lp-hero__banner-img {
        max-height: 320px;
        max-width: 100%;
        height: auto;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    }

    .lp-hero__features {
        order: 5;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 20px;
    }

    .lp-hero__store-badges {
        order: 6;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .lp-hero__store-links {
        justify-content: center;
    }

    .lp-cta-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .lp-cta-actions .lp-btn {
        width: 100% !important;
        max-width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        font-size: 15.5px !important;
        justify-content: center;
        border-radius: 8px !important;
        box-sizing: border-box !important;
    }
    
    .lp-features-grid {
        grid-template-columns: 1fr;
    }
    
    .lp-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lp-footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px;
    }
    
    .lp-footer__left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .lp-footer__logo {
        margin: 0 auto;
        display: block;
    }

    .lp-footer__slogan {
        text-align: center;
        max-width: 380px;
        margin: 14px auto 0 auto;
    }

    .lp-footer__socials {
        justify-content: center;
        width: 100%;
        margin-top: 18px;
    }
    
    .lp-footer__links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        width: 100%;
    }

    .lp-footer__col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .lp-footer__col h4 {
        text-align: center;
        margin-bottom: 14px;
    }

    .lp-footer__col a {
        text-align: center;
        margin-bottom: 10px;
    }

    .lp-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        gap: 10px;
    }

    .lp-footer__bottom p {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Dashboard Mobile adaptation */
    #dashboard-page,
    #demo-page {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }
    
    .db-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: var(--border-glass-light);
        flex-shrink: 0;
        background: #090e18;
    }
    
    .db-sidebar__brand {
        padding: 12px 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .db-brand__logo {
        height: 46px;
    }
    
    .db-sidebar__menu {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 14px;
        gap: 6px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .db-sidebar__menu::-webkit-scrollbar {
        display: none;
    }
    
    .db-menu-item {
        padding: 7px 14px;
        font-size: 12.5px;
        white-space: nowrap;
        border-radius: 8px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .db-menu-item.active {
        border-left: none;
        border-bottom: none;
        background: rgba(219, 156, 33, 0.15);
        color: var(--color-gold);
        border-radius: 8px;
        padding-left: 14px;
    }

    .theme-light .db-menu-item.active {
        background: rgba(219, 156, 33, 0.12);
        color: var(--color-gold-dark);
    }
    
    .db-sidebar__footer {
        display: none;
    }

    .db-main {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-direction: column;
    }
    
    .db-demo-banner {
        padding: 10px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .db-demo-banner__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .db-demo-banner__text {
        font-size: 12px;
        line-height: 1.45;
    }

    .db-demo-banner__actions {
        width: 100%;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .db-demo-banner__cta,
    .db-demo-banner__login-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        text-align: center;
        padding: 8px 12px;
        font-size: 12px;
    }

    .db-header {
        padding: 12px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        border-bottom: var(--border-glass-light);
    }

    .db-header__title-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .db-header__title {
        font-size: 17px;
    }
    
    .db-header__status {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 8px 10px;
    }

    #btn-open-tv-screen {
        padding: 5px 10px !important;
        font-size: 11.5px !important;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .db-live-indicator {
        padding: 4px 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .db-live-indicator__text {
        font-size: 11px;
        white-space: nowrap;
    }

    .db-price-speed-control {
        margin-left: auto;
        font-size: 11px;
        gap: 4px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .db-price-speed-control input {
        width: 60px;
    }

    .db-user-profile {
        margin-left: 0;
    }

    .db-user-trigger {
        padding: 4px 8px;
        gap: 6px;
    }

    .db-user-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .db-user-store-name {
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11.5px;
    }

    .db-user-role {
        font-size: 9.5px;
    }
    
    .db-tab-content {
        padding: 16px 12px;
    }
    
    .db-prices-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .db-price-card {
        padding: 14px 16px;
    }

    .db-price-val {
        font-size: 22px;
    }
    
    .db-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }

    .db-stat-card {
        padding: 14px 12px;
    }

    .db-stat-card__val {
        font-size: 18px;
    }

    .db-chart-container {
        height: 220px;
    }

    .quick-sales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .db-action-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 16px;
    }

    .db-action-bar .db-search-wrapper,
    .db-action-bar .db-search-wrapper input {
        width: 100%;
    }

    .db-action-bar #btn-open-add-product,
    .db-action-bar .lp-btn {
        width: 100%;
        justify-content: center;
    }

    .db-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -12px;
        padding: 0 12px;
        width: calc(100% + 24px);
    }

    .db-table {
        min-width: 620px;
    }

    .db-table th,
    .db-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .cell-action {
        display: flex;
        gap: 4px;
        flex-wrap: nowrap;
    }

    .btn-table-action {
        padding: 4px 8px;
        font-size: 10.5px;
        white-space: nowrap;
    }

    .db-dashboard-grid,
    .db-grid-2,
    .db-settings-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .form-row,
    .db-form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .tv-palette-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .db-card {
        padding: 16px 14px;
        border-radius: var(--radius-md);
    }

    .db-card__header {
        margin-bottom: 16px;
    }

    .db-modal-content {
        width: 94%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .lp-hero__title {
        font-size: 26px;
        line-height: 1.25;
    }
    .lp-hero__badge {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 16px;
    }
    .lp-hero__buttons {
        max-width: 100%;
    }
    .lp-hero__banner-img {
        max-height: 260px;
    }
    .db-stats-grid {
        grid-template-columns: 1fr;
    }
    .quick-sales-grid {
        grid-template-columns: 1fr;
    }
    .db-header__status {
        gap: 6px;
    }
    .db-price-speed-control {
        width: 100%;
        justify-content: flex-start;
        margin-top: 2px;
    }
    .tv-palette-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   LIGHT THEME STYLING SYSTEM
   ========================================================================== */

/* General chart grid styling */
.chart-grid-line {
    stroke: rgba(255, 255, 255, 0.05);
}
.chart-label-text {
    fill: rgba(255, 255, 255, 0.4);
}

.theme-light {
    --bg-dark-base: #ffffff;
    --bg-dark-card: #ffffff;
    --bg-dark-header: rgba(255, 255, 255, 0.96);
    --bg-dark-accent: #f8fafc;
    
    --color-text-primary: #0f172a;
    --color-text-secondary: #334155;
    --color-text-muted: #64748b;
    
    --border-glass: 1px solid rgba(219, 156, 33, 0.25);
    --border-glass-light: 1px solid rgba(15, 23, 42, 0.08);
    
    --color-gold: #db9c21;
    --color-gold-bright: #f0ad2b;
    --color-gold-dark: #b87e14;
    
    --gold-gradient-start: #f0ad2b;
    --gold-gradient-end: #b87e14;
    
    background-color: var(--bg-dark-base);
    color: var(--color-text-primary);
}

.theme-light .lp-header {
    background-color: var(--bg-dark-header);
    border-bottom: var(--border-glass-light);
}

.theme-light .lp-feature-card {
    background: #ffffff;
    border: 1px solid rgba(219, 156, 33, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Live Ticker stays dark globally */

.theme-light .lp-steps-section {
    background: #f8fafc;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.theme-light .lp-step-card {
    color: #0f172a;
}

.theme-light .lp-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.theme-light .db-sidebar {
    background: #e2e8f0;
    border-right: var(--border-glass);
}

.theme-light .db-menu-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.theme-light .db-menu-link:hover {
    background: rgba(0, 0, 0, 0.03);
}

.theme-light .db-menu-item.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--color-gold-dark) !important;
    border-left-color: var(--color-gold-dark) !important;
}

.theme-light .db-header {
    background-color: var(--bg-dark-header);
}

.theme-light .db-select-tenant {
    color: var(--color-gold-dark) !important;
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.theme-light .db-live-indicator {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.theme-light .db-live-indicator__text {
    color: #065f46 !important;
}

.theme-light .db-price-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

.theme-light .db-price-val {
    color: #0f172a !important;
}

.theme-light .db-price-card__badge {
    background: rgba(0, 0, 0, 0.05);
}

.theme-light .db-change-pill.up {
    color: #065f46 !important;
    background: rgba(16, 185, 129, 0.15) !important;
}

.theme-light .db-change-pill.down {
    color: #9f1239 !important;
    background: rgba(244, 63, 94, 0.15) !important;
}

.theme-light .db-stat-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

.theme-light .db-stat-card:hover {
    background: #f8fafc !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

.theme-light .db-stat-card__val {
    color: #0f172a !important;
}

.theme-light .db-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

.theme-light .db-card__header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.theme-light .db-card__title {
    color: #0f172a !important;
}

.theme-light .chart-grid-line {
    stroke: rgba(0, 0, 0, 0.08);
}

.theme-light .chart-label-text {
    fill: rgba(0, 0, 0, 0.5);
}

.theme-light .chart-empty-state {
    background: rgba(255, 255, 255, 0.8) !important;
    color: #64748b !important;
}

.theme-light .quick-sales-item {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.theme-light .quick-sales-item:hover {
    border-color: var(--color-gold) !important;
    background: rgba(212, 175, 55, 0.04) !important;
}

.theme-light .qs-name {
    color: #0f172a !important;
}

.theme-light .db-action-bar .db-search-wrapper input {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #0f172a !important;
}

.theme-light .db-action-bar .db-search-wrapper input:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1) !important;
}

.theme-light .db-table th {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.theme-light .db-table td {
    color: #334155 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.theme-light .db-table tr:hover td {
    background: rgba(0, 0, 0, 0.01) !important;
    color: #0f172a !important;
}

.theme-light .db-modal {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #0f172a !important;
}

.theme-light .db-modal__header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #0f172a !important;
}

.theme-light .form-control {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #0f172a !important;
}

.theme-light .form-control:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15) !important;
}

.theme-light .form-group label {
    color: #334155 !important;
}

.theme-light .db-divider {
    background: rgba(0, 0, 0, 0.08);
}

.theme-light .licence-row {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.theme-light .licence-row .label {
    color: #475569 !important;
}

.theme-light .licence-row .value {
    color: #0f172a !important;
}

.theme-light .mock-sidebar {
    background: #e2e8f0;
}

.theme-light .mock-main {
    background: #f8fafc;
}

.theme-light .mock-card {
    background: #ffffff;
}

.theme-light .mock-table {
    background: #ffffff;
}

.theme-light .mock-table-row {
    border-bottom-color: rgba(0, 0, 0, 0.04);
}

.theme-light .lp-btn--secondary {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #0f172a !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.theme-light .lp-btn--secondary:hover {
    background: rgba(0, 0, 0, 0.1) !important;
    color: var(--color-gold-dark) !important;
}

.theme-light .lp-btn--outline {
    border-color: rgba(0, 0, 0, 0.2) !important;
    color: #0f172a !important;
}

.theme-light .lp-btn--outline:hover {
    border-color: var(--color-gold-dark) !important;
    color: var(--color-gold-dark) !important;
    background: rgba(212, 175, 55, 0.05) !important;
}



/* Tooltip light mode override */
.theme-light .chart-tooltip {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: var(--color-gold) !important;
    color: #0f172a !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 15px rgba(212, 175, 55, 0.15) !important;
}

/* Table Actions Disabled Override */
.btn-table-action:disabled {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--color-text-muted) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.45;
}

.theme-light .btn-table-action:disabled {
    background: rgba(0, 0, 0, 0.02) !important;
    color: #94a3b8 !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
    opacity: 0.5;
}

/* Light Theme Focus Glow Overrides */
.theme-light .form-control:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
    background: #ffffff !important;
}

.theme-light .db-action-bar .db-search-wrapper input:focus {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
    background: #ffffff !important;
}

/* ==========================================================================
   AUTH MODALS & MULTI-TENANT UI ENHANCEMENTS
   ========================================================================== */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 7, 13, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
}

.auth-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.auth-card {
    background: #ffffff !important;
    border: 1px solid rgba(219, 156, 33, 0.28) !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.22), 0 0 35px rgba(219, 156, 33, 0.08) !important;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    transform: scale(0.96) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #0f172a !important;
}

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

.auth-card__glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 160px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
    pointer-events: none;
}

.auth-card__header {
    padding: 28px 28px 20px 28px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.auth-card__logo {
    height: 38px;
    margin-bottom: 12px;
}

.auth-card__title {
    font-family: 'Raleway', sans-serif !important;
    font-size: 21px;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 6px;
}

.auth-card__subtitle {
    font-family: 'Raleway', sans-serif !important;
    font-size: 13.5px;
    color: #64748b !important;
}

.auth-card__close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f1f5f9 !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    color: #475569 !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    z-index: 60;
    pointer-events: auto;
    transition: all 0.2s ease;
    outline: none !important;
}

.auth-card__close:hover {
    background: #fee2e2 !important;
    color: #ef4444 !important;
    border-color: #fca5a5 !important;
    transform: scale(1.08);
}

.auth-tabs {
    display: flex;
    padding: 5px;
    background: #f1f5f9 !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 10px;
    margin: 20px 28px 0 28px;
    gap: 6px;
}

.auth-tab-btn {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #64748b !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}

.auth-tab-btn:focus,
.auth-tab-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.auth-tab-btn:hover {
    color: #0f172a !important;
    background: rgba(0, 0, 0, 0.04);
}

.auth-tab-btn.active {
    background: linear-gradient(135deg, #f0ad2b 0%, #db9c21 100%) !important;
    color: #0f172a !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(219, 156, 33, 0.3) !important;
    outline: none !important;
}

.auth-card__body {
    padding: 24px 28px 28px 28px;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Raleway', sans-serif !important;
    margin-bottom: 20px;
    display: none;
    line-height: 1.4;
}
.auth-alert.show {
    display: block;
    animation: slide-in 0.2s ease;
}
.auth-alert--danger {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #b91c1c !important;
}
.auth-alert--success {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.auth-input-group label {
    font-family: 'Raleway', sans-serif !important;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155 !important;
}

.auth-input-wrapper {
    position: relative;
}

.auth-input-wrapper .auth-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #94a3b8 !important;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    box-sizing: border-box;
    background: #f8fafc !important;
    border: 1px solid rgba(15, 23, 42, 0.16) !important;
    border-radius: 8px;
    padding: 11px 14px 11px 40px;
    color: #0f172a !important;
    font-size: 14px;
    font-family: 'Raleway', sans-serif !important;
    outline: none;
    transition: var(--transition-smooth);
}

.auth-input::placeholder {
    color: #94a3b8 !important;
}

.auth-input:focus {
    border-color: var(--color-gold) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(219, 156, 33, 0.2) !important;
}

.auth-btn-submit {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    font-size: 14.5px;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    outline: none !important;
}

.auth-demo-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8 !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 11.5px;
    font-weight: 600;
    margin: 12px 0 6px 0;
}
.auth-demo-divider::before,
.auth-demo-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.auth-demo-divider span {
    padding: 0 12px;
    letter-spacing: 0.5px;
}

#btn-login-demo-quick {
    color: #1e293b !important;
    border: 1px solid rgba(15, 23, 42, 0.14) !important;
    background: #f8fafc !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 600;
    outline: none !important;
    cursor: pointer;
}

#btn-login-demo-quick:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border-color: var(--color-gold) !important;
}

/* Dark Mode Overrides for Auth Card */
.theme-dark .auth-card {
    background: linear-gradient(180deg, #131b2e 0%, #0a0f1d 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.15) !important;
    color: #ffffff !important;
}
.theme-dark .auth-card__header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.theme-dark .auth-card__title {
    color: #ffffff !important;
}
.theme-dark .auth-card__subtitle {
    color: #94a3b8 !important;
}
.theme-dark .auth-card__close {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #e2e8f0 !important;
}
.theme-dark .auth-card__close:hover {
    background: rgba(239, 68, 68, 0.25) !important;
    color: #fca5a5 !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
}
.theme-dark .auth-tabs {
    background: rgba(0, 0, 0, 0.45) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.theme-dark .auth-tab-btn {
    color: #94a3b8 !important;
}
.theme-dark .auth-tab-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
}
.theme-dark .auth-tab-btn.active {
    background: linear-gradient(135deg, #f0ad2b 0%, #db9c21 100%) !important;
    color: #06090e !important;
}
.theme-dark .auth-input-group label {
    color: #cbd5e1 !important;
}
.theme-dark .auth-input {
    background: rgba(15, 23, 42, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}
.theme-dark .auth-input:focus {
    background: rgba(15, 23, 42, 0.95) !important;
}
.theme-dark .auth-demo-divider::before,
.theme-dark .auth-demo-divider::after {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.theme-dark #btn-login-demo-quick {
    color: #e2e8f0 !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}
.theme-dark #btn-login-demo-quick:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* User Profile Badge & Dropdown in Dashboard Header */
.db-user-profile {
    position: relative;
    display: flex;
    align-items: center;
}

.db-user-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass-light);
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--color-text-primary);
}

.db-user-trigger:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.3);
}

.db-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--bg-gold-gradient);
    color: #0b0f19;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-user-details {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.db-user-store-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.db-user-role {
    font-size: 10.5px;
    color: var(--color-gold);
    font-weight: 500;
}

.db-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #0f1524;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    box-shadow: var(--shadow-premium), 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 8px;
    display: none;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.db-user-dropdown.active {
    display: block;
    animation: dropdown-pop 0.2s ease;
}

.db-user-dropdown-header {
    padding: 6px 12px 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.db-user-dropdown-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

.db-user-dropdown-email {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gold);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.db-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--color-text-secondary);
    font-size: 12.5px;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.db-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}

.db-dropdown-item.danger {
    color: #f87171;
}
.db-dropdown-item.danger:hover {
    background: rgba(244, 63, 94, 0.1);
    color: var(--color-danger);
}

.db-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 0;
}

/* Light Theme Dropdown Overrides */
.theme-light .db-user-trigger {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.theme-light .db-user-trigger:hover {
    background: #f8fafc;
    border-color: rgba(212, 175, 55, 0.4);
}

.theme-light .db-user-dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.theme-light .db-user-dropdown-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.theme-light .db-user-dropdown-label {
    color: #64748b !important;
}

.theme-light .db-user-dropdown-email {
    color: var(--color-gold-dark) !important;
}

.theme-light .db-dropdown-item {
    color: #334155 !important;
}

.theme-light .db-dropdown-item:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

.theme-light .db-dropdown-divider {
    background: rgba(0, 0, 0, 0.08) !important;
}

.theme-light .db-dropdown-item.danger {
    color: #e11d48 !important;
}

.theme-light .db-dropdown-item.danger:hover {
    background: rgba(244, 63, 94, 0.08) !important;
    color: #be123c !important;
}

/* Copy Link Pill Component */
.copy-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.copy-link-btn:hover {
    background: var(--color-gold);
    color: #000;
}

/* ==========================================================================
   FLOATING THEME SWITCHER WIDGET (RIGHT DOCK)
   ========================================================================== */
.floating-theme-switch {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 4px;
    background: rgba(14, 20, 32, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-switch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 38px;
    padding: 0;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: inherit;
    text-decoration: none;
    user-select: none;
}

.theme-switch-icon {
    width: 14px;
    height: 14px;
    margin-bottom: 2px;
    stroke: currentColor;
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.theme-switch-text {
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;
    color: inherit;
}

.theme-switch-btn:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.08);
}

.theme-switch-btn:hover .theme-switch-icon {
    transform: scale(1.1);
}

/* Active State in Dark Mode */
.theme-switch-btn.active {
    background: #172554;
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.theme-switch-btn.active .theme-switch-text {
    font-weight: 700;
}

/* Light Theme Styling for the Floating Switcher */
.theme-light .floating-theme-switch,
html.theme-light .floating-theme-switch,
body.theme-light .floating-theme-switch {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.theme-light .theme-switch-btn,
html.theme-light .theme-switch-btn,
body.theme-light .theme-switch-btn {
    color: #64748b;
}

.theme-light .theme-switch-btn:hover,
html.theme-light .theme-switch-btn:hover,
body.theme-light .theme-switch-btn:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.05);
}

.theme-light .theme-switch-btn.active,
html.theme-light .theme-switch-btn.active,
body.theme-light .theme-switch-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.22);
}

/* Responsive adjustment on smaller screens */
@media (max-width: 768px) {
    .floating-theme-switch {
        right: 6px;
        padding: 3px;
        gap: 2px;
        border-radius: 6px;
    }
    .theme-switch-btn {
        width: 30px;
        height: 32px;
        border-radius: 4px;
    }
    .theme-switch-icon {
        width: 13px;
        height: 13px;
        margin-bottom: 1px;
    }
    .theme-switch-text {
        font-size: 7px;
    }
}

/* ==========================================================================
   SCROLL TO TOP (CIRCULAR PROGRESS INDICATOR)
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(14, 20, 32, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 980;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, border-color 0.2s ease;
    padding: 0;
    outline: none;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    border-color: rgba(202, 164, 61, 0.5);
}

.scroll-progress-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 3.5;
}

.scroll-progress-circle {
    fill: none;
    stroke: var(--color-gold, #caa43d);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 113.1;
    stroke-dashoffset: 113.1;
    transition: stroke-dashoffset 0.12s linear;
}

.scroll-arrow-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold, #caa43d);
    transition: transform 0.2s ease, color 0.2s ease;
    position: relative;
    z-index: 2;
}

.scroll-to-top:hover .scroll-arrow-icon {
    transform: translateY(-2px);
    color: var(--color-gold-light, #e5c365);
}

/* Light Theme Styling for Scroll to Top */
.theme-light .scroll-to-top,
html.theme-light .scroll-to-top,
body.theme-light .scroll-to-top {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.theme-light .scroll-progress-bg,
html.theme-light .scroll-progress-bg,
body.theme-light .scroll-progress-bg {
    stroke: rgba(15, 23, 42, 0.08);
}

.theme-light .scroll-to-top:hover,
html.theme-light .scroll-to-top:hover,
body.theme-light .scroll-to-top:hover {
    border-color: rgba(202, 164, 61, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
    }
    .scroll-arrow-icon {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   CUSTOM SOLUTIONS (MOBILE APP & WEB DEVELOPMENT SHOWCASE)
   ========================================================================== */
.lp-custom-apps-section {
    padding: 80px 0;
    position: relative;
}

.lp-custom-apps-card {
    background: linear-gradient(135deg, rgba(14, 20, 32, 0.92) 0%, rgba(8, 12, 20, 0.96) 100%);
    border: 1px solid rgba(219, 156, 33, 0.25);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6), 0 0 35px rgba(219, 156, 33, 0.08);
}

.theme-light .lp-custom-apps-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(219, 156, 33, 0.3);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.08), 0 0 35px rgba(219, 156, 33, 0.08);
}

.lp-custom-apps-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 36px;
}

.lp-custom-apps-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-top: 14px;
}

.lp-custom-apps-showcase-box {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(219, 156, 33, 0.25);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.theme-light .lp-custom-apps-showcase-box {
    border-color: rgba(219, 156, 33, 0.3);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.lp-custom-apps-showcase-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55), 0 0 30px rgba(219, 156, 33, 0.15);
}

.theme-light .lp-custom-apps-showcase-box:hover {
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12), 0 0 30px rgba(219, 156, 33, 0.15);
}

.lp-custom-apps-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.lp-custom-apps-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.lp-custom-app-feat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.theme-light .lp-custom-app-feat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.lp-custom-app-feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(219, 156, 33, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.theme-light .lp-custom-app-feat-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.lp-custom-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(219, 156, 33, 0.12);
    border: 1px solid rgba(219, 156, 33, 0.3);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.lp-custom-feat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.lp-custom-feat-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.lp-custom-feat-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-secondary);
}

.lp-custom-apps-actions-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT PAGE (/iletisim) STYLES
   ========================================================================== */
.lp-contact-hero {
    padding: 60px 0 90px;
}

.lp-contact-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.lp-contact-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 12px 0 16px;
    font-family: var(--font-heading);
}

.lp-contact-desc {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.lp-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.lp-contact-card {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.theme-light .lp-contact-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.lp-contact-card__title {
    font-size: 24px;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.lp-contact-card__subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
}

.lp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.contact-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.contact-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.theme-light .contact-input {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

.contact-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.contact-select {
    cursor: pointer;
}
.contact-select option {
    background: #0f1422;
    color: #ffffff;
}
.theme-light .contact-select option {
    background: #ffffff;
    color: #0f172a;
}

.contact-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-btn-submit {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    justify-content: center;
}

/* Contact Info Card */
.lp-contact-info-card {
    background: linear-gradient(135deg, rgba(14, 20, 32, 0.85) 0%, rgba(23, 32, 48, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.theme-light .lp-contact-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.lp-contact-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-contact-info-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.lp-contact-info-header p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.lp-contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-light .lp-contact-info-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(219, 156, 33, 0.12);
    border: 1px solid rgba(219, 156, 33, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.lp-info-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
}

.lp-info-text strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.lp-info-text span,
.lp-info-text a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
}

.lp-info-text a:hover {
    color: var(--color-gold);
}

.lp-contact-highlights {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theme-light .lp-contact-highlights {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.lp-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--color-text-secondary);
}

.highlight-check {
    color: var(--color-gold);
    font-weight: bold;
}

/* Responsive Rules for Showcase & Contact Page */
@media (max-width: 1024px) {
    .lp-custom-apps-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-custom-apps-card {
        padding: 40px 30px;
    }
    .lp-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lp-custom-apps-section {
        padding: 60px 0;
    }
    .lp-custom-apps-card {
        padding: 30px 18px;
    }
    .lp-custom-apps-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .lp-custom-apps-actions-center {
        flex-direction: column;
        width: 100%;
    }
    .lp-custom-apps-actions-center .lp-btn {
        width: 100%;
        justify-content: center;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .lp-contact-card {
        padding: 24px 18px;
    }
    .lp-contact-title {
        font-size: 30px;
    }
}

/* ==========================================================================
   TV COLOR PALETTES & COLOR PICKER STYLING
   ========================================================================== */
.color-picker-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 44px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    padding: 3px;
    outline: none;
    transition: var(--transition-smooth);
}
.theme-light .color-picker-input {
    border-color: #cbd5e1;
    background: #f8fafc;
}
.color-picker-input:hover {
    border-color: var(--color-gold);
}
.color-picker-input::-webkit-color-swatch-wrapper {
    padding: 0;
}
.color-picker-input::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}
.color-picker-input::-moz-color-swatch {
    border: none;
    border-radius: 4px;
}

.tv-palette-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    outline: none;
}
.theme-light .tv-palette-btn {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #334155;
}
.tv-palette-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-text-primary);
    transform: translateY(-1px);
    background: rgba(219, 156, 33, 0.08);
}
.tv-palette-btn.active {
    background: rgba(219, 156, 33, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 10px rgba(219, 156, 33, 0.2);
}
.palette-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.theme-light .palette-swatch {
    border-color: rgba(0, 0, 0, 0.15);
}
.palette-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .tv-palette-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ==========================================================================
   FAQ / SSS (Sıkça Sorulan Sorular) SECTION
   ========================================================================== */
.lp-faq-section {
    padding: 100px 0 80px 0;
    border-top: var(--border-glass-light);
    position: relative;
}

.lp-faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-light .lp-faq-item,
html.theme-light .lp-faq-item,
body.theme-light .lp-faq-item {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.lp-faq-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.theme-light .lp-faq-item:hover,
html.theme-light .lp-faq-item:hover,
body.theme-light .lp-faq-item:hover {
    box-shadow: 0 8px 25px rgba(219, 156, 33, 0.1);
}

.lp-faq-item.active {
    border-color: var(--color-gold);
    background: rgba(219, 156, 33, 0.04);
}

.theme-light .lp-faq-item.active,
html.theme-light .lp-faq-item.active,
body.theme-light .lp-faq-item.active {
    background: #fdfaf3;
    border-color: var(--color-gold);
}

.lp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: left;
    transition: color 0.2s ease;
}

.lp-faq-item.active .lp-faq-question {
    color: var(--color-gold);
}

.lp-faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-secondary);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-light .lp-faq-icon,
html.theme-light .lp-faq-icon,
body.theme-light .lp-faq-icon {
    background: #f1f5f9;
    color: #475569;
}

.lp-faq-item.active .lp-faq-icon {
    transform: rotate(180deg);
    background: var(--color-gold);
    color: #ffffff;
}

.lp-faq-icon svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.5;
    display: block;
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-faq-item.active .lp-faq-answer {
    max-height: 800px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.lp-faq-answer__inner {
    padding: 0 26px 22px 26px;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

.theme-light .lp-faq-answer__inner,
html.theme-light .lp-faq-answer__inner,
body.theme-light .lp-faq-answer__inner {
    color: #475569;
    border-top-color: rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .lp-faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    .lp-faq-answer__inner {
        padding: 0 20px 18px 20px;
        font-size: 13.5px;
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER DRIVEN)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal--scale {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Revealed State */
.scroll-reveal.is-revealed,
.scroll-reveal--scale.is-revealed,
.scroll-reveal--left.is-revealed,
.scroll-reveal--right.is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger Delays for child cards in grids */
.stagger-1 { transition-delay: 0.08s !important; }
.stagger-2 { transition-delay: 0.16s !important; }
.stagger-3 { transition-delay: 0.24s !important; }
.stagger-4 { transition-delay: 0.32s !important; }
.stagger-5 { transition-delay: 0.40s !important; }
.stagger-6 { transition-delay: 0.48s !important; }
.stagger-7 { transition-delay: 0.56s !important; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-reveal--left,
    .scroll-reveal--right {
        transform: translateY(24px) !important;
    }
    .scroll-reveal {
        transform: translateY(24px);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal--scale,
    .scroll-reveal--left,
    .scroll-reveal--right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   BLOG PUBLIC PAGES & ARTICLE READER STYLES
   ========================================================================== */
.blog-hero {
    padding: 64px 0 44px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 320px;
    background: radial-gradient(circle, rgba(245, 187, 66, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero .lp-section-subtitle,
.blog-hero__badge,
.blog-hero-subtitle {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.blog-hero__title,
.blog-hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.blog-hero__subtitle,
.blog-hero-desc {
    font-size: 16.5px;
    line-height: 1.65;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 32px;
}

/* Blog Search Box */
.blog-search-box {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 24px;
}

.blog-search-box__input,
.blog-search-box input {
    width: 100%;
    height: 50px;
    padding: 12px 20px 12px 48px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    font-size: 14.5px;
    color: #0f172a;
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.blog-search-box__input:focus,
.blog-search-box input:focus {
    border-color: #f5bb42;
    box-shadow: 0 0 0 3px rgba(245, 187, 66, 0.25);
}

.blog-search-box__icon,
.blog-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    width: 18px;
    height: 18px;
}

/* Category Filter Pills */
.blog-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.blog-cat-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.blog-cat-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
}

.blog-cat-btn.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

/* Featured Post Card */
.blog-featured-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(217, 119, 6, 0.12);
    border-color: #fcd34d;
}

.blog-featured-card__media,
.blog-featured-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background: #f1f5f9;
}

.blog-featured-card__media img,
.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured-card:hover .blog-featured-card__media img,
.blog-featured-card:hover .blog-featured-img {
    transform: scale(1.05);
}

.blog-featured-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #f5bb42;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(245, 187, 66, 0.3);
    z-index: 2;
}

.blog-featured-card__body,
.blog-featured-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.blog-card__meta,
.blog-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 14px;
}

.blog-card__category {
    color: #b45309;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.4px;
}

.blog-card__dot {
    color: #cbd5e1;
}

.blog-card__date,
.blog-card__read-time {
    color: #64748b;
}

.blog-featured-card__title,
.blog-featured-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
    transition: color 0.2s;
}

.blog-featured-card:hover .blog-featured-card__title,
.blog-featured-card:hover .blog-featured-title {
    color: #b45309;
}

.blog-featured-card__excerpt,
.blog-featured-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 24px;
}

.blog-featured-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: auto;
}

.blog-card__author,
.blog-author-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.blog-author-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0f172a;
    color: #f5bb42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.blog-featured-card__cta {
    font-size: 14px;
    font-weight: 700;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.blog-featured-card:hover .blog-featured-card__cta {
    gap: 8px;
}

/* Articles Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.blog-card__media,
.blog-card__thumb {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-card__media img,
.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img,
.blog-card:hover .blog-card__img {
    transform: scale(1.06);
}

.blog-card__category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #f5bb42;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

.blog-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.2px;
    transition: color 0.2s;
}

.blog-card:hover .blog-card__title {
    color: #b45309;
}

.blog-card__excerpt,
.blog-card__summary {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card__cta-btn,
.blog-card__action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: rgba(245, 187, 66, 0.08);
    color: #b45309;
    border: 1px solid rgba(245, 187, 66, 0.32);
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
}

.blog-card__cta-btn svg,
.blog-card__action-btn svg {
    transition: transform 0.25s ease;
}

.blog-card:hover .blog-card__cta-btn,
.blog-card:hover .blog-card__action-btn {
    background: linear-gradient(135deg, #d4a017 0%, #b48511 100%);
    color: #0b0f17;
    border-color: #d4a017;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.28);
    transform: translateY(-1px);
}

.blog-card:hover .blog-card__cta-btn svg,
.blog-card:hover .blog-card__action-btn svg {
    transform: translateX(4px);
}

.blog-card--related .blog-card__media {
    height: 180px;
}

.blog-card--related .blog-card__body {
    padding: 20px;
}

.blog-card--related .blog-card__title {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.blog-card--related .blog-card__excerpt {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
}

.blog-card--related .blog-card__footer {
    padding: 0 20px 20px;
    border-top: none;
}

.blog-card__read-more,
.blog-read-link {
    font-size: 13.5px;
    font-weight: 700;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.blog-card:hover .blog-card__read-more,
.blog-card:hover .blog-read-link {
    gap: 7px;
}

/* Empty State */
.blog-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    margin: 40px auto;
    max-width: 600px;
}

.blog-empty-state__icon {
    font-size: 40px;
    margin-bottom: 14px;
}

/* ==========================================================================
   HOMEPAGE BLOG SECTION (.lp-blog-section)
   ========================================================================== */
.lp-blog-section {
    padding: 84px 0;
    background: linear-gradient(180deg, #fcfcfc 0%, #f7f9fc 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.lp-blog-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.lp-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 187, 66, 0.15);
    color: #b45309;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 187, 66, 0.35);
}

.lp-blog-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.4px;
}

.lp-blog-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.lp-blog-footer {
    text-align: center;
    margin-top: 44px;
}

/* ==========================================================================
   SINGLE ARTICLE READER VIEW STYLES
   ========================================================================== */
.blog-reader-view {
    padding: 40px 0 90px;
    background: #ffffff;
    min-height: 80vh;
}

.blog-reader-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.blog-reader-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.blog-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-btn-back:hover {
    background: #e2e8f0;
}

.blog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.blog-breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-breadcrumbs a:hover {
    color: #b45309;
}

.blog-breadcrumbs .sep {
    color: #cbd5e1;
}

.blog-breadcrumbs .current {
    color: #0f172a;
    font-weight: 600;
}

.blog-reader-header {
    margin-bottom: 30px;
}

.blog-reader-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-reader-read-time {
    color: #64748b;
    font-size: 13px;
}

.blog-reader-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.28;
    margin: 0 0 20px;
    letter-spacing: -0.4px;
}

.blog-reader-byline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0f172a;
    color: #f5bb42;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.blog-author-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.blog-author-date {
    display: block;
    font-size: 12.5px;
    color: #64748b;
}

.blog-reader-cover-wrap {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: #f1f5f9;
}

.blog-reader-cover {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.blog-article-content {
    font-size: 17px;
    line-height: 1.85;
    color: #334155;
}

.blog-article-content .lead {
    font-size: 20px;
    line-height: 1.6;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 28px;
}

.blog-article-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 36px 0 16px;
    letter-spacing: -0.2px;
}

.blog-article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 28px 0 14px;
}

.blog-article-content p {
    margin: 0 0 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.blog-article-content li {
    margin-bottom: 10px;
}

.blog-article-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    background: #fdfaf3;
    border-left: 4px solid #f5bb42;
    border-radius: 0 12px 12px 0;
    font-size: 18px;
    font-style: italic;
    color: #78350f;
    line-height: 1.6;
}

.blog-callout {
    background: linear-gradient(135deg, rgba(245, 187, 66, 0.12) 0%, rgba(219, 156, 33, 0.04) 100%);
    border: 1px solid rgba(245, 187, 66, 0.35);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 32px 0;
}

.blog-callout h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #b45309;
    font-weight: 700;
}

.blog-callout p {
    margin: 0;
    font-size: 15px;
    color: #451a03;
    line-height: 1.6;
}

.blog-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 40px 0;
}

.blog-share-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.blog-share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    transition: all 0.2s ease;
}

.blog-share-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.blog-share-btn.share-whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.blog-share-btn.share-x:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.blog-share-btn.share-linkedin:hover {
    background: #0A66C2;
    color: #ffffff;
    border-color: #0A66C2;
}

.blog-article-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 18px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin: 48px 0;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.blog-article-cta__content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #f5bb42;
    margin: 0 0 8px;
}

.blog-article-cta__content p {
    font-size: 14.5px;
    color: #cbd5e1;
    margin: 0;
    max-width: 520px;
    line-height: 1.55;
}

.blog-related-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.blog-related-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 28px;
}

/* ==========================================================================
   ADMIN PANEL BLOG MANAGEMENT STYLES
   ========================================================================== */
.admin-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2px;
}

.admin-tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 14.5px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none;
}

.admin-tab-btn:hover {
    color: #0f172a;
}

.admin-tab-btn.active {
    color: #0f172a;
    border-bottom-color: #f5bb42;
}

.admin-tab-badge {
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
}

.admin-tab-btn.active .admin-tab-badge {
    background: rgba(245, 187, 66, 0.2);
    color: #b45309;
}

.blog-thumb-mini {
    width: 54px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: block;
}

.blog-status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-status-badge.published {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.blog-status-badge.draft {
    background: rgba(148, 163, 184, 0.18);
    color: #475569;
}

.blog-image-preview-wrap {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    height: 140px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-preview-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Blog Styling */
@media (max-width: 900px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    .blog-featured-card__media {
        min-height: 240px;
    }
    .blog-featured-card__body {
        padding: 28px 24px;
    }
    .blog-hero__title {
        font-size: 28px;
    }
    .blog-reader-title {
        font-size: 26px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-article-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .blog-share-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   COOKIE CONSENT POPUP (KVKK / GDPR)
   ========================================================================== */
.kp-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 390px;
    max-width: calc(100vw - 48px);
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(245, 187, 66, 0.28);
    border-radius: 16px;
    box-shadow: 0 24px 48px -8px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.kp-cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.kp-cookie-banner--hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.kp-cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.kp-cookie-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(245, 187, 66, 0.15);
    color: #f5bb42;
    flex-shrink: 0;
}

.kp-cookie-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #f8fafc;
    flex: 1;
    letter-spacing: -0.2px;
}

.kp-cookie-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.kp-cookie-close:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.1);
}

.kp-cookie-text {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0 0 16px;
}

.kp-cookie-text a {
    color: #f5bb42;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.kp-cookie-text a:hover {
    color: #fbbf24;
}

.kp-cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.kp-cookie-btn {
    flex: 1;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.kp-cookie-btn--primary {
    background: linear-gradient(135deg, #d4a017 0%, #b48511 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.25);
}

.kp-cookie-btn--primary:hover {
    background: linear-gradient(135deg, #e5b025 0%, #c49419 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.35);
}

.kp-cookie-btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.kp-cookie-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

@media (max-width: 480px) {
    .kp-cookie-banner {
        bottom: 16px;
        left: 16px;
        width: calc(100vw - 32px);
        padding: 16px;
    }
    .kp-cookie-actions {
        flex-direction: column;
        gap: 8px;
    }
    .kp-cookie-btn {
        width: 100%;
    }
}

/* ==========================================================================
   CORPORATE LEGAL INFO BAR IN FOOTER
   ========================================================================== */
.lp-footer__corporate {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0 16px;
    margin-top: 10px;
}

.lp-footer__corporate-inner {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.7;
    text-align: center;
}

.lp-footer__corporate-inner strong {
    color: #e2e8f0;
    font-weight: 600;
}

.lp-footer__corporate-inner a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lp-footer__corporate-inner a:hover {
    color: #f5bb42;
    text-decoration: underline;
}

.lp-footer__sep {
    color: rgba(245, 187, 66, 0.65);
    margin: 0 10px;
    display: inline-block;
}

@media (max-width: 768px) {
    .lp-footer__corporate-inner {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .lp-footer__sep {
        display: none;
    }
}




