/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Colors - Cool Tech Palette */
    --color-navy: #0F172A;
    --color-blue: #2563EB;
    --color-cyan: #0891B2;
    --color-green: #16A34A;
    --color-light-bg: #0F1419;
    --color-white: #FFFFFF;
    --color-text-dark: #E2E8F0;
    --color-text-muted: #94A3B8;
    --color-border: #1E293B;
    --color-error: #DC2626;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --font-size-5xl: 48px;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-dark);
    background: linear-gradient(180deg, #0F1419 0%, #0A0E17 50%, #0F1419 100%);
    min-height: 100vh;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-blue);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    z-index: 100;
    border-radius: var(--radius-md);
}

.skip-to-main:focus {
    top: 0;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

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

a:hover {
    color: var(--color-cyan);
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   Section Title & Subtitle
   ======================================== */
.section-title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font-family);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: var(--shadow-lg);
}

.btn-primary:focus {
    outline: 3px solid rgba(14, 165, 233, 0.3);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-secondary:hover {
    background: var(--color-light-bg);
}

.btn-secondary:focus {
    outline: 3px solid rgba(14, 165, 233, 0.3);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-outline:hover {
    background: var(--color-blue);
    color: white;
}

.btn-outline:focus {
    outline: 3px solid rgba(14, 165, 233, 0.3);
    outline-offset: 2px;
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: sticky;
    top: 0;
    background: #0F1419;
    border-bottom: 1px solid #2D3748;
    z-index: 50;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: var(--spacing-md) 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: var(--font-size-xl);
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-dark);
}

.logo-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    --nav-indicator-x: 0px;
    --nav-indicator-width: 0px;
}

.nav-menu::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: var(--nav-indicator-width);
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(34, 211, 238, 0.10));
    border: 1px solid rgba(34, 211, 238, 0.30);
    transform: translateX(var(--nav-indicator-x)) translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        width 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 180ms ease;
}

.nav-menu.has-active::before {
    opacity: 1;
}

.nav-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--color-text-dark);
    font-weight: 600;
    line-height: 1;
    transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover {
    color: var(--color-cyan);
}

.nav-link:focus {
    outline: 3px solid rgba(14, 165, 233, 0.3);
    outline-offset: 3px;
}

.nav-link.active {
    color: var(--color-cyan);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.24);
    transition: var(--transition);
}

.nav-cta:hover,
.nav-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(14, 165, 233, 0.32);
    color: #fff;
}

.whatsapp-cta {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.whatsapp-cta:hover {
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: var(--spacing-xs);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--color-text-dark);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background:
        radial-gradient(circle at 15% 15%, rgba(14, 165, 233, 0.12), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(34, 211, 238, 0.10), transparent 26%),
        transparent;
    padding: calc(var(--spacing-3xl) + 16px) var(--spacing-md) var(--spacing-3xl);
    margin-top: var(--spacing-lg);
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: clamp(40px, 6vw, 92px);
    align-items: center;
}

.hero-content {
    order: 1;
    max-width: 660px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-lg);
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(34, 211, 238, 0.22);
    color: var(--color-cyan);
    font-size: var(--font-size-sm);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-kicker-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--color-green);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.14);
}

.hero-title {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    max-width: 620px;
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    flex: 0 1 auto;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
    max-width: 720px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 16px;
    background: rgba(26, 31, 46, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 30px rgba(2, 8, 23, 0.16);
}

.badge-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    border-radius: 13px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.18);
}

.badge-text {
    font-weight: 700;
    color: var(--color-text-dark);
    font-size: var(--font-size-sm);
    line-height: 1.35;
}

.hero-illustration {
    order: 2;
}

.ticket-desk-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(8, 18, 32, 0.98)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 42%);
    border: 1px solid rgba(34, 211, 238, 0.18);
    box-shadow: 0 28px 80px rgba(2, 8, 23, 0.38);
}

.ticket-desk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 76%);
    pointer-events: none;
}

.ticket-desk-card > * {
    position: relative;
}

.ticket-desk-top {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-cyan);
    font-size: var(--font-size-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 12px;
}

.ticket-desk-card h2 {
    color: var(--color-white);
    max-width: 430px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

.desk-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.32);
    color: #86efac;
    font-size: var(--font-size-sm);
    font-weight: 800;
}

.desk-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.ticket-desk-copy {
    max-width: 560px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: var(--spacing-xl);
}

.ticket-flow {
    display: grid;
    gap: 12px;
    margin-bottom: var(--spacing-xl);
}

.ticket-flow-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.flow-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(14, 165, 233, 0.14);
    color: var(--color-cyan);
    font-weight: 900;
    font-size: var(--font-size-sm);
}

.ticket-flow-row strong {
    display: block;
    color: var(--color-white);
    font-size: var(--font-size-base);
    margin-bottom: 4px;
}

.ticket-flow-row small {
    display: block;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.ticket-desk-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ticket-desk-services span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(34, 211, 238, 0.18);
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: var(--font-size-sm);
}

/* ========================================
   Problems Section
   ======================================== */
.problems-section {
    background: transparent;
    padding: var(--spacing-3xl) var(--spacing-md);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.problem-card {
    background: #1A1F2E;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #2D3748;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-blue);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: var(--spacing-md);
    display: block;
}

.problem-card h3 {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.problem-card p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    margin-bottom: 0;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    background: transparent;
    padding: var(--spacing-3xl) var(--spacing-md);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
}

.service-card {
    background: #1A1F2E;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid #2D3748;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-blue);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

.service-card p {
    color: var(--color-text-muted);
    flex-grow: 1;
    margin-bottom: 0;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    background: transparent;
    padding: var(--spacing-3xl) var(--spacing-md);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    align-items: stretch;
}

.pricing-card {
    background: #1A1F2E;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid #2D3748;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--color-blue);
    box-shadow: var(--shadow-lg);
}

.pricing-card.recommended {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 1px var(--color-blue), var(--shadow-lg);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
    font-size: var(--font-size-xl);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.currency {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-blue);
}

.amount {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.period {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.pricing-subtitle {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-base);
}

.pricing-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    flex-grow: 1;
}

.pricing-list li {
    padding: 7px 0;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 15px;
    line-height: 1.5;
}

.pricing-list li::before {
    content: '✓';
    color: var(--color-green);
    font-weight: 700;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

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

.pricing-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    margin-top: var(--spacing-2xl);
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us-section {
    background: linear-gradient(135deg, #0F172A, #1A1F3A);
    color: var(--color-white);
    padding: var(--spacing-3xl) var(--spacing-md);
}

.why-us-section .section-title {
    color: var(--color-white);
}

.why-us-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
}

.why-us-card {
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.why-us-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: var(--spacing-md);
    display: block;
}

.why-us-card h3 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    background: transparent;
    padding: var(--spacing-3xl) var(--spacing-md);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
    align-items: stretch;
    position: relative;
}

.process-step {
    text-align: left;
    padding: var(--spacing-xl);
    background: linear-gradient(180deg, #1A1F2E 0%, #121826 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    border: 1px solid #2D3748;
    position: relative;
    overflow: hidden;
    min-height: 245px;
    transition: var(--transition);
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--color-blue);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 36px;
    padding: 0 var(--spacing-md);
    background: rgba(14, 165, 233, 0.14);
    color: var(--color-cyan);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.step-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    font-size: 24px;
}

.process-step h3 {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
}

.process-step p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    margin-bottom: 0;
    line-height: 1.7;
}

.process-arrow {
    display: none;
}

/* ========================================
   Clients Section
   ======================================== */
.clients-section {
    background: transparent;
    padding: var(--spacing-3xl) var(--spacing-md);
}

.clients-header {
    margin-bottom: var(--spacing-2xl);
}

.clients-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: var(--spacing-md);
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--color-blue);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: var(--spacing-lg);
}

.client-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-dark);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.client-card {
    position: relative;
    text-align: left;
    min-height: 210px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.98), rgba(18, 25, 41, 0.98));
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.18);
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.client-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 20px 40px rgba(2, 8, 23, 0.3);
}

.client-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: var(--spacing-md);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.client-card h3 {
    color: var(--color-text-dark);
    margin-bottom: 10px;
    font-size: 1.65rem;
    line-height: 1.15;
}

.client-card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: var(--font-size-base);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    background: transparent;
    padding: var(--spacing-3xl) var(--spacing-md);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #1A1F2E;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid #2D3748;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-blue);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition);
    text-align: left;
    font-family: var(--font-family);
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.1);
}

.faq-question:focus {
    outline: 3px solid rgba(14, 165, 233, 0.3);
    outline-offset: -3px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-blue);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--color-text-muted);
    line-height: 1.8;
    animation: slideDown 0.3s ease;
}

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

.faq-answer p {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .client-card {
        min-height: unset;
        padding: 24px;
    }

    .client-card h3 {
        font-size: 1.45rem;
    }

    .client-tags {
        justify-content: flex-start;
    }

    .clients-intro {
        text-align: left;
    }
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: transparent;
    padding: var(--spacing-3xl) var(--spacing-md);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--spacing-md);
    border: 1px solid #2D3748;
    border-radius: var(--radius-lg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: var(--transition);
    background: #1A1F2E;
    color: var(--color-text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-family);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    background-size: 20px;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info {
    padding: var(--spacing-2xl);
    background: #1A1F2E;
    border: 1px solid #2D3748;
    border-radius: var(--radius-xl);
    height: fit-content;
}

.contact-info h3 {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    margin-bottom: var(--spacing-2xl);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-base);
}

.contact-item p {
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-dark);
}

.contact-item a {
    font-weight: 600;
}

