/*
Theme Name: WebProdPro
Description: Modern, clean, premium theme for WebProdPro
Version: 1.0
Text Domain: webprodpro
*/

:root {
    --bg-color: #050511;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-1: #3b82f6;
    /* Blue */
    --accent-2: #8b5cf6;
    /* Purple */
    --accent-3: #10b981;
    /* Green */
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);

    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* Header */
.site-header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 17, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    transition: all 0.3s ease;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-login-btn {
    font-size: 1.8rem;
    color: #fff;
    display: flex;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}

.header-login-btn:hover {
    color: var(--accent-1);
    transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════════════
   USER DROPDOWN MENU
   ═════════════════════════════════════════════════════════════ */
.user-dropdown {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.user-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-1);
}

.user-name {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.user-menu-toggle:hover .dropdown-icon {
    color: var(--accent-1);
}

/* Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    background: rgba(255, 255, 255, 0.02);
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-1);
}

.dropdown-user-info {
    flex: 1;
    min-width: 0;
}

.dropdown-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-email {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-divider {
    height: 1px;
    background: var(--surface-border);
    margin: 8px 0;
}

.dropdown-menu-items {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-left-color: var(--accent-1);
}

.dropdown-item ion-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-logout {
    color: #f43f5e;
}

.dropdown-logout:hover {
    background: rgba(244, 63, 94, 0.1);
    border-left-color: #f43f5e;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .user-dropdown-menu {
        min-width: 260px;
    }

    .user-name {
        display: none;
    }
}

.m-header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.m-login-btn {
    font-size: 1.6rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-1);
}

.logo a {
    color: #fff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.main-nav a:hover {
    color: #fff;
}

.nav-btn {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 17, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.close-menu {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin-bottom: 2rem;
}

.mobile-nav a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent-1);
    padding-left: 10px;
}

.m-nav-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem !important;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.m-socials {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Responsive UI Adjustments */
@media (max-width: 960px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
}

@media (max-width: 960px) {
    .stats-grid-mini {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-valign {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

@media (max-width: 768px) {
    .brands-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .brand {
        font-size: 0.8rem;
    }

    .why-us-content h2 {
        font-size: 2rem;
        text-align: left;
    }

    .feature-checklist {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .wpp-multistep-container {
        padding: 2.5rem 1.5rem;
    }
}

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-wpp {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--surface-color);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--accent-3), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f43f5e, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    text-align: center;
    position: relative;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Premium */
.site-footer {
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
    background: #050511;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-glow {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--accent-1);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--accent-1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
    color: #4b5563;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: #4b5563;
}

.footer-bottom a:hover {
    color: var(--text-secondary);
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .col-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .col-brand {
        grid-column: span 1;
    }

    .site-footer {
        padding-top: 4rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .btn-group {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 120px;
    }
}

/* ====== Page Specific Styles ====== */
.page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, rgba(5, 5, 17, 0) 0%, rgba(5, 5, 17, 1) 100%),
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    text-align: center;
    border-bottom: 1px solid var(--surface-border);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0;
}

.page-content {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.page-content p {
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
}

.page-content h2,
.page-content h3 {
    text-align: left;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.page-content h2 {
    font-size: 2rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style-type: none;
}

.page-content li::before {
    content: '→';
    color: var(--accent-1);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.has-medium-font-size {
    font-size: 1.35rem;
    color: #fff !important;
    line-height: 1.8;
}

/* Keep card full height with links */
.service-link-wrapper {
    text-decoration: none;
    display: block;
    height: 100%;
}

.service-link-wrapper h3 {
    color: #fff;
    transition: color 0.3s ease;
}

.service-link-wrapper p {
    color: var(--text-secondary);
}

.service-card:hover .service-title {
    color: var(--accent-1);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-1);
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card .features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-card .features li::before {
    content: '✓';
    color: var(--accent-3);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Quote Form Styles (Glassmorphism & Floating Labels) */
.wpp-form-container {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2.5rem auto 0;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.wpp-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.wpp-form {
    position: relative;
    z-index: 1;
}

.wpp-form .form-group-row,
.wpp-multi-form .form-group-row {
    display: flex;
    gap: 2rem;
}

.wpp-form .form-group-row .form-group,
.wpp-multi-form .form-group-row .form-group {
    flex: 1;
}

@media (max-width: 768px) {

    .wpp-form .form-group-row,
    .wpp-multi-form .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .wpp-form-container,
    .wpp-multistep-container {
        padding: 2rem 1.5rem;
    }
}

.wpp-form .form-group,
.wpp-multi-form .form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.wpp-form input,
.wpp-form textarea,
.wpp-form select,
.wpp-multi-form input,
.wpp-multi-form textarea,
.wpp-multi-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.4rem;
    color: #fff;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.wpp-form textarea,
.wpp-multi-form textarea {
    resize: vertical;
    min-height: 220px;
}

.wpp-form input:focus,
.wpp-form textarea:focus,
.wpp-form select:focus,
.wpp-multi-form input:focus,
.wpp-multi-form textarea:focus,
.wpp-multi-form select:focus {
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.2);
}

/* Select specific */
.wpp-form select,
.wpp-multi-form select {
    appearance: none;
    -webkit-appearance: none;
    color: #fff;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem top 50%;
    background-size: 0.8rem auto;
}

.wpp-form select option,
.wpp-multi-form select option {
    background: #050511;
    color: #fff;
    padding: 12px;
}

/* Floating labels magic */
.wpp-form label,
.wpp-multi-form label {
    position: absolute;
    left: 1.4rem;
    top: 1.4rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1.1rem;
    background: transparent;
}

.wpp-form input:focus+label,
.wpp-form textarea:focus+label,
.wpp-form input:not(:placeholder-shown)+label,
.wpp-form textarea:not(:placeholder-shown)+label,
.wpp-multi-form input:focus+label,
.wpp-multi-form textarea:focus+label,
.wpp-multi-form input:not(:placeholder-shown)+label,
.wpp-multi-form textarea:not(:placeholder-shown)+label {
    top: -0.7rem;
    left: 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    background: #0d111a;
    padding: 0 0.6rem;
    color: var(--accent-1);
    border-radius: 6px;
}

.wpp-form .btn-submit {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-size: 1.1rem;
    padding: 1.2rem;
    cursor: pointer;
}

.wpp-form .form-message {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

/* =========================================
   WebProdPro Ügyfél Portál — 2026 Redesign
   ========================================= */

/* Service subpages specific */
.service-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.process-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
}

.process-box:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.step-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-1);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
}

.process-box h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.process-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.page-hero {
    background: linear-gradient(to bottom, #050511, #0a0a1a);
    padding: 10rem 0 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-1);
    margin-bottom: 2rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
}

.pricing-card .features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card .features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* Portal Container */
.wpp-portal {
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 2rem 6rem;
}

/* ---- Top Bar ---- */
.portal-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.topbar-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.topbar-greeting h1 {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
    line-height: 1.3;
}

.topbar-greeting h1 strong {
    color: #fff;
    font-weight: 700;
}

.topbar-greeting p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin: 0;
}

.topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.topbar-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

/* ---- Horizontal Tab Navigation ---- */
.portal-nav {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.portal-tabs {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portal-tabs::-webkit-scrollbar {
    display: none;
}

.portal-tab a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    margin-bottom: -1px;
}

.portal-tab a ion-icon {
    font-size: 1.15rem;
    opacity: 0.6;
}

.portal-tab a:hover {
    color: #fff;
}

.portal-tab a:hover ion-icon {
    opacity: 1;
}

.portal-tab.is-active a {
    color: #fff;
    border-bottom-color: var(--accent-1);
}

.portal-tab.is-active a ion-icon {
    color: var(--accent-1);
    opacity: 1;
}

/* ---- Portal Content ---- */
.portal-content {
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* ---- Metrics Row ---- */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.metric-card {
    padding: 1.6rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: border-color 0.3s;
}

.metric-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Section Header ---- */
.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    margin: 0;
}

/* ---- Service Cards Grid ---- */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.svc-card {
    position: relative;
}

/* groups and headings for dashboard */
.service-group {
    margin-bottom: 3.5rem;
}

.group-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.group-title::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--accent-1);
    border-radius: 50%;
}

/* layout container for groups */
.service-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* ensure individual group stretches full width of cell */
.service-groups-grid .service-group {
    margin-bottom: 0;
}

/* demo placeholder cards */
.service-group-demo .svc-card-demo {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
    border: 1.5px dashed rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
}

.service-group-demo .svc-card-demo:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.4);
}

.svc-demo {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    font-size: 0.7rem;
}

.svc-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    padding: 1.6rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.svc-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25);
}

