/* ============================================
   ModokoBT — Modern Dark Theme Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ----- CSS Custom Properties ----- */
:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-accent: #22d3ee;
    --color-accent-light: #67e8f9;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-heading: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-accent: linear-gradient(135deg, #22d3ee, #6366f1);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ----- Light Theme ----- */
[data-theme="light"] {
    --bg-primary: #f1f5f9;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-glass: rgba(0, 0, 0, 0.03);
    --border-glass: rgba(0, 0, 0, 0.1);
    --color-text: #334155;
    --color-text-muted: #64748b;
    --color-text-heading: #0f172a;
    --gradient-hero: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #e0e7ff 100%);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);
}

[data-theme="light"] .navbar {
    background: rgba(241, 245, 249, 0.9);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(241, 245, 249, 0.97);
}

[data-theme="light"] .slide-overlay {
    background: rgba(241, 245, 249, 0.75) !important;
}

[data-theme="light"] .form-control {
    background: rgba(255, 255, 255, 0.8);
    color: #334155;
}

[data-theme="light"] .hamburger span {
    background: #334155;
}

[data-theme="light"] .nav-links {
    background: rgba(241, 245, 249, 0.98);
}

[data-theme="light"] ::-webkit-scrollbar-track {
    background: #f1f5f9;
}

[data-theme="light"] .footer {
    background: #e2e8f0;
}

[data-theme="light"] .map-wrapper iframe {
    filter: none;
}

[data-theme="light"] .brand-logo,
[data-theme="light"] .footer-logo,
[data-theme="light"] .landing-logo {
    filter: invert(1) hue-rotate(180deg);
    mix-blend-mode: multiply;
}

/* ----- Theme Toggle ----- */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

/* ----- Dashboard Modal ----- */
.dash-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dash-modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.dash-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.dash-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.dash-modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-heading);
}

.dash-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
    color: var(--color-text);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dash-modal-close:hover {
    background: var(--color-danger);
    color: #fff;
    border-color: var(--color-danger);
}

.dash-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.dash-modal-body .modal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.88rem;
    color: var(--color-text);
}

.dash-modal-body .modal-item:last-child {
    border-bottom: none;
}

.dash-modal-body .modal-item .item-label {
    font-weight: 600;
    color: var(--color-text-heading);
}

.dash-modal-body .modal-item .item-status {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dash-modal-body .modal-item .item-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
}

.dash-modal-body .modal-item .item-status.pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-warning);
}

.dash-modal-body .modal-item .item-status.done {
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
}

/* ----- Toast Notification ----- */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    color: var(--color-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.4s ease, fadeOutRight 0.4s ease 3.6s forwards;
    box-shadow: var(--shadow-card);
    min-width: 280px;
    max-width: 400px;
}

.toast.success {
    border-left: 4px solid var(--color-success);
}

.toast.error {
    border-left: 4px solid var(--color-danger);
}

.toast.info {
    border-left: 4px solid var(--color-accent);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ----- Scroll Reveal ----- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Pulse Animation ----- */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-hover:hover {
    animation: pulse 0.6s ease;
}

/* ----- Floating Animation ----- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ----- Password Strength ----- */
.password-strength {
    height: 4px;
    border-radius: 2px;
    background: var(--border-glass);
    margin-top: 6px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
    width: 0;
}

.password-strength-text {
    font-size: 0.75rem;
    margin-top: 4px;
    color: var(--color-text-muted);
}

/* ----- Dashboard ----- */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dash-stat-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dash-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-stat-icon.licenses {
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
}

.dash-stat-icon.tickets {
    background: rgba(34, 211, 238, 0.15);
    color: var(--color-accent);
}

.dash-stat-icon.analyses {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
}

.dash-stat-icon.uptime {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-warning);
}

.dash-stat-info h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-heading);
}

.dash-stat-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.dash-activity {
    margin-top: 1.5rem;
}