.small-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-cyan);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.footer-credit {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #20BA5F);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 40;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:focus {
    outline: 3px solid rgba(37, 211, 102, 0.3);
    outline-offset: 2px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.3);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    /* Header */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: none;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: var(--spacing-md) var(--spacing-lg);
        display: block;
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .whatsapp-cta {
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .hero-content {
        order: 1;
    }

    .hero-illustration {
        order: 2;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Problems Grid */
    .problems-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .problem-card {
        padding: var(--spacing-lg);
    }

    .problem-icon {
        font-size: 32px;
    }

    .problem-card h3 {
        font-size: var(--font-size-lg);
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card.recommended {
        transform: none;
    }

    /* Hero ticket desk */
    .ticket-desk-card {
        padding: 28px;
    }

    .ticket-desk-card h2 {
        font-size: var(--font-size-2xl);
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }

    /* Process */
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step {
        min-height: auto;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

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

    /* Section Titles */
    .section-title {
        font-size: var(--font-size-3xl);
    }

    /* Spacing */
    .hero,
    .problems-section,
    .services-section,
    .pricing-section,
    .why-us-section,
    .process-section,
    .clients-section,
    .faq-section,
    .footer {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .logo-subtitle {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Buttons */
    .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
    }

    /* Typography */
    h1 {
        font-size: var(--font-size-3xl);
    }

    h2 {
        font-size: var(--font-size-2xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    /* Hero */
    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .hero-badges {
        gap: var(--spacing-md);
    }

    .badge {
        flex-direction: row;
        text-align: left;
    }

    .ticket-desk-card {
        padding: 22px;
        border-radius: 24px;
    }

    .ticket-flow-row {
        align-items: flex-start;
    }

    /* Problems */
    .problems-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-md);
    }

    .problem-card {
        padding: var(--spacing-md);
    }

    .problem-icon {
        font-size: 28px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .pricing-card {
        padding: var(--spacing-lg);
    }

    .amount {
        font-size: 28px;
    }

    .process-steps,
    .ticket-flow {
        grid-template-columns: 1fr;
    }

    .ticket-desk-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticket-desk-services span {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        margin: 0;
    }

    /* WhatsApp Button */
    .whatsapp-button {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 20px;
        height: 20px;
    }

    /* Contact Form */
    .contact-info {
        padding: var(--spacing-lg);
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    /* Dark mode support could be added here if needed */
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .header,
    .whatsapp-button,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }

    body {
        background: white;
    }

    a {
        text-decoration: underline;
    }
}


/* ========================================
   Ticketing System Additions
   ======================================== */
.ticket-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: #fff;
    font-size: 28px;
    box-shadow: 0 18px 40px rgba(14, 165, 233, 0.35);
    text-decoration: none;
    transition: var(--transition);
}

.ticket-button:hover {
    transform: translateY(-4px) scale(1.02);
}

.page-shell {
    padding-top: 88px;
    min-height: 100vh;
    background: #070D17;
}

.narrow-container {
    max-width: 920px;
}

.ticket-page {
    padding: var(--spacing-3xl) var(--spacing-md);
}

.page-heading {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.page-heading h1 {
    color: var(--color-text-dark);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-sm);
}

.page-heading p {
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto;
}

.selected-plan-box,
.success-card,
.admin-auth-card,
.ticket-detail-card,
.admin-table-card,
.stat-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.selected-plan-box {
    padding: var(--spacing-lg);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
}

.selected-plan-box span,
.small-text,
.setup-note {
    color: var(--color-text-muted);
}

.optional-label {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.ticket-form {
    margin: 0 auto;
}

.success-card {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--color-text-dark);
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.15);
    color: var(--color-success);
    font-size: 38px;
    border: 1px solid rgba(22, 163, 74, 0.35);
}

.ticket-ref-box {
    display: inline-block;
    padding: 16px 24px;
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-lg);
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.35);
    color: var(--color-cyan);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.field-error {
    border-color: #EF4444 !important;
}

.admin-auth-page,
.admin-shell {
    min-height: 100vh;
    background: #070D17;
    padding: var(--spacing-2xl);
    color: var(--color-text-dark);
}

.admin-auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-auth-card {
    width: min(100%, 460px);
    padding: var(--spacing-2xl);
}

.admin-auth-card h1,
.ticket-detail-card h2,
.admin-topbar h1 {
    color: var(--color-text-dark);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.admin-topbar p {
    color: var(--color-text-muted);
    margin: 0;
}

.admin-actions,
.admin-filter {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-card {
    padding: var(--spacing-lg);
}

.stat-card span {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.stat-card strong {
    font-size: 2rem;
    color: var(--color-cyan);
}

.admin-filter {
    margin-bottom: var(--spacing-lg);
}

.admin-filter input,
.admin-filter select {
    min-height: 46px;
    padding: 0 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #111827;
    color: var(--color-text-dark);
}

.admin-filter input {
    flex: 1;
    min-width: 260px;
}

.admin-table-card {
    overflow-x: auto;
}

.tickets-table {
    width: 100%;
    border-collapse: collapse;
}

.tickets-table th,
.tickets-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.tickets-table th {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tickets-table td span {
    color: var(--color-text-muted);
}

.empty-cell {
    text-align: center !important;
    color: var(--color-text-muted);
}

.table-link {
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 700;
}

.status-badge,
.priority-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.status-open { background: rgba(14, 165, 233, 0.14); color: #38BDF8; }
.status-in_progress { background: rgba(250, 204, 21, 0.14); color: #FACC15; }
.status-resolved { background: rgba(22, 163, 74, 0.14); color: #22C55E; }
.status-closed { background: rgba(148, 163, 184, 0.14); color: #CBD5E1; }
.priority-low { background: rgba(148, 163, 184, 0.14); color: #CBD5E1; }
.priority-normal { background: rgba(14, 165, 233, 0.14); color: #38BDF8; }
.priority-high { background: rgba(249, 115, 22, 0.16); color: #FB923C; }
.priority-urgent { background: rgba(239, 68, 68, 0.16); color: #F87171; }

.ticket-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.ticket-detail-card {
    padding: var(--spacing-xl);
}

.full-width-card {
    margin-bottom: var(--spacing-lg);
}

.detail-list {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
}

.detail-list dt {
    color: var(--color-text-muted);
    font-weight: 700;
}

.detail-list dd {
    color: var(--color-text-dark);
    margin: 0;
}

.ticket-message {
    color: var(--color-text-dark);
    line-height: 1.8;
    white-space: normal;
}

.history-item {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.history-item span {
    display: block;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.alert {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.alert-error {
    background: rgba(239, 68, 68, 0.14);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.alert-success {
    background: rgba(22, 163, 74, 0.14);
    color: #86EFAC;
    border: 1px solid rgba(22, 163, 74, 0.35);
}


/* ========================================
   Admin Dashboard Polish
   ======================================== */
.admin-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.admin-auth-card,
.admin-table-card,
.ticket-detail-card,
.stat-card {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(11, 18, 32, 0.98));
    border: 1px solid rgba(34, 211, 238, 0.12);
}

.admin-auth-card {
    position: relative;
    overflow: hidden;
}

.admin-auth-card::before,
.admin-table-card::before,
.ticket-detail-card::before,
.stat-card::before {
    content: '';
    display: block;
    height: 3px;
    margin: calc(-1 * var(--spacing-lg)) calc(-1 * var(--spacing-lg)) var(--spacing-lg);
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.admin-auth-card::before {
    margin: calc(-1 * var(--spacing-2xl)) calc(-1 * var(--spacing-2xl)) var(--spacing-xl);
}

.admin-topbar {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.10), rgba(34, 211, 238, 0.04));
    border: 1px solid rgba(34, 211, 238, 0.14);
    border-radius: var(--radius-xl);
}

.admin-topbar h1 {
    margin-bottom: 6px;
}

.admin-filter {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.admin-filter input:focus,
.admin-filter select:focus,
.admin-auth-card input:focus,
.ticket-detail-card select:focus,
.ticket-detail-card textarea:focus {
    border-color: rgba(34, 211, 238, 0.65);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
    outline: none;
}

.tickets-table tbody tr {
    transition: var(--transition);
}

.tickets-table tbody tr:hover {
    background: rgba(14, 165, 233, 0.06);
}

.tickets-table th:first-child,
.tickets-table td:first-child {
    padding-left: 22px;
}

.tickets-table th:last-child,
.tickets-table td:last-child {
    padding-right: 22px;
}

.admin-auth-card .btn,
.admin-actions .btn,
.admin-filter .btn,
.ticket-detail-card .btn {
    text-decoration: none;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ticket-detail-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 520px) {
    .admin-shell,
    .admin-auth-page {
        padding: var(--spacing-md);
    }

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

    .detail-list {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   Smooth Active Navigation
   ======================================== */
@media (max-width: 768px) {
    .nav-menu::before {
        display: none;
    }

    .nav-link.active {
        color: var(--color-cyan);
        background: rgba(14, 165, 233, 0.10);
        border-left: 3px solid var(--color-cyan);
        padding-left: calc(var(--spacing-lg) - 3px);
        border-radius: var(--radius-md);
    }
}

/* ========================================
   Refined Admin Pages
   ======================================== */
.admin-body {
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.10), transparent 30%),
        #070D17;
    min-height: 100vh;
}

.admin-shell {
    max-width: 1460px;
    margin: 0 auto;
    padding: 26px;
}

.admin-dashboard-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.admin-sidebar {
    position: sticky;
    top: 24px;
    min-height: calc(100vh - 52px);
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 8, 23, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.28);
}

.admin-brand h2 {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 1.3rem;
}

.admin-brand p {
    margin: 2px 0 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.admin-nav {
    display: grid;
    gap: 10px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--color-text-muted);
    border: 1px solid transparent;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--color-text-dark);
    background: rgba(14, 165, 233, 0.10);
    border-color: rgba(34, 211, 238, 0.18);
}

.admin-sidebar-footer {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-footer span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.admin-sidebar-footer strong {
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.admin-main {
    min-width: 0;
}

.admin-topbar {
    margin-bottom: 22px;
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(34, 211, 238, 0.05)),
        rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(34, 211, 238, 0.18);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20);
}

.admin-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--color-cyan);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-topbar h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.admin-actions .btn {
    min-height: 44px;
}

.stats-grid {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
}

.stat-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: -28px;
    top: -28px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.10);
}

.admin-filter {
    align-items: center;
    margin-bottom: 22px;
}

.admin-table-card,
.ticket-detail-card {
    border-radius: 24px;
}

.tickets-table {
    min-width: 860px;
}

.ticket-ref-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: var(--color-cyan);
    border: 1px solid rgba(34, 211, 238, 0.18);
    font-weight: 800;
}

.client-cell strong {
    color: var(--color-text-dark);
}

.client-cell span,
.issue-cell span {
    display: block;
    margin-top: 4px;
}

.admin-auth-page {
    position: relative;
    padding: 24px;
}

.admin-auth-wrap {
    width: min(100%, 980px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
}

.admin-auth-info,
.admin-auth-card {
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 8, 23, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.admin-auth-info {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.admin-auth-info::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -120px;
    top: -80px;
    background: rgba(14, 165, 233, 0.14);
}

.admin-auth-info h1 {
    color: var(--color-text-dark);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    margin: 18px 0;
}

.admin-auth-info p {
    color: var(--color-text-muted);
    max-width: 440px;
}

.admin-auth-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.admin-auth-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-dark);
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-auth-card {
    padding: 34px;
}

.admin-auth-card form {
    display: grid;
    gap: 16px;
}

.admin-auth-card .btn {
    width: 100%;
}

.admin-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-cyan);
    font-weight: 700;
}

@media (max-width: 1050px) {
    .admin-dashboard-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: unset;
    }

    .admin-sidebar-footer {
        position: static;
        margin-top: 18px;
    }

    .admin-auth-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .admin-shell {
        padding: 16px;
    }

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

    .admin-filter input,
    .admin-filter select,
    .admin-filter .btn {
        width: 100%;
        min-width: 0;
    }
}

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

    .admin-auth-info,
    .admin-auth-card,
    .admin-sidebar,
    .admin-topbar,
    .admin-table-card,
    .ticket-detail-card {
        border-radius: 20px;
    }
}

/* ========================================
   Mobile Menu Patch - dark, clean, ticket-first
   ======================================== */
.nav-menu .nav-link[href$="#contact"] {
    display: none !important;
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .header {
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(14px);
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar-container {
        min-height: 52px;
    }

    .logo svg {
        width: 34px;
        height: 34px;
    }

    .logo-text {
        font-size: 1.45rem;
        letter-spacing: 0.01em;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-toggle span {
        width: 22px;
        background: var(--color-text-dark);
    }

    .nav-menu {
        position: fixed;
        top: 81px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 18px 22px 24px;
        max-height: calc(100vh - 81px);
        overflow-y: auto;
        background: linear-gradient(180deg, rgba(15, 20, 25, 0.99), rgba(11, 31, 58, 0.98));
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(34, 211, 238, 0.18);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu::before {
        display: none !important;
    }

    .nav-link {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.035);
        color: var(--color-text-dark);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        box-shadow: none;
    }

    .nav-link:hover,
    .nav-link:focus,
    .nav-link.active {
        color: var(--color-cyan);
        background: rgba(14, 165, 233, 0.12);
        border-color: rgba(34, 211, 238, 0.32);
        border-left: 1px solid rgba(34, 211, 238, 0.32);
        padding-left: 16px;
    }

    .nav-cta {
        width: 100%;
        min-height: 54px;
        margin-top: 4px;
        border-radius: 18px;
        font-size: 1.05rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 16px 40px rgba(14, 165, 233, 0.30);
    }
}


/* ========================================
   Light / Dark Theme Toggle
   ======================================== */
:root,
html[data-theme="dark"] {
    color-scheme: dark;
    --theme-bg-start: #0F1419;
    --theme-bg-mid: #0A0E17;
    --theme-bg-end: #0F1419;
    --theme-surface: #1A1F2E;
    --theme-surface-2: #111827;
    --theme-surface-soft: rgba(255, 255, 255, 0.045);
    --theme-card-border: #1E293B;
    --theme-header-bg: rgba(15, 20, 25, 0.98);
    --theme-footer-bg: #0F172A;
    --theme-logo-bg: #0B1F3A;
    --theme-input-bg: #1A1F2E;
}

html[data-theme="light"] {
    color-scheme: light;
    --color-navy: #0B1F3A;
    --color-blue: #2563EB;
    --color-cyan: #0891B2;
    --color-green: #16A34A;
    --color-light-bg: #F8FAFC;
    --color-white: #FFFFFF;
    --color-text-dark: #0F172A;
    --color-text-muted: #64748B;
    --color-border: #D9E2EC;
    --theme-bg-start: #F8FAFC;
    --theme-bg-mid: #EEF6FF;
    --theme-bg-end: #FFFFFF;
    --theme-surface: #FFFFFF;
    --theme-surface-2: #F1F5F9;
    --theme-surface-soft: rgba(37, 99, 235, 0.055);
    --theme-card-border: #D9E2EC;
    --theme-header-bg: rgba(255, 255, 255, 0.94);
    --theme-footer-bg: #0B1F3A;
    --theme-logo-bg: #0B1F3A;
    --theme-input-bg: #FFFFFF;
    --shadow-md: 0 8px 22px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.16);
}

body {
    background: linear-gradient(180deg, var(--theme-bg-start) 0%, var(--theme-bg-mid) 50%, var(--theme-bg-end) 100%);
    transition: background-color 220ms ease, color 220ms ease;
}

.theme-toggle {
    width: 46px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(14, 165, 233, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition);
    margin-left: 4px;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
    outline: none;
}

.theme-toggle-track {
    position: relative;
    width: 28px;
    height: 20px;
    display: block;
}

.theme-toggle-icon {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    transition: transform 220ms ease, opacity 220ms ease;
}

.theme-toggle-sun {
    opacity: 0;
    transform: translateY(8px) rotate(-35deg) scale(0.72);
}

.theme-toggle-moon {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}

.theme-toggle.is-light .theme-toggle-sun {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}

.theme-toggle.is-light .theme-toggle-moon {
    opacity: 0;
    transform: translateY(-8px) rotate(35deg) scale(0.72);
}

html[data-theme="light"] .header {
    background: var(--theme-header-bg);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .logo svg circle {
    fill: var(--theme-logo-bg);
}

html[data-theme="light"] .nav-menu::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.11), rgba(8, 145, 178, 0.09));
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.active {
    color: #0F172A;
}

html[data-theme="light"] .theme-toggle {
    background: #FFFFFF;
    border-color: rgba(15, 23, 42, 0.12);
    color: #0F172A;
}

html[data-theme="light"] .hero,
html[data-theme="light"] .problems-section,
html[data-theme="light"] .services-section,
html[data-theme="light"] .pricing-section,
html[data-theme="light"] .why-section,
html[data-theme="light"] .process-section,
html[data-theme="light"] .clients-section,
html[data-theme="light"] .faq-section,
html[data-theme="light"] .ticket-page-section,
html[data-theme="light"] .order-page-section {
    background: transparent;
}

html[data-theme="light"] .hero {
    background:
        radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.12), transparent 34%),
        radial-gradient(circle at 86% 22%, rgba(8, 145, 178, 0.13), transparent 30%);
}

html[data-theme="light"] .hero-badge,
html[data-theme="light"] .problem-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .pricing-card,
html[data-theme="light"] .why-card,
html[data-theme="light"] .process-step,
html[data-theme="light"] .client-card,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .ticket-form-card,
html[data-theme="light"] .order-card,
html[data-theme="light"] .status-card,
html[data-theme="light"] .support-card,
html[data-theme="light"] .hero-support-card,
html[data-theme="light"] .ticket-check-card {
    background: var(--theme-surface) !important;
    border-color: var(--theme-card-border) !important;
    color: var(--color-text-dark);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .pricing-card.recommended {
    border-color: rgba(37, 99, 235, 0.45) !important;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.16);
}

html[data-theme="light"] .hero-illustration,
html[data-theme="light"] .support-desk-card,
html[data-theme="light"] .office-support-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,249,0.94)) !important;
    border-color: var(--theme-card-border) !important;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .hero-kicker,
html[data-theme="light"] .section-eyebrow,
html[data-theme="light"] .client-tags span,
html[data-theme="light"] .status-pill,
html[data-theme="light"] .order-badge,
html[data-theme="light"] .ticket-meta-pill {
    background: rgba(37, 99, 235, 0.08) !important;
    border-color: rgba(37, 99, 235, 0.18) !important;
    color: #1D4ED8;
}

html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea {
    background: var(--theme-input-bg) !important;
    border-color: var(--theme-card-border) !important;
    color: var(--color-text-dark) !important;
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
    color: #94A3B8;
}

html[data-theme="light"] .footer {
    background: var(--theme-footer-bg);
    color: #E2E8F0;
}

html[data-theme="light"] .footer a,
html[data-theme="light"] .footer p,
html[data-theme="light"] .footer li {
    color: #CBD5E1;
}

html[data-theme="light"] .footer h3,
html[data-theme="light"] .footer h4,
html[data-theme="light"] .footer .logo-text {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .theme-toggle {
        width: 100%;
        height: 46px;
        margin: 6px 0 0;
        justify-content: center;
        background: rgba(255, 255, 255, 0.035);
    }

    html[data-theme="light"] .nav-menu {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(239, 246, 255, 0.98));
        border-color: rgba(15, 23, 42, 0.10);
        box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
    }

    html[data-theme="light"] .nav-link {
        background: rgba(37, 99, 235, 0.055);
        border-color: rgba(37, 99, 235, 0.12);
        color: #0F172A;
    }

    html[data-theme="light"] .mobile-menu-toggle span {
        background: #0F172A;
    }
}

/* ========================================
   V10 Public Website Cleanup
   ======================================== */
.section-split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: end;
    margin-bottom: var(--spacing-2xl);
}

.section-split-heading .section-title,
.section-split-heading .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-v10 {
    padding-top: clamp(56px, 8vw, 104px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.hero-v10 .hero .container,
.hero-v10 .container {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1fr);
    gap: clamp(36px, 6vw, 88px);
}

.hero-v10 .hero-title {
    font-size: clamp(3rem, 7vw, 5.6rem);
    max-width: 780px;
}

.hero-v10 .hero-subtitle {
    max-width: 670px;
}

.ops-console-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: clamp(24px, 4vw, 38px);
    background:
        radial-gradient(circle at 82% 12%, rgba(34, 211, 238, 0.18), transparent 36%),
        linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(8, 18, 32, 0.98));
    border: 1px solid rgba(34, 211, 238, 0.18);
    box-shadow: 0 28px 80px rgba(2, 8, 23, 0.38);
}

.ops-console-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    pointer-events: none;
}