.svc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.svc-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.svc-status {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.svc-active {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
}

.svc-pending {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
}

.svc-expired {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}

.svc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.svc-domain {
    font-size: 0.85rem;
    color: #8b5cf6;
    margin-bottom: 0.8rem;
    font-weight: 500;
    word-break: break-all;
}

.svc-meta {
    margin-bottom: 1.2rem;
}

.svc-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.svc-meta-item ion-icon {
    font-size: 1rem;
    opacity: 0.6;
}

.svc-action-form {
    margin: 0;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.3rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: inherit;
    text-decoration: none !important;
    margin-top: 0.8rem;
    width: 100%;
}

.svc-btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.svc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* ---- Empty State ---- */
.empty-state-2026 {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.empty-icon {
    font-size: 3.5rem;
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state-2026 h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.empty-state-2026 p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ---- Portal Banner (Upsell) ---- */
.portal-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    margin-top: 3rem;
}

.portal-banner-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.portal-banner-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 1;
}

.banner-sparkle {
    font-size: 2.2rem;
    color: var(--accent-1);
    opacity: 0.8;
}

.portal-banner h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.portal-banner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.portal-banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: all 0.25s;
    z-index: 1;
}

.portal-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* ---- WooCommerce Page Overrides ---- */
.woocommerce-MyAccount-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.woocommerce-MyAccount-content mark {
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent-1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
}

.woocommerce-MyAccount-content table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-MyAccount-content table.shop_table th,
.woocommerce-MyAccount-content table.shop_table td {
    padding: 1.1rem 1.3rem;
    text-align: left;
}

.woocommerce-MyAccount-content table.shop_table th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.02);
}

.woocommerce-MyAccount-content table.shop_table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.woocommerce-MyAccount-content table.shop_table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.woocommerce-button.button,
.woocommerce-button.button.view {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.25s;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.woocommerce-button.button:hover,
.woocommerce-button.button.view:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* WooCommerce Forms Override */
.woocommerce-MyAccount-content .woocommerce-EditAccountForm input,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm select,
.woocommerce-MyAccount-content .woocommerce-address-fields input,
.woocommerce-MyAccount-content .woocommerce-address-fields select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    width: 100%;
    outline: none;
    transition: border-color 0.25s;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm input:focus,
.woocommerce-MyAccount-content .woocommerce-address-fields input:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm label,
.woocommerce-MyAccount-content .woocommerce-address-fields label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    display: block;
}

