/* 
  Nextor Tech CSS - Premium Design refined for Hierarchy, Depth, and Proof
*/

:root {
    --primary-red: #E31837;
    --hover-red: #c0132d;
    --text-red: #E31837;
    --bg-red-light: rgba(227, 24, 55, 0.08);

    --tech-black: #0a0a0a;
    --text-main: #2b2b2b;
    --text-muted: #5f6368;

    --white: #ffffff;
    --bg-subtle: #f8f9fc;
    --border-light: #eaeaeb;

    --success: #1e8e3e;
    --text-green: #1e8e3e;
    --bg-green-light: rgba(30, 142, 62, 0.08);

    --font-main: 'Inter', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Layered Depth */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.12);

    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--tech-black);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.text-muted {
    color: var(--text-muted);
}

.text-red {
    color: var(--text-red) !important;
}

.text-green {
    color: var(--text-green);
}

.text-white {
    color: var(--white) !important;
}

.bg-red-light {
    background-color: var(--bg-red-light);
}

.bg-green-light {
    background-color: var(--bg-green-light);
}

.bg-dark {
    background-color: var(--tech-black);
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.bg-subtle {
    background-color: var(--bg-subtle);
}

/* Buttons & Links */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--hover-red);
    box-shadow: 0 10px 24px rgba(227, 24, 55, 0.25);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-light);
    color: var(--tech-black);
}

.btn-outline:hover {
    border-color: var(--tech-black);
    background-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--tech-black);
    color: var(--tech-black);
}

.btn-outline-dark:hover {
    background-color: var(--tech-black);
    color: var(--white) !important;
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.shadow-hover-lg:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
}

.top-bar-item i {
    color: var(--text-main);
    margin-right: 6px;
}

/* Header Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-red-light);
    color: var(--primary-red);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 1.1rem;
}

.logo-text .dot {
    color: var(--primary-red);
}

.desktop-nav ul {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--tech-black);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--tech-black);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    padding: 24px;
    border-top: 1px solid var(--border-light);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--bg-subtle);
    color: var(--tech-black);
}

/* Refined Hero Section */
.hero {
    position: relative;
    padding: 100px 0 160px;
    background-color: var(--white);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-subtle);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 32px;
    border: 1px solid var(--border-light);
}

.stars {
    color: #FFB800;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-main);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero .highlight {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.authorized-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    max-width: 500px;
}

.brand-dots {
    display: flex;
    gap: 4px;
}

.dot-item {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-muted);
    opacity: 0.5;
}

/* Hero Visual & Depth Layers */
.hero-visual {
    position: relative;
}

.main-image-wrapper {
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero-img {
    border-radius: var(--radius-md);
    display: block;
    width: 100%;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    z-index: 2;
    animation: float-soft 8s ease-in-out infinite;
}

.badge-top-right {
    top: -30px;
    right: -30px;
}

.badge-bottom-left {
    bottom: -30px;
    left: -40px;
    animation-delay: 2s;
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.badge-title {
    display: block;
    font-weight: 700;
    color: var(--tech-black);
    font-size: 1rem;
}

.badge-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes float-soft {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Overlapping Trust Banner */
.trust-banner-wrapper {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.trust-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    border-radius: var(--radius-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    font-size: 2rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1.1rem;
    color: var(--tech-black);
}

.trust-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-light);
}

/* Section Header Focus */
.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 640px;
}

/* Clean Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.product-image {
    padding: 60px;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 340px;
}

.product-image img {
    max-height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 40px;
}

.product-info h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.link-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.product-card:hover .link-text {
    gap: 12px;
}

/* Services / Support Layout */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.services-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 500;
}

.checklist i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    border-radius: var(--radius-md);
}

.offset-card {
    transform: translateX(-40px);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.service-details h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.service-details p {
    color: var(--text-muted);
}

/* Rich CTA block */
.cta-section {
    padding: 60px 0 120px;
    background-color: var(--bg-subtle);
}

.cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer Improvements */
.main-footer {
    background-color: var(--tech-black);
    color: #909090;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    color: var(--white);
}

.footer-logo .logo-text {
    letter-spacing: -0.5px;
}

.ssl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.payment-icons {
    display: flex;
    gap: 16px;
    font-size: 1.5rem;
    color: #666;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 32px;
}

.footer-links ul,
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a,
.contact-list a {
    color: #909090;
    font-size: 0.95rem;
}

.footer-links a:hover,
.contact-list a:hover {
    color: var(--white);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #909090;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .authorized-proof {
        margin: 0 auto;
        justify-content: center;
    }

    .trust-banner-wrapper {
        margin-top: 40px;
    }

    .trust-banner {
        padding: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .services-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .checklist {
        text-align: left;
    }

    .offset-card {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
    }

    .desktop-nav,
    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .trust-banner {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Printer Support Section */
.border-top-light {
    border-top: 1px solid var(--border-light);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.checklist-large {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checklist-large li {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.checklist-large strong {
    color: var(--tech-black);
}

.checklist-large i {
    font-size: 1.4rem;
    margin-top: 4px;
    width: 24px;
    text-align: center;
}

.support-card-hl {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid var(--border-light);
    position: relative;
}

.hp-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    background-color: #0096D6;
    /* HP Blueish */
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 150, 214, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.brand-list strong {
    color: var(--tech-black);
}

.setup-steps {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.step-pill {
    display: inline-block;
    background: var(--bg-subtle);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--border-light);
}

/* Computer Support Section */
.tech-issue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.issue-card {
    padding: 32px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.issue-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background-color: var(--white);
    border-color: transparent;
}

.issue-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.issue-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.issue-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.issue-card li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 16px;
    line-height: 1.4;
}

.issue-card li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-issue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-issue-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Specific Styles */
.services-hero {
    padding: 100px 0 60px;
}

.services-page-grid {
    margin-top: 0;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.border-top {
    border-top: 1px solid var(--border-light) !important;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.divider-dot {
    opacity: 0.3;
    padding: 0 5px;
}

.services-highlight-box {
    grid-column: 1 / -1;
}

.issues-lists-wrapper {
    width: 100%;
}

.tech-issue-grid>.w-100 {
    grid-column: 1 / -1;
}

.setup-guide-box {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


/* --- Model Guides Section Styling --- */
.model-guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.model-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    transition: var(--transition);
}

.model-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(227, 24, 55, 0.2);
}

.model-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--tech-black);
}

.model-card ul {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.model-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.model-card li i {
    margin-top: 4px;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .model-guides-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Issues Detail Cards Styling --- */
.issue-detail-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}

.issue-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 24, 55, 0.15);
}

.issue-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.issue-detailed-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.issue-detailed-list li i {
    margin-top: 4px;
    font-size: 0.85rem;
}