.ops-console-card > * {
    position: relative;
}

.ops-console-header {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
}

.ops-console-header h2 {
    color: var(--color-white);
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
    margin-bottom: 0;
}

.ops-console-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.ops-console-main {
    display: grid;
    gap: 12px;
}

.console-row {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    border-radius: 18px;
}

.console-row.priority-row {
    border-color: rgba(34, 211, 238, 0.24);
    background: rgba(14, 165, 233, 0.08);
}

.console-row strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 4px;
}

.console-row small {
    display: block;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.console-row > span {
    flex-shrink: 0;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--color-cyan);
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(34, 211, 238, 0.18);
    font-size: var(--font-size-sm);
    font-weight: 800;
}

.ops-console-side {
    display: grid;
    gap: 12px;
}

.console-stat {
    display: flex;
    min-height: 78px;
    flex-direction: column;
    justify-content: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.console-stat span {
    color: var(--color-white);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.console-stat small {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin-top: 7px;
}

.services-v10,
.pricing-v10,
.support-section,
.faq-v10 {
    padding: clamp(56px, 7vw, 88px) var(--spacing-md);
}

.services-grid-v10 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.service-card-v10 {
    min-height: 330px;
}

.service-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--spacing-lg);
}

.service-points span,
.plan-type-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(34, 211, 238, 0.18);
    color: var(--color-cyan);
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.client-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: var(--spacing-2xl);
    padding: 18px;
    border-radius: 22px;
    background: rgba(26, 31, 46, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.client-strip strong {
    color: var(--color-text-dark);
    margin-right: 4px;
}

.client-strip span {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-weight: 650;
    font-size: var(--font-size-sm);
}

.pricing-card-v10 .plan-type-badge {
    margin-bottom: 12px;
}

.pricing-card-v10 h3 {
    margin-top: var(--spacing-md);
}

.pricing-note-v10 {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.18);
}