.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-MyAccount-content .woocommerce-Button {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-MyAccount-content .woocommerce-Button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Remove all inherited list arrows */
.wpp-portal li::before,
.portal-tabs li::before {
    content: none !important;
}

.portal-tabs,
.wpp-portal ul {
    padding-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wpp-portal {
        padding: 120px 1rem 4rem;
    }

    .portal-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .portal-banner {
        flex-direction: column;
        text-align: center;
    }

    .portal-banner-content {
        flex-direction: column;
    }
}


/* Legacy cleanup: woo-custom-page overrides */
.woo-custom-page li::before {
    content: none !important;
}

/* =========================================
   Login Page — Premium 2026
   ========================================= */
.wpp-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
}

.wpp-login-card {
    width: 100%;
    max-width: 440px;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.login-brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.login-logo span {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-brand ion-icon {
    font-size: 2.5rem;
    color: var(--accent-1);
    margin-bottom: 0.8rem;
}

.login-brand h2 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.login-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.login-field {
    margin-bottom: 1.5rem;
}

.login-field label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.login-field label ion-icon {
    font-size: 1.1rem;
    opacity: 0.6;
}

.login-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.25s;
}

.login-input:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.login-remember input[type="checkbox"] {
    accent-color: var(--accent-1);
}

.login-forgot {
    font-size: 0.85rem;
    color: var(--accent-1);
    font-weight: 500;
}

.login-forgot:hover {
    text-decoration: underline;
}

.login-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

.login-submit ion-icon {
    font-size: 1.2rem;
}

/* Hide WooCommerce default notices styling override */
.woocommerce-notices-wrapper {
    max-width: 440px;
    margin: 0 auto 1rem;
}

/* =========================================
   Expiry Warning Badges on Service Cards
   ========================================= */
.svc-expiry-warn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    margin-top: 0.6rem;
}

.svc-expiry-warn ion-icon {
    font-size: 1rem;
}

.svc-warn-30 {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

.svc-warn-7 {
    background: rgba(249, 115, 22, 0.12);
    color: #fb923c;
}

.svc-warn-1 {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    font-weight: 700;
    animation: warn-pulse 2s ease-in-out infinite;
}

@keyframes warn-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.svc-warn-expired {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}

/* =========================================
   WP Admin Button Variant
   ========================================= */
.svc-btn-wp {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-top: 0.5rem;
}

.svc-btn-wp:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* =========================================
   Upgrade Button Variant
   ========================================= */
.svc-btn-upgrade {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.svc-btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: #fff;
}

/* =========================================
   Marketplace / Add-ons Section
   ========================================= */
.marketplace-section {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marketplace-header {
    text-align: center;
    margin-bottom: 2rem;
}

.marketplace-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.marketplace-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.mp-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.mp-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mp-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.4rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mp-card:hover .mp-icon {
    transform: scale(1.1);
}

.mp-card h4 {
    color: #e2e8f0;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.mp-card p {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}

.mp-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.mp-btn-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.5);
}

.mp-btn-green:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(16, 185, 129, 0.2));
    color: #10b981;
    border-color: #10b981;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.mp-btn-red {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
    color: #f43f5e;
    border-color: rgba(244, 63, 94, 0.5);
}

.mp-btn-red:hover {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.35), rgba(244, 63, 94, 0.2));
    color: #f43f5e;
    border-color: #f43f5e;
    box-shadow: 0 8px 16px rgba(244, 63, 94, 0.25);
    transform: translateY(-2px);
}

.mp-btn-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.5);
}

.mp-btn-pink:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(236, 72, 153, 0.2));
    color: #ec4899;
    border-color: #ec4899;
    box-shadow: 0 8px 16px rgba(236, 72, 153, 0.25);
    transform: translateY(-2px);
}


/* =========================================
   Live Uptime Monitor
   ========================================= */
.svc-domain {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--accent-1);
    margin-bottom: 0.6rem;
}

.svc-uptime {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.svc-uptime small {
    opacity: 0.7;
    font-size: 0.75rem;
    font-weight: 500;
}

.pulse {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.svc-uptime-online {
    color: #34d399;
}

.svc-uptime-online .pulse {
    background: #34d399;
    box-shadow: 0 0 0 rgba(52, 211, 153, 0.4);
    animation: pulse-green 2s infinite;
}

.svc-uptime-offline {
    color: #f87171;
}

.svc-uptime-offline .pulse {
    background: #f87171;
    box-shadow: 0 0 0 rgba(248, 113, 113, 0.4);
    animation: pulse-red 1s infinite;
}

.svc-uptime-pending {
    color: var(--text-secondary);
}

.svc-uptime-pending .pulse {
    background: #64748b;
    animation: pulse-grey 2s infinite;
}

@keyframes pulse-grey {
    0% { box-shadow: 0 0 0 0 rgba(100, 116, 139, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(100, 116, 139, 0); }
    100% { box-shadow: 0 0 0 0 rgba(100, 116, 139, 0); }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(248, 113, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0);
    }
}

/* =========================================
   Support Tickets — Premium 2026
   ========================================= */
.ticket-section {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ticket-tabs {
    display: flex;
    border-bottom: 1px solid var(--surface-border);
    background: rgba(0, 0, 0, 0.2);
}

.ticket-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    position: relative;
}

.ticket-tab ion-icon {
    font-size: 1.2rem;
}

.ticket-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.ticket-tab.active {
    color: var(--accent-1);
    background: rgba(59, 130, 246, 0.05);
}

.ticket-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-1);
}