.dash-activity h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.activity-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.activity-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-dot.green {
    background: var(--color-success);
}

.activity-dot.blue {
    background: var(--color-primary);
}

.activity-dot.orange {
    background: var(--color-warning);
}

.activity-dot.cyan {
    background: var(--color-accent);
}

.activity-text {
    flex: 1;
    font-size: 0.88rem;
    color: var(--color-text);
}

.activity-time {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* ----- Blog Page ----- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
}

.blog-img-placeholder.bg1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.blog-img-placeholder.bg2 {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.blog-img-placeholder.bg3 {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.blog-img-placeholder.bg4 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.blog-body {
    padding: 1.5rem;
}

.blog-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.blog-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-body p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ----- FAQ Page ----- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-item.open {
    border-color: var(--color-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-heading);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-primary-light);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ----- Portfolio Page ----- */
.portfolio-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.portfolio-filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.portfolio-filter-btn.active,
.portfolio-filter-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-card {
    overflow: hidden;
    padding: 0;
    position: relative;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-thumb {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.portfolio-thumb.t1 {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
}

.portfolio-thumb.t2 {
    background: linear-gradient(135deg, #064e3b, #065f46);
}

.portfolio-thumb.t3 {
    background: linear-gradient(135deg, #7c2d12, #9a3412);
}

.portfolio-thumb.t4 {
    background: linear-gradient(135deg, #1e3a5f, #1e40af);
}

.portfolio-thumb.t5 {
    background: linear-gradient(135deg, #4a1d6e, #6b21a8);
}

.portfolio-thumb.t6 {
    background: linear-gradient(135deg, #1a3636, #2d6a4f);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-body {
    padding: 1.5rem;
}

.portfolio-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.3rem;
}

.portfolio-body p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.portfolio-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 3px 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

/* ----- Responsive additions ----- */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .toast-container {
        left: 10px;
        right: 10px;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-img-wrapper {
        height: 160px;
    }

    .portfolio-thumb {
        height: 180px;
    }
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-heading);
    letter-spacing: -0.5px;
}

.brand-m-icon {
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-logo {
    height: 55px;
    width: 200px;
    object-fit: cover;
    object-position: center center;
    display: block;
    background: transparent !important;
    mix-blend-mode: screen;
}

/* Hide nav until authenticated */
.hidden-until-login {
    display: none !important;
}

.hidden-until-login.visible {
    display: flex !important;
}

.nav-logout-btn {
    color: var(--color-danger) !important;
    font-weight: 600 !important;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-heading);
    background: var(--bg-glass);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Phone Badge ----- */
.phone-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

.phone-badge svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   PAGES / SECTIONS wrapper
   ============================================ */
.page {
    display: none;
    padding-top: 70px;
    min-height: 100vh;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 42vh;
    min-height: 280px;
    max-height: 420px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 1.2rem;
}

/* Split layout: text left, car right */
.slide-content.slide-split {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 30px;
    text-align: left;
    padding: 1.2rem 2rem;
}

.slide-text {
    flex: 1;
    min-width: 0;
}

.slide-text .badge {
    margin-left: 0;
}

.slide-text p {
    margin-left: 0;
    margin-right: 0;
}

.slide-car {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-car img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    animation: carFloat 3s ease-in-out infinite alternate;
}

@keyframes carFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.slide-content .badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.slide-content h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.slide-content .btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dots .dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
    transform: scale(1.2);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

.btn-accent {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: #0f172a;
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* ============================================
   LICENSES SECTION
   ============================================ */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.license-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.license-card.autocad::before {
    background: linear-gradient(90deg, #00b4d8, #0096c7);
}

.license-card.adobe::before {
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
}

.license-card.windows::before {
    background: linear-gradient(90deg, #0078d4, #00bcf2);
}

.license-card.office::before {
    background: linear-gradient(90deg, #d83b01, #ff8c00);
}

.license-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.license-card.autocad .license-icon {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.license-card.adobe .license-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.license-card.windows .license-icon {
    background: linear-gradient(135deg, #0078d4, #005a9e);
}

.license-card.office .license-icon {
    background: linear-gradient(135deg, #d83b01, #c43e00);
}

.license-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.license-card .license-type {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.license-card .btn {
    margin-top: auto;
}

.license-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.license-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.license-features li svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
    flex-shrink: 0;
}

.license-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 0.3rem;
}

.license-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.license-duration {
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-top: auto;
    margin-bottom: 1.2rem;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.support-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.support-info {
    padding-right: 1rem;
}

.support-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.support-info p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.support-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary-light);
}

.support-feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 2px;
}

.support-feature-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Support form */
.support-form-card {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-success .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-success h3 {
    font-size: 1.3rem;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ANALYSIS SECTION
   ============================================ */
.analysis-input-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.analysis-input-group {
    display: flex;
    gap: 12px;
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.analysis-input-group input {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1rem;
}

.analysis-input-group input:focus {
    outline: none;
}

.analysis-input-group input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.analysis-results {
    display: none;
}

.analysis-results.show {
    display: block;
    animation: fadeIn 0.6s ease;
}

.analysis-url-display {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-glass);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

.analysis-url-display span {
    color: var(--color-accent);
    font-weight: 600;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.analysis-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.gauge-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.2rem;
}

.gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-fill.seo {
    stroke: url(#seoGrad);
}

.gauge-fill.ssl {
    stroke: url(#sslGrad);
}

.gauge-fill.speed {
    stroke: url(#speedGrad);
}

.gauge-fill.security {
    stroke: url(#securityGrad);
}

.gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-heading);
}

.analysis-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.3rem;
}

.analysis-card .analysis-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.analysis-status.excellent {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.analysis-status.good {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

.analysis-status.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.analysis-status.poor {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.analysis-card p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* Detail bars */
.analysis-details {
    margin-top: 2rem;
}

.analysis-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
}

.analysis-detail-item .detail-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.analysis-detail-item .detail-value {
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-value.pass {
    color: #4ade80;
}

.detail-value.fail {
    color: #f87171;
}

.detail-value.warn {
    color: #fbbf24;
}

/* Loading spinner */
.analysis-loading {
    display: none;
    text-align: center;
    padding: 3rem;
}

.analysis-loading.show {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-glass);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.analysis-loading p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ACCOUNT PAGE
   ============================================ */
.account-wrapper {
    max-width: 450px;
    margin: 3rem auto;
}

.account-card {
    padding: 2.5rem;
}

.account-card .account-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.account-card h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.account-card .account-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-glass);
}

/* Logged in panel */
.account-panel {
    display: none;
}

.account-panel.show {
    display: block;
}

.account-panel .user-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.user-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-heading);
}

.user-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: var(--bg-glass);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-light);
}

.stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
}

.about-card .about-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.about-card .about-card-icon.mission {
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
}

.about-card .about-card-icon.vision {
    background: rgba(34, 211, 238, 0.15);
    color: var(--color-accent);
}

.about-card .about-card-icon.values {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.7rem;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Stats bar */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 4rem;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat .stat-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.team-card:nth-child(1) .team-avatar {
    background: var(--gradient-primary);
}

.team-card:nth-child(2) .team-avatar {
    background: var(--gradient-accent);
    color: #0f172a;
}

.team-card:nth-child(3) .team-avatar {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 3px;
}

.team-card .team-role {
    font-size: 0.8rem;
    color: var(--color-primary-light);
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(99, 102, 241, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary-light);
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.contact-item a {
    color: var(--color-accent);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-accent-light);
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    margin-top: 1rem;
    height: 200px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(0.8) contrast(1.1) saturate(0);
}

/* Contact form */
.contact-form-card {
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 0.8rem;
}

.footer-brand h3 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-logo {
    height: 55px;
    width: 200px;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin-bottom: 1rem;
    background: transparent !important;
    mix-blend-mode: screen;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* Navbar */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 4px;
        transition: right 0.35s ease;
        border-left: 1px solid var(--border-glass);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .phone-badge {
        display: none;
    }

    /* Hero */
    .hero-slider {
        height: 38vh;
        min-height: 240px;
    }

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slide-content.slide-split {
        padding: 1rem;
        gap: 15px;
    }

    .slide-car img {
        max-height: 160px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Support */
    .support-wrapper {
        grid-template-columns: 1fr;
    }

    .support-info {
        padding-right: 0;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* About */
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Analysis */
    .analysis-input-group {
        flex-direction: column;
    }

    .analysis-input-group .btn {
        width: 100%;
        justify-content: center;
    }

    /* Account */
    .account-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-brand .brand-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .hero-slider {
        height: 35vh;
        min-height: 220px;
    }

    .slide-content h1 {
        font-size: 1.4rem;
    }

    .slide-content .badge {
        font-size: 0.7rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.88rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .licenses-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-stat .stat-num {
        font-size: 1.6rem;
    }

    .account-stats {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .analysis-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LANDING PAGE (PRE-LOGIN)
   ============================================ */
.landing-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    padding-top: 70px;
    /* navbar height */
}

.landing-page.hidden {
    display: none;
}

.landing-page .hero-slider {
    flex: 0 0 auto;
    height: 30vh;
    min-height: 180px;
    max-height: 300px;
}

.landing-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.8rem;
    mix-blend-mode: screen;
    background: transparent !important;
}

.landing-auth-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    overflow: hidden;
}

.landing-auth-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.landing-auth-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.landing-auth-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.landing-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-text);
}

.highlight-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.landing-auth-card {
    padding: 1.5rem;
    max-height: calc(100vh - 140px - 30vh - 80px);
    overflow-y: auto;
}

.landing-auth-card .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-auth-card .form-group {
    margin-bottom: 0.6rem;
}

.landing-auth-card .form-control {
    padding: 8px 14px;
    font-size: 0.88rem;
    background: rgba(15, 23, 42, 0.8) !important;
    color: #fff !important;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.landing-auth-card .form-control::placeholder {
    color: #94a3b8 !important;
    opacity: 0.7;
}

.landing-footer {
    flex: 0 0 auto;
    text-align: center;
    padding: 0.8rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.landing-footer a {
    color: var(--color-accent);
}



.membership-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    background: var(--bg-glass);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    overflow: hidden;
}

.membership-tabs button {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.membership-tabs button.active {
    background: var(--gradient-primary);
    color: #fff;
}

.membership-form {
    display: none;
}

.membership-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
}

.form-footer a {
    color: var(--color-primary-light);
    font-weight: 600;
    cursor: pointer;
}

.form-footer a:hover {
    color: var(--color-accent);
}

/* ============================================
   PRICING / HİZMET PAKETLERİ
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.pricing-grid.five-col {
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
    gap: 1rem;
}

.pricing-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 1.8rem 1.2rem;
}

.pricing-badge-range {
    display: inline-block;
    padding: 4px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.pricing-old {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.pricing-old s {
    color: var(--color-danger);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular::before {
    content: 'Popüler';
    position: absolute;
    top: 16px;
    right: -30px;
    transform: rotate(45deg);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card .pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.pricing-card:nth-child(1) .pricing-icon {
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
}

.pricing-card:nth-child(2) .pricing-icon {
    background: rgba(34, 211, 238, 0.15);
    color: var(--color-accent);
}

.pricing-card:nth-child(3) .pricing-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.pricing-card .pricing-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 0.3rem;
}

.pricing-card .pricing-amount small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.pricing-card .pricing-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
    flex-shrink: 0;
}

.pricing-service-bundle {
    border: 1px dashed var(--border-glass);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin: 10px 0 !important;
    background: var(--bg-glass);
    display: block !important;
}

.pricing-service-bundle ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-service-bundle ul li {
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 1200px) {
    .pricing-grid.five-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .pricing-grid,
    .pricing-grid.five-col {
        grid-template-columns: 1fr;
    }

    .landing-page {
        height: auto;
        overflow: auto;
        padding-top: 100px;
    }

    .landing-page .hero-slider {
        height: 25vh;
        min-height: 150px;
    }

    .landing-auth-section {
        padding: 1.5rem 0;
    }

    .landing-auth-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .landing-auth-info {
        text-align: center;
    }

    .landing-auth-info h2 {
        font-size: 1.4rem;
    }

    .landing-highlights {
        align-items: center;
    }

    .landing-logo {
        height: 60px;
    }

    .landing-auth-card {
        max-height: none;
    }
}

/* ============================================
   Modal Styles
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
}

.modal-close:hover {
    color: var(--color-danger);
    background: rgba(239, 68, 68, 0.1);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--color-text-heading);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ============================================
   AI ASSISTANT MODULE
   ============================================ */
.ai-wrapper {
    position: fixed;
    bottom: 30px;
    right: 90px;
    z-index: 999;
    display: none;
}

.ai-trigger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-trigger-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.ai-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: var(--color-danger);
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.ai-chat-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 520px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chat-panel.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.ai-chat-header {
    padding: 15px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.ai-close-btn:hover {
    color: var(--color-danger);
}

.ai-chat-body {
    flex: 1;
    min-height: 0;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-message {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-word;
}

.ai-message.assistant {
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-text);
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.ai-message.user {
    background: var(--gradient-primary);
    color: #fff;
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.ai-chat-footer {
    padding: 15px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ai-mic-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.ai-mic-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
}

.ai-mic-btn.listening {
    background: var(--color-danger);
    border-color: var(--color-danger);
    color: #fff;
    animation: listeningPulse 1.5s infinite;
}

@keyframes listeningPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.ai-status-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .ai-wrapper {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        right: 20px;
        bottom: 90px;
    }
}

/* ============================================
   ANNOUNCEMENTS SLIDER
   ============================================ */
.announcements-slider {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    min-height: 120px;
}

.ann-slides-container {
    position: relative;
    width: 100%;
    min-height: 120px;
}

.ann-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
}

.ann-slide.active {
    opacity: 1;
    position: relative;
}

.ann-type-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.ann-type-icon.info {
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

.ann-type-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.ann-type-icon.success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.ann-type-icon.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.ann-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 4px;
}

.ann-content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.ann-content .ann-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.6;
    margin-top: 4px;
}

.ann-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ann-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.ann-prev {
    left: 8px;
}

.ann-next {
    right: 8px;
}

.ann-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-bottom: 10px;
}

.ann-dots .ann-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.ann-dots .ann-dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.5);
    transform: scale(1.3);
}

/* ============================================
   USER AVATAR DROPDOWN
   ============================================ */
.user-avatar-wrapper {
    position: relative;
    margin-left: 0.5rem;
}

.user-avatar-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}

.user-avatar-btn:hover {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.avatar-initials {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: rgba(17, 24, 39, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow: hidden;
    animation: dropdownSlide 0.2s ease;
    backdrop-filter: blur(20px);
}

.user-dropdown.open {
    display: block;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(99, 102, 241, 0.06);
}

.dropdown-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-avatar span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dropdown-user-info {
    overflow: hidden;
}

.dropdown-user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-user-email {
    font-size: 0.75rem;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-company {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.78rem;
    color: #9ca3af;
}

.user-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 0.85rem;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.user-dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #fff;
}

.user-dropdown-item.logout-item {
    color: #f87171;
}

.user-dropdown-item.logout-item:hover {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

@media (max-width: 768px) {
    .user-avatar-wrapper {
        order: 3;
    }

    .user-dropdown {
        right: -10px;
        width: 260px;
    }
}