.support-system-card {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 8%, rgba(34, 211, 238, 0.12), transparent 32%),
        linear-gradient(145deg, rgba(26, 31, 46, 0.98), rgba(12, 18, 32, 0.98));
    border: 1px solid rgba(34, 211, 238, 0.18);
    box-shadow: 0 24px 70px rgba(2, 8, 23, 0.24);
}

.support-copy h2 {
    color: var(--color-text-dark);
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
    margin-bottom: var(--spacing-lg);
}

.support-copy p {
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
    line-height: 1.75;
}

.support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.support-steps-compact {
    display: grid;
    gap: 14px;
}

.support-step-compact {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-step-compact > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.20);
    color: var(--color-cyan);
    font-weight: 900;
}

.support-step-compact h3 {
    color: var(--color-text-dark);
    margin-bottom: 6px;
    font-size: var(--font-size-lg);
}

.support-step-compact p {
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

html[data-theme="light"] .ops-console-card,
html[data-theme="light"] .support-system-card,
html[data-theme="light"] .client-strip {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,249,0.94)) !important;
    border-color: var(--theme-card-border) !important;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .ops-console-header h2,
html[data-theme="light"] .console-row strong,
html[data-theme="light"] .console-stat span {
    color: var(--color-text-dark);
}

html[data-theme="light"] .console-row,
html[data-theme="light"] .console-stat,
html[data-theme="light"] .support-step-compact,
html[data-theme="light"] .client-strip span {
    background: rgba(37, 99, 235, 0.055);
    border-color: rgba(37, 99, 235, 0.12);
}