.ticket-tab-content {
    display: none;
    padding: 2.5rem;
}

.ticket-tab-content.active {
    display: block;
    animation: fadeUp 0.4s ease forwards;
}

.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.ticket-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.ticket-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.ticket-item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-id {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent-1);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
}

.ticket-title {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.ticket-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.tk-open {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.tk-progress {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.tk-resolved {
    background: rgba(59, 130, 246, 0.1);
    color: #3bdfff;
}

.tk-closed {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
}

.ticket-item-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.ticket-item-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ticket-preview {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.ticket-form {
    max-width: 600px;
    margin: 0 auto;
}

.ticket-form-field {
    margin-bottom: 1.5rem;
}

.ticket-form-field label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.6rem;
}

.ticket-success {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: #34d399;
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.ticket-success ion-icon {
    font-size: 1.4rem;
}

/* =========================================
   Orders List — Premium SaaS 2026
   ========================================= */
.orders-section {
    width: 100%;
}

.orders-header-wpp {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.orders-header-wpp h3 {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.orders-header-wpp p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.order-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.order-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.order-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 120px;
}

.order-id {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.order-id ion-icon {
    color: var(--accent-1);
    font-size: 1.2rem;
}

.order-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-flex;
    width: fit-content;
}

.ord-status-completed {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.ord-status-processing {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ord-status-on-hold {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.ord-status-pending {
    background: rgba(148, 163, 184, 0.1);
    color: #94a3b8;
}

.ord-status-cancelled,
.ord-status-failed {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

.order-meta {
    display: flex;
    gap: 2rem;
    flex: 1;
    min-width: 250px;
}

.order-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.order-meta-item ion-icon {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.order-meta-item span {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.order-total-highlight span {
    color: var(--accent-1);
    font-weight: 700;
    font-size: 1.05rem;
}

.order-actions {
    display: flex;
    gap: 0.8rem;
}

.wpp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background: transparent;
    transition: all 0.25s;
    text-decoration: none;
}

.wpp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-pay {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.btn-pay:hover {
    background: #3b82f6;
    color: #fff;
}

.wpp-pagination {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.wpp-btn-page {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
}

.wpp-btn-page:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Modern Forms (Edit Account & Addresses)
   ========================================= */
.wpp-account-details-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wpp-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpp-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wpp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wpp-form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.wpp-form-group label .required {
    color: #f87171;
}

.wpp-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.wpp-input-wrapper ion-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    pointer-events: none;
}

.wpp-input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.25s;
}

.wpp-input:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.wpp-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.wpp-form-hint {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.8;
}

.wpp-password-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wpp-password-section h4 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.wpp-form-submit {
    margin-top: 2rem;
}

.wpp-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.wpp-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

/* =========================================
   My Addresses Page
   ========================================= */
.wpp-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wpp-address-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.wpp-address-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.wpp-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wpp-address-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wpp-address-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.wpp-address-title h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.wpp-address-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.wpp-address-edit-btn:hover {
    background: var(--accent-1);
    color: #fff;
}

.wpp-address-content address {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.wpp-address-empty {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

/* =========================================
   WooCommerce Standard Form Overrides
   (For generated address forms, select boxes)
   ========================================= */
.wpp-address-fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wpp-address-fields-grid .form-row {
    margin: 0;
    padding: 0;
    width: 100%;
}

.wpp-address-fields-grid .form-row label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.wpp-address-fields-grid .form-row input[type="text"],
.wpp-address-fields-grid .form-row input[type="email"],
.wpp-address-fields-grid .form-row input[type="tel"],
.wpp-address-fields-grid .form-row select,
.wpp-address-fields-grid .form-row textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.25s;
}

.wpp-address-fields-grid .form-row input:focus,
.wpp-address-fields-grid .form-row select:focus,
.wpp-address-fields-grid .form-row textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.wpp-address-fields-grid .select2-container--default .select2-selection--single {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    height: auto;
    padding: 0.6rem;
}

.wpp-address-fields-grid .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 1.5;
}

.wpp-address-fields-grid .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.wpp-address-fields-grid .select2-dropdown {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wpp-address-fields-grid .select2-container--default .select2-results__option--highlighted[aria-selected],
.wpp-address-fields-grid .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: var(--accent-1);
}

/* =========================================
   Premium Checkout — SaaS 2026
   ========================================= */
.wpp-checkout-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.checkout-header-wpp {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header-wpp h2 {
    font-size: 2.2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.checkout-header-wpp h2 ion-icon {
    color: var(--accent-1);
}

.checkout-header-wpp p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.wpp-checkout-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.customer-details-card,
.order-review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.review-title-wpp {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Form Styles inside Checkout */
.wpp-checkout-layout .form-row {
    margin-bottom: 1.5rem;
}

.wpp-checkout-layout label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.wpp-checkout-layout input.input-text,
.wpp-checkout-layout textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.25s;
    outline: none;
}

.wpp-checkout-layout input.input-text:focus,
.wpp-checkout-layout textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Order Table Styling */
.shop_table.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    text-align: left;
}

.shop_table.woocommerce-checkout-review-order-table .product-name {
    color: #fff;
    font-weight: 500;
}

.shop_table.woocommerce-checkout-review-order-table .product-total,
.shop_table.woocommerce-checkout-review-order-table .order-total td {
    text-align: right;
    color: #fff;
    font-weight: 600;
}

.shop_table.woocommerce-checkout-review-order-table .order-total th,
.shop_table.woocommerce-checkout-review-order-table .order-total td {
    font-size: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.shop_table.woocommerce-checkout-review-order-table .order-total td strong {
    color: var(--accent-1);
}

/* Payment Methods */
#payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 0 0 1.5rem 0 !important;
}

#payment div.payment_box {
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    color: var(--text-secondary) !important;
    padding: 1rem !important;
    margin: 1rem 0 !important;
    font-size: 0.9rem !important;
}

#payment div.payment_box::before {
    display: none !important;
}

#place_order {
    width: 100%;
    padding: 1.2rem !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2)) !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s !important;
    margin-top: 1.5rem !important;
}

#place_order:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4) !important;
}

/* Login/Coupon Toggles */
.woocommerce-form-login-toggle,
.woocommerce-form-coupon-toggle {
    margin-bottom: 1.5rem;
}

.woocommerce-info {
    border-top: 2px solid var(--accent-1) !important;
    background: rgba(59, 130, 246, 0.05) !important;
    color: #fff !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
}

.woocommerce-info a {
    color: var(--accent-1) !important;
    font-weight: 600 !important;
}

/* Blog Archive */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
}

.blog-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    font-size: 3rem;
}

.blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: #fff;
    transition: 0.3s;
}

.blog-card h2 a:hover {
    color: var(--accent-1);
}

.blog-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.blog-read-more {
    margin-top: auto;
    color: var(--accent-1);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-more ion-icon {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.blog-read-more:hover ion-icon {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #fff;
    transition: 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Blog Single */
.blog-single .single-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(to bottom, #050511, #0a0a1a);
}

.blog-single .blog-meta {
    justify-content: center;
    margin-bottom: 2rem;
}

.blog-single h1 {
    font-size: 4rem;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
}

.single-article {
    max-width: 900px;
    margin-bottom: 8rem;
}

.featured-image {
    margin: -3rem auto 4rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.entry-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.entry-content h2,
.entry-content h3 {
    margin: 3rem 0 1.5rem;
    color: #fff;
}

.entry-content p {
    margin-bottom: 1.8rem;
}

.entry-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.share-links a {
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: 0.3s;
}

.share-links a:hover {
    color: var(--accent-1);
    transform: translateY(-3px);
}

.post-navigation {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-links a {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-1);
}

@media (max-width: 768px) {
    .blog-single h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* =========================================
   SaaS 2026 Homepage Redesign
   ========================================= */

/* Hero Premium */
.hero-premium {
    position: relative;
    padding: 10rem 0 8rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
    filter: blur(80px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 2rem;
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--accent-1);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary-wpp {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-wpp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.btn-wpp-text {
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: 0.3s;
}

.btn-wpp-text:hover {
    color: var(--accent-1);
}

/* Hero Visual Assets */
.hero-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.floating-card-1 {
    width: 280px;
    top: 10%;
    left: 10%;
    padding: 1.5rem;
    z-index: 2;
    animation: float 6s linear infinite;
}

.floating-card-2 {
    width: 220px;
    bottom: 5%;
    right: 5%;
    padding: 1.2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s linear infinite reverse;
}

.floating-card-3 {
    padding: 0.8rem 1.2rem;
    top: 60%;
    left: 0;
    z-index: 1;
    animation: float 8s linear infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.card-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
}

.card-header .dot.red {
    background: #ff5f56;
}

.card-header .dot.yellow {
    background: #ffbd2e;
}

.card-header .dot.green {
    background: #27c93f;
}

.skeleton {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    border-radius: 5px;
}

.skeleton.short {
    width: 40%;
}

.skeleton.line {
    width: 90%;
}

.skeleton.medium {
    width: 65%;
}

.stats-icon {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    font-size: 1.2rem;
}

.stats-info .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stats-info .value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.uptime-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #34d399;
}

.uptime-indicator .dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* Stats Banner */
.stats-grid-mini {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem 2rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* Bento Grid */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-inline: auto;
}

.section-header h2 span {
    color: var(--accent-1);
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--accent-1);
    margin-bottom: 1.5rem;
}

.bento-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-stack-visual {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-stack-visual span {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.bento-ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(5, 5, 17, 0.7));
}

.ai-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
}

/* Brand Banner */
.trust-banner {
    padding: 4rem 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.brands-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.4;
    filter: grayscale(1);
}

.brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand span {
    color: #fff;
    opacity: 0.5;
}

/* Why Us */
.grid-valign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.check-item {
    display: flex;
    gap: 1.2rem;
}

.check-item ion-icon {
    font-size: 1.8rem;
    color: #10b981;
}

.check-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.check-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.why-us-visual {
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-badge {
    background: #000;
    border: 1px solid var(--accent-1);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.premium-badge ion-icon {
    font-size: 2.5rem;
    color: var(--accent-1);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.premium-badge span {
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

/* CTA Premium */
.ta-center {
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 40px;
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card h2 span {
    color: var(--accent-1);
}

.cta-actions {
    margin-top: 3rem;
    max-width: 600px;
    margin-inline: auto;
    text-align: left;
}

/* Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content p {
        margin-inline: auto;
    }

    .hero-visual {
        display: none;
    }

    .grid-valign {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .why-us-visual {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 1;
    }

    .stats-grid-mini {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   Premium Portfolio (Referenciák)
   ========================================= */
.portfolio-hero {
    padding: 10rem 0 4rem;
    background: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.1), transparent 70%);
}

.hero-container-portfolio h1 span {
    color: var(--accent-1);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-container-portfolio p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.portfolio-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 17, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: all 0.4s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link-btn {
    padding: 0.8rem 1.4rem;
    background: #fff;
    color: #000;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transform: translateY(20px);
    transition: all 0.4s 0.1s;
}

.portfolio-card:hover .portfolio-link-btn {
    transform: translateY(0);
}

.portfolio-link-btn:hover {
    background: var(--accent-1);
    color: #fff;
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.portfolio-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    margin-top: auto;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-1);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.cta-banner-portfolio {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem 2rem;
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Support Ticket Messaging UI
   ========================================= */
.ticket-detail-view {
    animation: fadeIn 0.4s ease-out;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-1);
    font-weight: 600;
    margin-bottom: 2rem;
    transition: 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.ticket-view-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-view-header h2 {
    font-size: 2rem;
    margin: 5px 0 0;
}

.messages-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.message-bubble {
    max-width: 85%;
    padding: 1.5rem;
    border-radius: 20px;
    position: relative;
}

.message-bubble.client {
    align-self: flex-end;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom-right-radius: 4px;
}

.message-bubble.support {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 4px;
}

.message-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.message-meta strong {
    color: #fff;
}

.message-content {
    line-height: 1.6;
    font-size: 1rem;
}

.reply-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-closed-info {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 16px;
    color: #fca5a5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 768px) {
    .ticket-view-header {
        flex-direction: column;
        gap: 1rem;
    }

    .message-bubble {
        max-width: 95%;
    }
}

/* Unread Ticket Styles */
.ticket-item.has-unread {
    border-left: 4px solid var(--accent-1) !important;
    background: rgba(59, 130, 246, 0.05) !important;
}

.unread-badge {
    background: var(--accent-1);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

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

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

/* Service Cancellation Styles */
.svc-btn-delete {
    background: transparent !important;
    color: var(--text-secondary) !important;
    border: none !important;
    margin-top: 3.5rem !important;
    width: 100%;
    font-size: 0.75rem !important;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem !important;
    transition: 0.3s;
    text-decoration: underline;
}

.svc-btn-delete ion-icon {
    font-size: 0.8rem;
}

.svc-btn-delete:hover {
    background: rgba(239, 68, 68, 0.08) !important;
    color: #f87171 !important;
    opacity: 1;
    border-radius: 8px;
}

.svc-cancelled {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #f87171 !important;
}

.animate-spin {
    display: inline-block;
    animation: wpp-spin 1s linear infinite;
}

@keyframes wpp-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.svc-btn-upgrade {
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    background: rgba(245, 158, 11, 0.1) !important;
    color: #f59e0b !important;
}

/* =========================================
   Részletek gomb
   ========================================= */
.svc-btn-details {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.svc-btn-details:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    color: var(--accent-1) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

/* =========================================
   Szolgáltatás Részletek Slide-over Modal
   ========================================= */
.svc-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc-modal-backdrop.open {
    display: block;
    opacity: 1;
}

.svc-modal-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 480px;
    background: #0d0d1f;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 2rem;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
}

.svc-modal-panel.open {
    transform: translateX(0);
}

.svc-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.2s;
}

.svc-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.2);
}

.svc-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.svc-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.svc-modal-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: #fff;
}

.svc-modal-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.svc-info-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.svc-info-row ion-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--accent-1);
    opacity: 0.7;
}

.svc-info-row strong {
    color: var(--text-primary);
}

.svc-modal-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 0.8rem;
}

.svc-modal-actions {
    margin-bottom: 2rem;
}

.svc-modal-danger {
    border-top: 1px solid rgba(239, 68, 68, 0.15);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.svc-danger-info {
    font-size: 0.82rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* delete gomb a modalban ne legyen nagy top-margin */
.svc-modal-danger .svc-btn-delete {
    margin-top: 0 !important;
}

@media (max-width: 520px) {
    .svc-modal-panel {
        max-width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* =========================================
   WHM Szerver Statisztikák (Disk + Email)
   ========================================= */

.svc-whm-stats {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-disk-usage {
    margin-bottom: 14px;
}

.svc-disk-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.svc-disk-percent {
    font-weight: 600;
    color: var(--text-secondary);
}

.svc-disk-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.svc-disk-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.svc-disk-fill.warning {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.svc-disk-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.svc-email-stats {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.svc-email-stats ion-icon {
    color: #3b82f6;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-whm-loading {
    opacity: 0.5;
    font-style: italic;
}

/* ── Disk Chart ─────────────────────────────────────────────── */
.svc-disk-chart-wrap {
    margin-top: 18px;
}

.svc-chart-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 10px;
}

.svc-chart-label ion-icon {
    color: #8b5cf6;
    font-size: 1rem;
}

.svc-chart-container {
    position: relative;
    height: 130px;
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 10px;
    padding: 10px 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-chart-container canvas.svc-disk-chart {
    width: 100% !important;
    height: 100% !important;
}

.svc-chart-empty {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* ═════════════════════════════════════════════════════════════
   DASHBOARD NAVIGATION TABS
   ═════════════════════════════════════════════════════════════ */
.dashboard-tabs {
    display: flex;
    gap: 8px;
    margin: 20px 0 30px 0;
    border-bottom: 2px solid var(--surface-border);
    overflow-x: auto;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.dashboard-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    bottom: -2px;
}

.dashboard-tab-btn ion-icon {
    font-size: 1.1rem;
}

.dashboard-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.dashboard-tab-btn.active {
    color: var(--accent-1);
    border-bottom-color: var(--accent-1);
}

.dashboard-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dashboard-tab-content.active {
    display: block;
}

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

/* ═════════════════════════════════════════════════════════════
   DEVELOPMENT SECTION
   ═════════════════════════════════════════════════════════════ */
.development-section {
    padding: 20px 0;
}

.dev-board-container {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 24px;
    overflow: hidden;
}

.dev-board-header {
    margin-bottom: 24px;
}

.dev-board-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.dev-board-header h3 ion-icon {
    color: var(--accent-2);
    font-size: 1.4rem;
}

.dev-board-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.dev-board-content {
    min-height: 300px;
}

/* Promo Section */
.dev-promo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dev-promo-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.dev-promo-icon {
    font-size: 3.5rem;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.dev-promo-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.dev-promo-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.dev-promo-subtext {
    font-size: 0.85rem !important;
    color: var(--text-secondary);
    font-style: italic;
}

.dev-contact-btn {
    margin-top: 16px;
}

.dev-promo-benefits {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 32px;
}

.dev-promo-benefits h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.dev-promo-benefits ul {
    list-style: none;
    padding: 0;
}

.dev-promo-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.dev-promo-benefits ion-icon {
    color: var(--accent-3);
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .dev-promo-container {
        grid-template-columns: 1fr;
    }
}

/* ═════════════════════════════════════════════════════════════
   SOFTWARE & LICENSES SECTION
   ═════════════════════════════════════════════════════════════ */
.software-section {
    padding: 20px 0;
}

.software-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.software-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.software-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-2px);
}

.sw-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.sw-title {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.sw-type {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.sw-type-plugin {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.sw-type-theme {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.sw-type-custom {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
}

.sw-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    flex-grow: 1;
}

.sw-warning {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sw-warning ion-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.sw-warn-expired {
    background: rgba(244, 63, 94, 0.12);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.sw-warn-soon {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.sw-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
}

.sw-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.sw-detail-row:last-child {
    margin-bottom: 0;
}

.sw-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.sw-value {
    color: var(--text-primary);
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    flex-grow: 1;
    word-break: break-all;
}

.sw-copy-btn {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.sw-copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sw-copy-btn.copied {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.sw-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--surface-border);
}

.sw-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.sw-btn-download {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.sw-btn-download:hover {
    background: rgba(16, 185, 129, 0.25);
}

.sw-btn-help {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.sw-btn-help:hover {
    background: rgba(59, 130, 246, 0.25);
}

/* ═════════════════════════════════════════════════════════════
   SUPPORT TICKETS SECTION
   ═════════════════════════════════════════════════════════════ */
.support-section {
    padding: 20px 0;
}

.support-toolbar {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.support-btn-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--accent-1);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.support-btn-new:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.support-btn-new ion-icon {
    font-size: 1.1rem;
}

.support-filters select {
    padding: 8px 12px;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.support-filters select:hover,
.support-filters select:focus {
    border-color: var(--accent-1);
    background: rgba(59, 130, 246, 0.05);
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s;
}

.ticket-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.ticket-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.ticket-id {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.ticket-status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticket-status-open {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.ticket-status-progress {
    background: rgba(217, 119, 6, 0.15);
    color: #d97706;
}

.ticket-status-closed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.ticket-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ticket-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.ticket-date,
.ticket-priority,
.ticket-category {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.ticket-date ion-icon,
.ticket-priority ion-icon,
.ticket-category ion-icon {
    font-size: 1rem;
}

.ticket-priority-high {
    color: #f43f5e !important;
}

.ticket-priority-medium {
    color: #d97706 !important;
}

.ticket-priority-low {
    color: #10b981 !important;
}

.ticket-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    color: var(--accent-1);
    background: rgba(59, 130, 246, 0.1);
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.ticket-view-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* ═════════════════════════════════════════════════════════════
   KNOWLEDGE BASE SECTION
   ═════════════════════════════════════════════════════════════ */
.knowledge-base-section {
    padding: 20px 0;
}

.kb-search {
    position: relative;
    margin-bottom: 24px;
}

.kb-search input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.kb-search input:focus {
    outline: none;
    border-color: var(--accent-1);
    background: rgba(59, 130, 246, 0.05);
}

.kb-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.kb-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.kb-category-block {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}

.kb-category-block:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}

.kb-category-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.kb-category-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.kb-articles-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kb-article-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.kb-article-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.kb-article-link ion-icon {
    font-size: 1rem;
    color: var(--accent-2);
    flex-shrink: 0;
}

.kb-article-link span {
    flex: 1;
}

.kb-arrow {
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.kb-article-link:hover .kb-arrow {
    transform: translateX(4px);
}

.kb-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.kb-article-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.kb-article-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}

.kb-article-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0 0 10px 0;
}

.kb-article-card h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.kb-article-card h4 a:hover {
    color: var(--accent-2);
}

.kb-article-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    flex-grow: 1;
}

.kb-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-top: auto;
}

.kb-read-more:hover {
    color: #2563eb;
    gap: 10px;
}

.kb-read-more ion-icon {
    font-size: 1rem;
}

/* ═════════════════════════════════════════════════════════════
   EMPTY STATES
   ═════════════════════════════════════════════════════════════ */
.empty-state-section {
    text-align: center;
    padding: 40px 20px;
    background: var(--surface-color);
    border: 1px dashed var(--surface-border);
    border-radius: 12px;
}

.empty-state-icon {
    font-size: 3.5rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-state-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.empty-state-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ═════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ═════════════════════════════════════════════════════════════ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.wpp-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    max-width: 400px;
    pointer-events: all;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wpp-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.wpp-toast ion-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.wpp-toast span {
    flex: 1;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.wpp-toast-close {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.wpp-toast-close:hover {
    color: #fff;
}

.wpp-toast-close ion-icon {
    font-size: 20px;
}

.wpp-toast-success {
    border-left: 4px solid #10b981;
}

.wpp-toast-success ion-icon {
    color: #10b981;
}

.wpp-toast-error {
    border-left: 4px solid #ef4444;
}

.wpp-toast-error ion-icon {
    color: #ef4444;
}

.wpp-toast-warning {
    border-left: 4px solid #f59e0b;
}

.wpp-toast-warning ion-icon {
    color: #f59e0b;
}

.wpp-toast-info {
    border-left: 4px solid #3b82f6;
}

.wpp-toast-info ion-icon {
    color: #3b82f6;
}

/* ═════════════════════════════════════════════════════════════
   QUICK ACTIONS MENU
   ═════════════════════════════════════════════════════════════ */
.svc-quick-actions-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #94a3b8;
    margin-left: auto;
}

.svc-quick-actions-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.svc-quick-actions-btn ion-icon {
    font-size: 18px;
}

.svc-quick-actions-menu {
    position: absolute;
    top: 48px;
    right: 8px;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.98), rgba(20, 20, 30, 0.98));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.svc-quick-actions-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.svc-quick-actions-menu a,
.svc-quick-actions-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.svc-quick-actions-menu a:hover,
.svc-quick-actions-menu button:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #e2e8f0;
}

.svc-quick-actions-menu ion-icon {
    font-size: 18px;
    color: #8b5cf6;
}

/* ═════════════════════════════════════════════════════════════
   ENHANCED EMPTY STATES
   ═════════════════════════════════════════════════════════════ */
.empty-state-enhanced {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.02));
    border: 2px dashed rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    margin: 40px 0;
}

.empty-state-enhanced .empty-state-icon {
    font-size: 5rem;
    color: #8b5cf6;
    margin-bottom: 24px;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.empty-state-enhanced h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.empty-state-enhanced p {
    color: #94a3b8;
    margin-bottom: 32px;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.empty-state-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.empty-state-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.empty-state-actions .btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.empty-state-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.empty-state-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-state-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.empty-state-actions ion-icon {
    font-size: 20px;
}

/* ═════════════════════════════════════════════════════════════
   SKELETON LOADING STATES
   ═════════════════════════════════════════════════════════════ */
.skeleton-loader {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skeleton-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.skeleton-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(139, 92, 246, 0.1) 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-text.short {
    width: 40%;
}

.skeleton-text.medium {
    width: 60%;
}

.skeleton-text.full {
    width: 100%;
}

.skeleton-button {
    height: 40px;
    width: 120px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(139, 92, 246, 0.1) 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    margin-top: 8px;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Service Cards Skeleton */
.service-cards-grid.loading {
    pointer-events: none;
}

.svc-card-skeleton {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-card-skeleton .skeleton-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
}

/* ═════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .dashboard-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .dashboard-tab-btn span {
        display: none;
    }
    
    .dashboard-tab-btn ion-icon {
        font-size: 24px;
    }
    
    .software-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .kb-categories {
        grid-template-columns: 1fr;
    }
    
    .support-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .support-btn-new,
    .support-filters select {
        width: 100%;
    }
    
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .wpp-toast {
        min-width: auto;
        width: 100%;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .empty-state-enhanced {
        padding: 40px 16px;
    }
    
    .empty-state-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .empty-state-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .svc-quick-actions-menu {
        right: 0;
        left: 0;
        margin: 0 8px;
        min-width: auto;
    }
}
/* ========================================
   KNOWLEDGE BASE STYLES
   ======================================== */

.kb-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kb-category-block {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.kb-category-block:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.kb-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kb-category-title ion-icon {
    font-size: 28px;
    color: var(--accent-1);
}

.kb-category-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.kb-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Knowledge Base Article Item (Collapsible) */
.kb-article-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kb-article-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.kb-article-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.kb-article-toggle:hover {
    background: rgba(59, 130, 246, 0.08);
}

.kb-article-toggle ion-icon:first-child {
    font-size: 20px;
    color: var(--accent-1);
    flex-shrink: 0;
}

.kb-article-toggle span {
    flex: 1;
}

.kb-toggle-icon {
    font-size: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.kb-article-item.open .kb-toggle-icon {
    transform: rotate(180deg);
}

.kb-article-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.kb-article-item.open .kb-article-content {
    padding: 0 20px 20px 20px;
}

.kb-article-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.kb-article-content h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 12px 0;
}

.kb-article-content ol,
.kb-article-content ul {
    margin: 12px 0 16px 20px;
    color: var(--text-secondary);
}

.kb-article-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.kb-article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.kb-article-content code {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.kb-article-content a {
    color: var(--accent-1);
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.kb-article-content a:hover {
    color: var(--accent-2);
    border-bottom-color: var(--accent-2);
}

/* Responsive */
@media (max-width: 768px) {
    .kb-category-block {
        padding: 20px;
    }
    
    .kb-category-title {
        font-size: 1.25rem;
    }
    
    .kb-article-toggle {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .kb-article-content {
        padding: 0 16px;
    }
    
    .kb-article-item.open .kb-article-content {
        padding: 0 16px 16px 16px;
    }
}