@media (max-width: 1180px) {
    .services-grid-v10,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .section-split-heading,
    .support-system-card {
        grid-template-columns: 1fr;
    }

    .hero-v10 .container {
        grid-template-columns: 1fr;
    }

    .ops-console-grid {
        grid-template-columns: 1fr;
    }

    .ops-console-side {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-v10 .hero-title {
        font-size: clamp(2.6rem, 13vw, 3.6rem);
    }

    .hero-badges,
    .services-grid-v10,
    .pricing-grid,
    .ops-console-side {
        grid-template-columns: 1fr;
    }

    .ops-console-card,
    .support-system-card {
        border-radius: 24px;
        padding: 22px;
    }

    .console-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .support-actions .btn,
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   Public Check Ticket Page
   ======================================== */
.check-ticket-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: var(--spacing-lg);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

.check-ticket-form,
.ticket-help-card,
.public-ticket-result,
.public-ticket-card {
    background: rgba(17, 24, 39, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.check-ticket-form {
    padding: var(--spacing-xl);
}

.ticket-help-card {
    padding: var(--spacing-xl);
    color: var(--color-text-dark);
}

.ticket-help-card h2 {
    font-size: var(--font-size-2xl);
}

.ticket-help-card p,
.ticket-help-card li {
    color: var(--color-text-muted);
}

.ticket-help-card ul {
    margin-left: 18px;
}

.public-ticket-result {
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.ticket-result-header {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-result-header h2 {
    margin: 8px 0 6px;
    color: var(--color-cyan);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.ticket-result-header p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.ticket-status-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.public-ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.public-ticket-card {
    padding: var(--spacing-xl);
}

.public-ticket-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.public-timeline-card {
    margin-top: var(--spacing-lg);
}

.public-timeline {
    display: grid;
    gap: 0;
    margin-bottom: var(--spacing-md);
}

.public-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 0 0 var(--spacing-md);
}

.public-timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 18px;
    bottom: -2px;
    width: 2px;
    background: rgba(14, 165, 233, 0.25);
}

.timeline-dot {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.12);
}

.public-timeline-item strong {
    display: block;
    color: var(--color-text-dark);
}

.public-timeline-item small {
    color: var(--color-text-muted);
}

.success-card-v11 .success-next-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

@media (max-width: 900px) {
    .check-ticket-layout,
    .public-ticket-grid {
        grid-template-columns: 1fr;
    }

    .ticket-result-header {
        flex-direction: column;
    }

    .ticket-status-stack {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* ========================================
   V12 Unified Ticket Page + Theme Refinement
   ======================================== */
.ticket-hub-page .narrow-container {
    max-width: 1120px;
}

.ticket-mode-tabs {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 8px;
    padding: 8px;
    margin: 0 auto var(--spacing-xl);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.ticket-hub-page .page-heading + .ticket-mode-tabs {
    display: grid;
    max-width: 430px;
}

.ticket-mode-tab {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 10px 20px;
    border-radius: 999px;
    color: var(--color-text-muted);
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: var(--transition);
}

.ticket-mode-tab:hover,
.ticket-mode-tab:focus-visible,
.ticket-mode-tab.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
    outline: none;
}

.ticket-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: var(--spacing-lg);
    align-items: start;
}

.ticket-side-card {
    position: sticky;
    top: 110px;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    background: rgba(17, 24, 39, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.ticket-side-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.ticket-side-card p,
.ticket-side-card li {
    color: var(--color-text-muted);
}

.ticket-side-card ul {
    margin: 0 0 var(--spacing-lg) 18px;
}

.ticket-hub-check-layout {
    margin-top: 0;
}

.ticket-hub-result {
    animation: ticketResultIn 220ms ease both;
}

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

html[data-theme="light"] .page-shell {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF6FF 55%, #FFFFFF 100%);
}

html[data-theme="light"] .ticket-mode-tabs,
html[data-theme="light"] .ticket-side-card,
html[data-theme="light"] .ticket-help-card,
html[data-theme="light"] .public-ticket-result,
html[data-theme="light"] .public-ticket-card {
    background: #FFFFFF !important;
    border-color: var(--theme-card-border) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .ticket-mode-tab {
    color: #475569;
}

html[data-theme="light"] .ticket-mode-tab:hover,
html[data-theme="light"] .ticket-mode-tab:focus-visible,
html[data-theme="light"] .ticket-mode-tab.active {
    color: #FFFFFF;
}

html[data-theme="light"] .ticket-side-card p,
html[data-theme="light"] .ticket-side-card li,
html[data-theme="light"] .ticket-help-card p,
html[data-theme="light"] .ticket-help-card li {
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .ticket-panel-grid {
        grid-template-columns: 1fr;
    }

    .ticket-side-card {
        position: static;
    }
}

@media (max-width: 520px) {
    .ticket-hub-page .page-heading {
        text-align: left;
    }

    .ticket-hub-page .page-heading .section-eyebrow {
        margin-left: 0;
    }

    .ticket-mode-tabs,
    .ticket-hub-page .page-heading + .ticket-mode-tabs {
        width: 100%;
        max-width: none;
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .ticket-mode-tab {
        border-radius: 16px;
    }
}

/* ========================================
   V13 Smooth Ticket Tabs + Baby Blue Light Mode
   ======================================== */
.ticket-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}

.ticket-tab-panel.active {
    display: block;
    animation: smoothTicketPanelIn 260ms ease both;
}

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

html[data-theme="light"] {
    --color-navy: #0B2447;
    --color-blue: #1677E8;
    --color-cyan: #0EA5C6;
    --color-green: #16A34A;
    --color-light-bg: #EAF6FF;
    --color-white: #FFFFFF;
    --color-text-dark: #0B1F3A;
    --color-text-muted: #526B83;
    --color-border: #BBDDF5;
    --theme-bg-start: #EAF6FF;
    --theme-bg-mid: #DDF1FF;
    --theme-bg-end: #F4FBFF;
    --theme-surface: #F7FCFF;
    --theme-surface-2: #E9F6FF;
    --theme-surface-soft: rgba(22, 119, 232, 0.075);
    --theme-card-border: #BBDDF5;
    --theme-header-bg: rgba(238, 248, 255, 0.96);
    --theme-footer-bg: #0B2447;
    --theme-logo-bg: #0B2447;
    --theme-input-bg: #F8FCFF;
}

html[data-theme="light"] body {
    background:
        radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.16), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(125, 211, 252, 0.22), transparent 28%),
        linear-gradient(180deg, #EAF6FF 0%, #DDF1FF 48%, #F4FBFF 100%);
}

html[data-theme="light"] .hero {
    background:
        radial-gradient(circle at 16% 16%, rgba(14, 165, 233, 0.18), transparent 34%),
        radial-gradient(circle at 86% 22%, rgba(125, 211, 252, 0.26), transparent 32%),
        transparent;
}

html[data-theme="light"] .page-shell {
    background:
        radial-gradient(circle at 18% 8%, rgba(14, 165, 233, 0.15), transparent 30%),
        linear-gradient(180deg, #EAF6FF 0%, #DDF1FF 54%, #F4FBFF 100%) !important;
}

html[data-theme="light"] .badge,
html[data-theme="light"] .hero-badge,
html[data-theme="light"] .service-card,
html[data-theme="light"] .service-card-v10,
html[data-theme="light"] .pricing-card,
html[data-theme="light"] .support-system-card,
html[data-theme="light"] .support-step-compact,
html[data-theme="light"] .ticket-mode-tabs,
html[data-theme="light"] .ticket-side-card,
html[data-theme="light"] .ticket-help-card,
html[data-theme="light"] .public-ticket-result,
html[data-theme="light"] .public-ticket-card,
html[data-theme="light"] .ticket-form,
html[data-theme="light"] .selected-plan-box,
html[data-theme="light"] .ops-console-card,
html[data-theme="light"] .client-strip {
    background: rgba(247, 252, 255, 0.92) !important;
    border-color: rgba(99, 179, 237, 0.35) !important;
    color: var(--color-text-dark) !important;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10) !important;
}

html[data-theme="light"] .badge-text,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .service-card-v10 h3,
html[data-theme="light"] .pricing-card h3,
html[data-theme="light"] .support-copy h2,
html[data-theme="light"] .support-step-compact h3,
html[data-theme="light"] .ticket-side-card h2,
html[data-theme="light"] .ticket-help-card h2,
html[data-theme="light"] .public-ticket-card h3,
html[data-theme="light"] .ops-console-header h2,
html[data-theme="light"] .console-row strong,
html[data-theme="light"] .console-stat span {
    color: #0B1F3A !important;
}

html[data-theme="light"] .badge-icon,
html[data-theme="light"] .service-points span,
html[data-theme="light"] .plan-type-badge,
html[data-theme="light"] .support-step-compact > span,
html[data-theme="light"] .ticket-meta-pill,
html[data-theme="light"] .section-eyebrow {
    background: rgba(14, 165, 233, 0.10) !important;
    border-color: rgba(14, 165, 233, 0.22) !important;
    color: #075985 !important;
}

html[data-theme="light"] .console-row,
html[data-theme="light"] .console-stat,
html[data-theme="light"] .client-strip span {
    background: rgba(224, 242, 254, 0.72) !important;
    border-color: rgba(99, 179, 237, 0.28) !important;
}

html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea {
    background: rgba(248, 252, 255, 0.96) !important;
    border-color: rgba(99, 179, 237, 0.38) !important;
}

html[data-theme="light"] .btn-secondary {
    background: rgba(248, 252, 255, 0.72);
    color: #075985;
    border-color: rgba(14, 165, 233, 0.42);
}

html[data-theme="light"] .btn-secondary:hover,
html[data-theme="light"] .btn-secondary:focus-visible {
    background: rgba(224, 242, 254, 0.95);
    color: #0B1F3A;
}

html[data-theme="light"] .ticket-mode-tab {
    color: #526B83;
}

html[data-theme="light"] .ticket-mode-tab:hover,
html[data-theme="light"] .ticket-mode-tab:focus-visible,
html[data-theme="light"] .ticket-mode-tab.active {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #1677E8, #0EA5C6) !important;
}


/* ========================================
   V16 Ticket + Order Status Hub
   ======================================== */
.ticket-mode-tabs.ticket-mode-tabs-three,
.ticket-hub-page .page-heading + .ticket-mode-tabs.ticket-mode-tabs-three {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    max-width: 650px;
}

.public-order-result .ticket-result-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: var(--spacing-lg);
}

html[data-theme="light"] .public-order-result .ticket-result-header {
    border-bottom-color: rgba(99, 179, 237, 0.28);
}

@media (max-width: 700px) {
    .ticket-mode-tabs.ticket-mode-tabs-three,
    .ticket-hub-page .page-heading + .ticket-mode-tabs.ticket-mode-tabs-three {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

/* ========================================
   V17 Support Center Redesign
   ======================================== */
.ticket-hub-page {
    padding-top: clamp(90px, 9vw, 130px);
}

.ticket-hub-page .page-heading {
    max-width: 820px;
    margin: 0 auto var(--spacing-xl);
}

.ticket-hub-page .page-heading h1 {
    letter-spacing: -0.04em;
}

.support-request-card,
.check-ticket-form,
.ticket-help-card,
.public-ticket-result,
.public-ticket-card {
    position: relative;
    overflow: hidden;
}

.support-request-card {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 32px;
    background:
        radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(17, 24, 39, 0.86));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 28px 70px rgba(2, 8, 23, 0.34);
}

.support-request-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.support-request-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.support-request-top h2 {
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    color: var(--color-text-dark);
}

.support-request-top p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.request-type-pill {
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.28);
    color: var(--color-cyan);
    font-weight: 800;
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

.support-flow-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: var(--spacing-xl);
}

.flow-strip-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-strip-item span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
}

.flow-strip-item strong,
.flow-strip-item small {
    display: block;
}

.flow-strip-item strong {
    margin-bottom: 5px;
    color: var(--color-text-dark);
    font-size: 1rem;
}

.flow-strip-item small {
    color: var(--color-text-muted);
    line-height: 1.5;
}

.support-request-form {
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.support-request-form .form-row {
    gap: 18px;
}

.form-actions-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: var(--spacing-md);
}

.compact-status-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.mini-card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.24);
    font-size: 1.45rem;
}

.compact-status-card h2 {
    margin-bottom: 18px;
}

.mini-checklist {
    display: grid;
    gap: 10px;
}

.mini-checklist span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-weight: 700;
}

.mini-checklist span::before {
    content: '✓';
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.16);
    color: #22C55E;
    font-size: 0.82rem;
    font-weight: 900;
}

html[data-theme="light"] body,
html[data-theme="light"] .page-shell {
    background:
        radial-gradient(circle at 18% 8%, rgba(59, 130, 246, 0.14), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(14, 165, 233, 0.18), transparent 32%),
        linear-gradient(180deg, #EAF7FF 0%, #DDF1FF 52%, #F3FBFF 100%) !important;
}

html[data-theme="light"] .support-request-card {
    background:
        radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(234, 247, 255, 0.94)) !important;
    border-color: rgba(72, 166, 228, 0.28) !important;
    box-shadow: 0 26px 60px rgba(30, 88, 141, 0.13) !important;
}

html[data-theme="light"] .support-request-top h2,
html[data-theme="light"] .flow-strip-item strong,
html[data-theme="light"] .compact-status-card h2 {
    color: #0B2447 !important;
}

html[data-theme="light"] .support-request-top p,
html[data-theme="light"] .flow-strip-item small,
html[data-theme="light"] .mini-checklist span {
    color: #526B83 !important;
}

html[data-theme="light"] .request-type-pill,
html[data-theme="light"] .mini-card-icon {
    background: rgba(14, 165, 233, 0.10) !important;
    border-color: rgba(14, 165, 233, 0.24) !important;
    color: #075985 !important;
}

html[data-theme="light"] .flow-strip-item,
html[data-theme="light"] .mini-checklist span,
html[data-theme="light"] .check-ticket-form,
html[data-theme="light"] .ticket-help-card,
html[data-theme="light"] .public-ticket-result,
html[data-theme="light"] .public-ticket-card {
    background: rgba(248, 252, 255, 0.78) !important;
    border-color: rgba(99, 179, 237, 0.30) !important;
    box-shadow: 0 18px 42px rgba(30, 88, 141, 0.10) !important;
}

html[data-theme="light"] .ticket-mode-tabs {
    background: rgba(247, 252, 255, 0.82) !important;
    border-color: rgba(99, 179, 237, 0.34) !important;
}

html[data-theme="light"] .ticket-mode-tab:not(.active) {
    background: transparent !important;
    color: #526B83 !important;
    box-shadow: none !important;
}

html[data-theme="light"] label {
    color: #0B2447;
}

html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea {
    background: rgba(255, 255, 255, 0.78) !important;
    border-color: rgba(72, 166, 228, 0.42) !important;
    color: #0B2447 !important;
}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder {
    color: #7A91A8 !important;
}

@media (max-width: 820px) {
    .support-request-top {
        flex-direction: column;
    }

    .support-flow-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .support-request-card {
        padding: 22px;
        border-radius: 24px;
    }

    .form-actions-row .btn {
        width: 100%;
    }
}

/* ========================================
   V18 Support Center Alignment Fix
   ======================================== */
.ticket-tab-panel[data-ticket-panel="check"],
.ticket-tab-panel[data-ticket-panel="order"] {
    width: 100%;
}

.ticket-hub-check-layout {
    width: min(100%, 820px);
    margin: 0 auto var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: clamp(18px, 3vw, 28px);
    align-items: stretch;
    justify-content: center;
}

.ticket-hub-check-layout .check-ticket-form,
.ticket-hub-check-layout .ticket-help-card {
    width: 100%;
    min-height: 345px;
    padding: clamp(24px, 3vw, 32px);
    border-radius: 28px;
}

.ticket-hub-check-layout .check-ticket-form {
    justify-content: center;
}

.ticket-hub-check-layout .compact-status-card {
    justify-content: center;
    align-items: flex-start;
}

.ticket-hub-check-layout .compact-status-card .mini-checklist {
    width: 100%;
}

.ticket-hub-check-layout .btn-large {
    width: 100%;
    justify-content: center;
}

.ticket-hub-check-layout .mini-card-icon {
    margin-bottom: 18px;
}

.ticket-hub-check-layout .compact-status-card h2 {
    margin-bottom: 16px;
}

.ticket-hub-page .ticket-mode-tabs.ticket-mode-tabs-three,
.ticket-hub-page .page-heading + .ticket-mode-tabs.ticket-mode-tabs-three {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(24px, 4vw, 34px);
}

.ticket-hub-page .page-heading {
    text-align: center;
}

.ticket-hub-page .page-heading p {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 820px) {
    .ticket-hub-check-layout {
        width: min(100%, 520px);
        grid-template-columns: 1fr;
    }

    .ticket-hub-check-layout .check-ticket-form,
    .ticket-hub-check-layout .ticket-help-card {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .ticket-hub-check-layout {
        width: 100%;
        gap: 16px;
    }

    .ticket-hub-check-layout .check-ticket-form,
    .ticket-hub-check-layout .ticket-help-card {
        padding: 22px;
        border-radius: 22px;
    }
}

/* ========================================
   Language Switcher
   ======================================== */
.language-switcher {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 40px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.language-link {
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 8px;
    transition: color 180ms ease, background-color 180ms ease;
}

.language-link:hover,
.language-link:focus-visible,
.language-link.active {
    color: var(--color-cyan);
    background: rgba(34, 211, 238, 0.10);
}

html[data-theme="light"] .language-switcher {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(14, 165, 233, 0.18);
    color: #58718A;
}

html[data-theme="light"] .language-link {
    color: #58718A;
}

html[data-theme="light"] .language-link:hover,
html[data-theme="light"] .language-link:focus-visible,
html[data-theme="light"] .language-link.active {
    color: #0369A1;
    background: rgba(14, 165, 233, 0.12);
}

@media (max-width: 768px) {
    .language-switcher {
        width: 100%;
        justify-content: center;
        margin-top: 2px;
        margin-bottom: 2px;
        padding: 10px 12px;
    }
}

/* ========================================
   V26 Form Design Polish
   Softer support/order forms, especially in light mode
   ======================================== */
.ticket-hub-page .support-request-card {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-hub-page .support-request-form,
.ticket-hub-page .check-ticket-form {
    display: grid;
    gap: 18px;
}

.ticket-hub-page .support-request-form .form-row,
.ticket-hub-page .check-ticket-form .form-row {
    margin-bottom: 0;
}

.ticket-hub-page .form-group {
    margin-bottom: 0;
}

.ticket-hub-page .form-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ticket-hub-page .form-group input,
.ticket-hub-page .form-group select,
.ticket-hub-page .form-group textarea,
.order-page-section .form-group input,
.order-page-section .form-group select,
.order-page-section .form-group textarea {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ticket-hub-page .form-group textarea,
.order-page-section .form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.ticket-hub-page .form-group input:hover,
.ticket-hub-page .form-group select:hover,
.ticket-hub-page .form-group textarea:hover,
.order-page-section .form-group input:hover,
.order-page-section .form-group select:hover,
.order-page-section .form-group textarea:hover {
    border-color: rgba(34, 211, 238, 0.34);
}

.ticket-hub-page .form-group input:focus,
.ticket-hub-page .form-group select:focus,
.ticket-hub-page .form-group textarea:focus,
.order-page-section .form-group input:focus,
.order-page-section .form-group select:focus,
.order-page-section .form-group textarea:focus {
    border-color: rgba(34, 211, 238, 0.72) !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

html[data-theme="light"] .ticket-hub-page .support-request-card {
    background:
        radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.11), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(235, 248, 255, 0.68)) !important;
    border-color: rgba(125, 211, 252, 0.22) !important;
    box-shadow: 0 22px 50px rgba(30, 88, 141, 0.09) !important;
    backdrop-filter: blur(12px);
}

html[data-theme="light"] .support-request-card::before {
    height: 3px;
    opacity: 0.75;
}

html[data-theme="light"] .ticket-hub-page .support-flow-strip .flow-strip-item {
    background: rgba(255, 255, 255, 0.58) !important;
    border-color: rgba(125, 211, 252, 0.22) !important;
    box-shadow: 0 12px 26px rgba(30, 88, 141, 0.06) !important;
}

html[data-theme="light"] .ticket-hub-page .support-request-form,
html[data-theme="light"] .ticket-hub-page .check-ticket-form,
html[data-theme="light"] .order-page-section .contact-form {
    background: rgba(255, 255, 255, 0.38) !important;
    border: 1px solid rgba(125, 211, 252, 0.16) !important;
    border-radius: 26px;
    padding: clamp(18px, 2.4vw, 26px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

html[data-theme="light"] .ticket-hub-check-layout .check-ticket-form {
    background: rgba(255, 255, 255, 0.54) !important;
}

html[data-theme="light"] .ticket-hub-page .form-group label,
html[data-theme="light"] .order-page-section .form-group label {
    color: #12304C !important;
}

html[data-theme="light"] .ticket-hub-page .form-group input,
html[data-theme="light"] .ticket-hub-page .form-group select,
html[data-theme="light"] .ticket-hub-page .form-group textarea,
html[data-theme="light"] .order-page-section .form-group input,
html[data-theme="light"] .order-page-section .form-group select,
html[data-theme="light"] .order-page-section .form-group textarea {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 251, 255, 0.94)) !important;
    border-color: rgba(56, 189, 248, 0.30) !important;
    color: #0B2447 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 8px 18px rgba(30, 88, 141, 0.055) !important;
}

html[data-theme="light"] .ticket-hub-page .form-group input:hover,
html[data-theme="light"] .ticket-hub-page .form-group select:hover,
html[data-theme="light"] .ticket-hub-page .form-group textarea:hover,
html[data-theme="light"] .order-page-section .form-group input:hover,
html[data-theme="light"] .order-page-section .form-group select:hover,
html[data-theme="light"] .order-page-section .form-group textarea:hover {
    border-color: rgba(14, 165, 233, 0.48) !important;
}

html[data-theme="light"] .ticket-hub-page .form-group input:focus,
html[data-theme="light"] .ticket-hub-page .form-group select:focus,
html[data-theme="light"] .ticket-hub-page .form-group textarea:focus,
html[data-theme="light"] .order-page-section .form-group input:focus,
html[data-theme="light"] .order-page-section .form-group select:focus,
html[data-theme="light"] .order-page-section .form-group textarea:focus {
    border-color: rgba(2, 132, 199, 0.74) !important;
    box-shadow:
        0 0 0 4px rgba(14, 165, 233, 0.14),
        0 12px 28px rgba(14, 165, 233, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
}

html[data-theme="light"] .ticket-hub-page .form-group input::placeholder,
html[data-theme="light"] .ticket-hub-page .form-group textarea::placeholder,
html[data-theme="light"] .order-page-section .form-group input::placeholder,
html[data-theme="light"] .order-page-section .form-group textarea::placeholder {
    color: #7B93AB !important;
}

html[data-theme="light"] .ticket-hub-page .optional-label {
    color: #6B86A0 !important;
}

html[data-theme="light"] .ticket-hub-page .compact-status-card,
html[data-theme="light"] .ticket-hub-page .public-ticket-card,
html[data-theme="light"] .ticket-hub-page .public-ticket-result {
    background: rgba(255, 255, 255, 0.62) !important;
    border-color: rgba(125, 211, 252, 0.20) !important;
    box-shadow: 0 18px 42px rgba(30, 88, 141, 0.08) !important;
}

@media (max-width: 560px) {
    html[data-theme="light"] .ticket-hub-page .support-request-form,
    html[data-theme="light"] .ticket-hub-page .check-ticket-form,
    html[data-theme="light"] .order-page-section .contact-form {
        padding: 16px;
        border-radius: 22px;
    }

    .ticket-hub-page .form-group input,
    .ticket-hub-page .form-group select,
    .ticket-hub-page .form-group textarea,
    .order-page-section .form-group input,
    .order-page-section .form-group select,
    .order-page-section .form-group textarea {
        min-height: 52px;
        border-radius: 14px;
    }
}


/* ========================================
   ITCare LB Brand Assets
   ======================================== */
.logo {
    gap: 12px;
}

.logo-mark-wrap {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(14, 165, 233, 0.08);
    box-shadow: 0 14px 34px rgba(14, 165, 233, 0.18);
    overflow: hidden;
    flex: 0 0 auto;
}

.logo-mark-img {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-copy {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.logo-text {
    letter-spacing: -0.035em;
    line-height: 1;
    font-weight: 800;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(14, 165, 233, 0.18);
}

.footer-brand h3 {
    margin-bottom: 0;
}

html[data-theme="light"] .logo-mark-wrap,
html[data-theme="light"] .footer-logo-mark {
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.16);
}

@media (max-width: 768px) {
    .logo-mark-wrap {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .footer-logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }
}

/* ========================================
   v31 Order / Payment Flow Polish
   ======================================== */
.order-page-v31 .container {
    max-width: 1180px;
}

.order-heading-v31 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.order-flow-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 940px;
    margin: 0 auto 28px;
}

.order-flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px 12px;
    padding: 16px;
    border-radius: 20px;
    background: var(--color-surface, rgba(15, 23, 42, .78));
    border: 1px solid var(--color-border, rgba(148, 163, 184, .18));
    box-shadow: var(--shadow-sm);
}

.order-flow-step span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
}

.order-flow-step strong {
    color: var(--color-text-dark);
    font-size: .98rem;
}

.order-flow-step small {
    color: var(--color-text-muted);
    line-height: 1.4;
}

.order-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 24px;
    align-items: start;
}

.order-form-v31,
.order-summary-card {
    border-radius: 28px;
    border: 1px solid var(--color-border, rgba(148, 163, 184, .18));
    background: var(--color-card, rgba(15, 23, 42, .78));
    box-shadow: var(--shadow-lg);
}

.form-section-title {
    margin-bottom: 22px;
}

.form-section-title span,
.summary-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--color-blue);
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.form-section-title h2,
.order-summary-card h2 {
    margin: 0;
    color: var(--color-text-dark);
}

.order-summary-card {
    position: sticky;
    top: 96px;
    padding: 30px;
}

.summary-price {
    margin: 14px 0 6px;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-text-dark);
    letter-spacing: -.04em;
}

.summary-best-for {
    margin: 0 0 20px;
    color: var(--color-text-muted);
}

.summary-status-box,
.payment-method-note {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, .25);
    background: rgba(14, 165, 233, .09);
    margin-bottom: 18px;
}

.summary-status-box span,
.payment-method-note strong {
    display: block;
    color: var(--color-blue);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.summary-status-box strong {
    display: block;
    color: var(--color-text-dark);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.summary-status-box p,
.payment-method-note p {
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.7;
}

.summary-checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: grid;
    gap: 10px;
}

.summary-checklist li {
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.summary-checklist li::before {
    content: '✓';
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, .16);
    color: var(--color-success, #16A34A);
    font-weight: 900;
}

.order-success-card-v31 {
    max-width: 820px;
    margin: 0 auto;
}

.order-success-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.order-success-summary > div,
.order-next-steps {
    text-align: left;
    padding: 18px;
    border-radius: 20px;
    background: var(--color-surface, rgba(15, 23, 42, .7));
    border: 1px solid var(--color-border, rgba(148, 163, 184, .18));
}

.order-success-summary span {
    display: block;
    color: var(--color-text-muted);
    font-size: .85rem;
    margin-bottom: 6px;
}

.order-success-summary strong {
    display: block;
    color: var(--color-text-dark);
    font-size: 1.1rem;
}

.order-success-summary small {
    display: block;
    color: var(--color-blue);
    margin-top: 4px;
    font-weight: 700;
}

.order-next-steps h2 {
    margin-bottom: 14px;
}

.order-next-steps ol {
    margin: 0;
    padding-left: 22px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

[data-theme="light"] .order-flow-step,
[data-theme="light"] .order-form-v31,
[data-theme="light"] .order-summary-card,
[data-theme="light"] .order-success-summary > div,
[data-theme="light"] .order-next-steps {
    background: rgba(255, 255, 255, .74);
    border-color: rgba(14, 165, 233, .22);
}

[data-theme="light"] .summary-status-box,
[data-theme="light"] .payment-method-note {
    background: rgba(224, 242, 254, .82);
    border-color: rgba(14, 165, 233, .24);
}

@media (max-width: 900px) {
    .order-flow-strip,
    .order-checkout-grid,
    .order-success-summary {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        position: static;
    }
}

/* ========================================
   Legal / Trust Pages + 404
   ======================================== */
.legal-page,
.error-page {
    background:
        radial-gradient(circle at 20% 10%, rgba(14, 165, 233, 0.12), transparent 32%),
        radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.08), transparent 30%),
        var(--color-bg-primary);
    min-height: 70vh;
}

.legal-hero {
    padding: 150px var(--spacing-md) 50px;
}

.legal-container {
    max-width: 920px;
}

.legal-hero h1,
.error-container h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-dark);
}

.legal-hero p,
.error-container p {
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
    line-height: 1.8;
    max-width: 760px;
}

.legal-updated {
    display: inline-flex;
    margin-top: var(--spacing-md);
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-bg-card);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm) !important;
}

.legal-content {
    padding: 0 var(--spacing-md) var(--spacing-3xl);
}

.legal-card {
    padding: clamp(22px, 4vw, 34px);
    margin-bottom: var(--spacing-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    margin-bottom: 12px;
    color: var(--color-text-dark);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-card p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.legal-card a {
    color: var(--color-blue);
    font-weight: 700;
}

.error-shell {
    padding: 170px var(--spacing-md) 90px;
}

.error-container {
    max-width: 780px;
    text-align: center;
    padding: clamp(34px, 6vw, 60px);
    margin: 0 auto;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: var(--spacing-lg);
    border-radius: 28px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(14, 165, 233, 0.28);
}

.error-container p {
    margin: 0 auto var(--spacing-xl);
}

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-section ul li a[href*="privacy"],
.footer-section ul li a[href*="terms"] {
    color: var(--color-text-muted);
}

@media (max-width: 640px) {
    .legal-hero {
        padding-top: 125px;
    }

    .legal-card {
        padding: 22px;
    }

    .error-shell {
        padding-top: 135px;
    }

    .error-actions .btn {
        width: 100%;
    }
}

/* ========================================
   Whish-only activation form polish
   ======================================== */
.whish-order-page {
    background:
        radial-gradient(circle at 15% 8%, rgba(14, 165, 233, 0.15), transparent 34%),
        radial-gradient(circle at 85% 8%, rgba(34, 211, 238, 0.11), transparent 30%),
        var(--color-bg-primary);
}

.whish-checkout-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
    max-width: 1120px;
    margin: 0 auto;
    gap: 28px;
}

.whish-order-form {
    padding: clamp(26px, 4vw, 42px) !important;
    overflow: visible;
}

.whish-form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--color-border);
}

.whish-form-header span,
.whish-plan-mini span {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--color-blue);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.whish-form-header h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    color: var(--color-text-dark);
    letter-spacing: -0.04em;
}

.whish-form-header p {
    max-width: 560px;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.whish-plan-mini {
    min-width: 190px;
    padding: 16px 18px;
    border: 1px solid rgba(14, 165, 233, 0.26);
    border-radius: 22px;
    background: rgba(14, 165, 233, 0.08);
    text-align: left;
}

.whish-plan-mini strong {
    display: block;
    color: var(--color-text-dark);
    font-size: 1rem;
    line-height: 1.35;
}

.whish-plan-mini small {
    display: block;
    margin-top: 5px;
    color: var(--color-blue);
    font-weight: 900;
}

.whish-payment-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(14, 165, 233, 0.28);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(34, 211, 238, 0.08));
}

.whish-badge {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: #fff;
    font-weight: 950;
    font-size: 1.1rem;
    box-shadow: 0 16px 35px rgba(14, 165, 233, 0.24);
}

.whish-payment-banner strong {
    display: block;
    color: var(--color-text-dark);
    margin-bottom: 3px;
}

.whish-payment-banner p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.whish-order-form .form-row {
    gap: 22px !important;
    margin-bottom: 22px;
}

.whish-order-form .form-group {
    margin-bottom: 22px !important;
}

.whish-order-form .form-row .form-group {
    margin-bottom: 0 !important;
}

.whish-order-form .form-group label {
    margin-bottom: 10px !important;
    font-weight: 850;
    letter-spacing: -0.01em;
}

.whish-order-form .form-group input,
.whish-order-form .form-group select,
.whish-order-form .form-group textarea {
    min-height: 58px !important;
    padding: 18px 18px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(148, 163, 184, 0.24) !important;
    background: rgba(15, 23, 42, 0.48) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.whish-order-form .form-group textarea {
    min-height: 135px !important;
    line-height: 1.55;
    resize: vertical;
}

.whish-order-form .form-group input:focus,
.whish-order-form .form-group select:focus,
.whish-order-form .form-group textarea:focus {
    border-color: rgba(34, 211, 238, 0.72) !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.readonly-payment-pill {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.28);
    background: rgba(14, 165, 233, 0.09);
    color: var(--color-text-dark);
}

.readonly-payment-pill .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-cyan);
    box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.12);
}

.whish-summary-card {
    overflow: hidden;
}

.whish-summary-card::before {
    content: '';
    display: block;
    height: 5px;
    margin: -30px -30px 24px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}

.whish-instructions-card {
    margin: 18px 0;
    padding: 20px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.whish-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 15px;
    background: rgba(14, 165, 233, 0.14);
    border: 1px solid rgba(14, 165, 233, 0.24);
}

.whish-instructions-card h3 {
    margin: 0 0 8px;
    color: var(--color-text-dark);
    font-size: 1.05rem;
}

.whish-instructions-card p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

html[data-theme="light"] .whish-order-page {
    background:
        radial-gradient(circle at 18% 5%, rgba(125, 211, 252, 0.34), transparent 34%),
        radial-gradient(circle at 84% 4%, rgba(186, 230, 253, 0.44), transparent 32%),
        linear-gradient(180deg, #EAF7FF 0%, #F4FBFF 55%, #EAF7FF 100%);
}

html[data-theme="light"] .whish-order-form,
html[data-theme="light"] .whish-summary-card {
    background: rgba(255, 255, 255, 0.76) !important;
    border-color: rgba(14, 165, 233, 0.18) !important;
    box-shadow: 0 24px 70px rgba(14, 116, 144, 0.12) !important;
}

html[data-theme="light"] .whish-order-form .form-group input,
html[data-theme="light"] .whish-order-form .form-group select,
html[data-theme="light"] .whish-order-form .form-group textarea {
    background: rgba(255, 255, 255, 0.86) !important;
    border-color: rgba(14, 165, 233, 0.24) !important;
    color: #0B1F3A !important;
}

html[data-theme="light"] .whish-order-form .form-group input::placeholder,
html[data-theme="light"] .whish-order-form .form-group textarea::placeholder {
    color: rgba(51, 65, 85, 0.58) !important;
}

html[data-theme="light"] .whish-payment-banner,
html[data-theme="light"] .readonly-payment-pill,
html[data-theme="light"] .whish-plan-mini,
html[data-theme="light"] .summary-status-box,
html[data-theme="light"] .whish-method-note {
    background: rgba(224, 242, 254, 0.78) !important;
    border-color: rgba(14, 165, 233, 0.24) !important;
}

html[data-theme="light"] .whish-instructions-card {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(14, 165, 233, 0.18);
}

@media (max-width: 980px) {
    .whish-checkout-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .whish-summary-card {
        position: static;
    }
}

@media (max-width: 680px) {
    .whish-form-header {
        flex-direction: column;
    }

    .whish-plan-mini {
        width: 100%;
    }

    .whish-payment-banner {
        align-items: flex-start;
    }

    .whish-order-form {
        padding: 22px !important;
        border-radius: 24px !important;
    }

    .whish-order-form .form-row {
        gap: 0 !important;
    }
}


/* ========================================
   V43 Emergency Public Mobile Optimization
   ======================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, svg, video, canvas {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .container {
        width: min(100%, 100% - 28px);
        max-width: 100%;
    }

    .hero .container,
    .section-split-heading,
    .support-system-card,
    .whish-checkout-grid,
    .ticket-hub-check-layout,
    .ticket-panel-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-illustration,
    .whish-summary-card,
    .ticket-side-card,
    .ticket-help-card {
        position: static !important;
    }

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

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .header {
        height: auto;
        min-height: 72px;
    }

    .navbar,
    .navbar-container {
        min-height: 72px;
    }

    .navbar-container {
        padding: 0 16px;
    }

    .logo {
        gap: 10px;
        min-width: 0;
        max-width: calc(100vw - 94px);
    }

    .logo img,
    .logo svg,
    .logo-mark {
        width: 42px !important;
        height: 42px !important;
        flex: 0 0 42px;
    }

    .logo-text {
        font-size: clamp(1.35rem, 7vw, 1.95rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.08);
        align-items: center;
        justify-content: center;
        z-index: 1100;
    }

    html[data-theme="light"] .mobile-menu-toggle {
        background: rgba(255, 255, 255, 0.78);
        border-color: rgba(14, 165, 233, 0.18);
    }

    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: 14px !important;
        right: 14px !important;
        width: auto !important;
        max-height: calc(100dvh - 98px) !important;
        padding: 12px !important;
        display: none;
        flex-direction: column;
        gap: 10px !important;
        border-radius: 24px;
        background: rgba(7, 13, 23, 0.98) !important;
        border: 1px solid rgba(34, 211, 238, 0.16) !important;
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46) !important;
        overflow-y: auto;
        z-index: 1050;
        backdrop-filter: blur(18px);
    }

    .nav-menu.active {
        display: flex !important;
        animation: mobileMenuIn 180ms ease both;
    }

    @keyframes mobileMenuIn {
        from { opacity: 0; transform: translateY(-8px) scale(0.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .nav-menu::before {
        display: none !important;
    }

    .nav-link,
    .nav-cta,
    .language-switcher,
    .theme-toggle {
        width: 100% !important;
    }

    .nav-link {
        display: flex !important;
        align-items: center;
        min-height: 48px;
        padding: 13px 16px !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: rgba(255, 255, 255, 0.045) !important;
        color: #E5EDF7 !important;
        font-size: 1rem;
        font-weight: 800;
    }

    .nav-link.active,
    .nav-link:hover,
    .nav-link:focus-visible {
        background: rgba(14, 165, 233, 0.14) !important;
        border-color: rgba(34, 211, 238, 0.28) !important;
        color: var(--color-cyan) !important;
        padding-left: 16px !important;
    }

    .nav-cta {
        min-height: 52px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
        border-radius: 16px !important;
        font-weight: 900;
    }

    .language-switcher {
        min-height: 48px;
        justify-content: center;
        margin: 0 !important;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.045) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }

    .theme-toggle {
        min-height: 48px;
        margin: 0 !important;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.045) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }

    html[data-theme="light"] .nav-menu {
        background: rgba(235, 248, 255, 0.98) !important;
        border-color: rgba(14, 165, 233, 0.22) !important;
        box-shadow: 0 24px 64px rgba(30, 88, 141, 0.20) !important;
    }

    html[data-theme="light"] .nav-link,
    html[data-theme="light"] .language-switcher,
    html[data-theme="light"] .theme-toggle {
        background: rgba(255, 255, 255, 0.76) !important;
        border-color: rgba(14, 165, 233, 0.18) !important;
        color: #0B2447 !important;
    }

    html[data-theme="light"] .nav-link.active,
    html[data-theme="light"] .nav-link:hover,
    html[data-theme="light"] .nav-link:focus-visible {
        background: rgba(14, 165, 233, 0.14) !important;
        color: #0369A1 !important;
    }

    .hero {
        padding: 108px 0 48px !important;
        min-height: auto !important;
    }

    .hero .container {
        gap: 28px !important;
    }

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

    .hero-kicker {
        margin-bottom: 16px;
        font-size: 0.78rem;
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 4.25rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.055em;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.75 !important;
        margin-bottom: 22px;
        max-width: 100% !important;
    }

    .hero-buttons {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px !important;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100% !important;
        min-height: 52px;
        justify-content: center;
    }

    .hero-badges {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 22px;
    }

    .badge,
    .hero-badge {
        min-height: auto;
        padding: 15px 16px !important;
        border-radius: 18px !important;
    }

    .hero-illustration {
        display: none !important;
    }

    .section-title,
    .section-split-heading .section-title {
        font-size: clamp(2rem, 9vw, 3rem) !important;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .section-subtitle,
    .section-split-heading .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.7;
    }

    .services-section,
    .pricing-section,
    .support-section,
    .faq-section,
    .footer,
    .ticket-page,
    .order-page-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .services-grid,
    .pricing-grid,
    .clients-grid,
    .footer-grid,
    .support-flow-strip,
    .form-row,
    .whish-order-form .form-row {
        grid-template-columns: 1fr !important;
    }

    .service-card,
    .pricing-card,
    .support-system-card,
    .support-request-card,
    .selected-plan-box,
    .whish-order-form,
    .whish-summary-card,
    .ticket-mode-tabs,
    .ticket-help-card,
    .check-ticket-form,
    .public-ticket-result,
    .faq-item {
        border-radius: 22px !important;
    }

    .service-card,
    .pricing-card,
    .support-system-card,
    .support-request-card,
    .whish-order-form,
    .whish-summary-card {
        padding: 22px !important;
    }

    .pricing-card.recommended {
        transform: none !important;
    }

    .support-actions,
    .form-actions-row,
    .success-actions {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .support-actions .btn,
    .form-actions-row .btn,
    .success-actions .btn {
        width: 100%;
    }

    .ticket-hub-page {
        padding-top: 100px !important;
    }

    .ticket-hub-page .page-heading {
        text-align: left !important;
        margin-bottom: 20px !important;
    }

    .page-heading h1 {
        font-size: clamp(2.15rem, 11vw, 3.25rem) !important;
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

    .page-heading p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .ticket-mode-tabs,
    .ticket-mode-tabs.ticket-mode-tabs-three,
    .ticket-hub-page .page-heading + .ticket-mode-tabs.ticket-mode-tabs-three {
        width: 100% !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px;
        padding: 8px !important;
        border-radius: 22px !important;
        margin-bottom: 22px !important;
    }

    .ticket-mode-tab {
        width: 100% !important;
        min-height: 48px;
        border-radius: 16px !important;
    }

    .support-request-top {
        gap: 14px;
        margin-bottom: 20px;
    }

    .support-request-top h2,
    .whish-form-header h1,
    .selected-plan-box h2 {
        font-size: clamp(1.85rem, 9vw, 2.55rem) !important;
        line-height: 1.12;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .request-type-pill {
        width: fit-content;
        max-width: 100%;
        white-space: normal !important;
    }

    .flow-strip-item {
        padding: 14px !important;
    }

    input,
    select,
    textarea,
    .readonly-payment-pill {
        width: 100% !important;
        min-height: 54px !important;
        font-size: 16px !important;
        border-radius: 15px !important;
    }

    textarea {
        min-height: 132px !important;
    }

    .whish-payment-banner {
        align-items: flex-start !important;
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .whish-badge {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .ticket-button {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
        font-size: 23px;
        box-shadow: 0 14px 34px rgba(14, 165, 233, 0.32);
    }

    .footer {
        text-align: left !important;
    }

    .footer-grid {
        gap: 28px !important;
    }

    .footer-section ul,
    .footer-section p {
        margin-left: 0 !important;
    }
}

@media (max-width: 420px) {
    .navbar-container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: clamp(1.2rem, 8vw, 1.55rem);
    }

    .hero-title {
        font-size: clamp(2.1rem, 13vw, 3.2rem) !important;
    }

    .container {
        width: min(100%, 100% - 22px);
    }

    .service-card,
    .pricing-card,
    .support-request-card,
    .whish-order-form,
    .whish-summary-card {
        padding: 18px !important;
    }

    .price {
        align-items: baseline;
    }

    .amount {
        font-size: 2rem !important;
    }
}

/* ========================================
   Client logos section
   ======================================== */
.client-logos-section {
    padding: 72px 0;
    background: var(--color-bg, #071629);
}

.client-logos-heading {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.client-logo-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 18px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.48));
    box-shadow: 0 18px 45px rgba(2, 8, 23, 0.18);
    text-decoration: none;
    color: var(--color-text-dark, #fff);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 22px 55px rgba(14, 165, 233, 0.18);
}

.client-logo-card img {
    width: 112px;
    height: 64px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(2, 8, 23, 0.18));
}

.client-logo-card span {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text-dark, #fff);
    text-align: center;
    line-height: 1.25;
}

body[data-theme="light"] .client-logos-section {
    background: linear-gradient(180deg, #eaf7ff 0%, #dff3ff 100%);
}

body[data-theme="light"] .client-logo-card {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(14, 165, 233, 0.18);
    box-shadow: 0 18px 40px rgba(14, 165, 233, 0.12);
}

body[data-theme="light"] .client-logo-card span {
    color: #0b1f3a;
}

@media (max-width: 900px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .client-logos-section {
        padding: 48px 0;
    }

    .client-logo-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .client-logo-card {
        min-height: 126px;
        padding: 20px 16px;
        border-radius: 20px;
    }

    .client-logo-card img {
        width: 104px;
        height: 56px;
    }
}

/* ========================================
   v48 - Client logo showcase theme polish
   ======================================== */
.client-logos-section {
    position: relative;
    background:
        radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.12), transparent 32%),
        linear-gradient(180deg, #07111f 0%, #091827 100%);
}

.client-logos-section .section-title,
.client-logos-section .section-subtitle {
    color: var(--color-text-dark, #f8fafc);
}

.client-logo-card {
    background:
        linear-gradient(180deg, rgba(20, 31, 49, 0.92), rgba(13, 24, 39, 0.88));
    border-color: rgba(125, 211, 252, 0.18);
    box-shadow: 0 22px 50px rgba(2, 8, 23, 0.26);
}

.client-logo-card img {
    width: min(180px, 88%);
    height: 92px;
    object-fit: contain;
}

.client-logo-card span {
    color: #f8fafc;
}

html[data-theme="light"] .client-logos-section,
body[data-theme="light"] .client-logos-section {
    background:
        radial-gradient(circle at 18% 0%, rgba(14, 165, 233, 0.16), transparent 36%),
        linear-gradient(180deg, #eaf8ff 0%, #d9f0ff 48%, #eef9ff 100%);
}

html[data-theme="light"] .client-logos-section .section-title,
body[data-theme="light"] .client-logos-section .section-title {
    color: #0b1f3a;
}

html[data-theme="light"] .client-logos-section .section-subtitle,
body[data-theme="light"] .client-logos-section .section-subtitle {
    color: #376079;
}

html[data-theme="light"] .client-logo-card,
body[data-theme="light"] .client-logo-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 250, 255, 0.82));
    border-color: rgba(14, 165, 233, 0.22);
    box-shadow: 0 18px 42px rgba(14, 165, 233, 0.14);
}

html[data-theme="light"] .client-logo-card:hover,
body[data-theme="light"] .client-logo-card:hover {
    border-color: rgba(14, 165, 233, 0.42);
    box-shadow: 0 24px 54px rgba(14, 165, 233, 0.2);
}

html[data-theme="light"] .client-logo-card span,
body[data-theme="light"] .client-logo-card span {
    color: #0b1f3a;
}

@media (max-width: 560px) {
    .client-logo-card img {
        width: min(160px, 86%);
        height: 78px;
    }
}
