
        :root {
            --primary: #2563eb;
            --primary-hover: #1d4ed8;
            --primary-glow: rgba(37, 99, 235, 0.15);
            
            --bg-base: #faf6f0;
            --bg-card: #ffffff;
            --bg-navbar: #faf6f0;
            --bg-modal: rgba(15, 23, 42, 0.6);
            
            --border-color: #e2e8f0;
            
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            
            --accent-teal: #00966b;
            --accent-teal-hover: #007d58;
            --accent-gold: #d97706;
            
            --badge-valid-bg: #dcfce7;
            --badge-valid-text: #166534;
            --badge-expired-bg: #fee2e2;
            --badge-expired-text: #991b1b;
            
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            
            --font-heading: 'Fraunces', Georgia, serif;
            --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
            
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        .dark {
            --primary: #60a5fa;
            --primary-hover: #3b82f6;
            --primary-glow: rgba(96, 165, 250, 0.2);
            
            --bg-base: #0f172a;
            --bg-card: #1e293b;
            --bg-navbar: rgba(15, 23, 42, 0.85);
            
            --border-color: #334155;
            
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            
            --badge-valid-bg: rgba(22, 101, 52, 0.25);
            --badge-valid-text: #4ade80;
            --badge-expired-bg: rgba(153, 27, 27, 0.25);
            --badge-expired-text: #f87171;
            
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
        }

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

        body {
            font-family: var(--font-body);
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            transition: var(--transition-smooth);
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-primary);
        }

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

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

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

        /* Glassmorphism utility */
        .glass-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            transition: var(--transition-smooth);
        }

        .glass-panel:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        /* Top Sticky Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: var(--bg-navbar);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: var(--transition-smooth);
        }

        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .logo svg {
            width: 32px;
            height: 32px;
            fill: var(--primary);
            filter: drop-shadow(0 0 4px var(--primary-glow));
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 15px;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 12px;
            right: 12px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Button design */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 10px var(--primary-glow);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            color: white;
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

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

        .btn-accent {
            background: var(--accent-teal);
            color: white;
        }

        .btn-accent:hover {
            background: var(--accent-teal-hover);
            color: white;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            background: transparent;
            border: 1px solid var(--border-color);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            transition: var(--transition-smooth);
        }

        .theme-toggle:hover {
            background: var(--border-color);
        }

        .theme-toggle svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .theme-toggle .sun-icon {
            display: none;
        }

        .dark .theme-toggle .sun-icon {
            display: block;
        }

        .dark .theme-toggle .moon-icon {
            display: none;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }

        .menu-toggle svg {
            width: 24px;
            height: 24px;
        }

        /* Mobile Nav Links Container */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
            padding: 24px;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            flex-direction: column;
            gap: 16px;
        }

        /* Layout Grid, Main Content area */
        main {
            margin-top: 80px;
            flex-grow: 1;
        }

        section {
            padding: 60px 0;
            display: none;
            animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        section.active-route {
            display: block;
        }

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

        /* HERO / TWO COLUMN LAYOUT */
        .hero-two-column {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 48px;
            align-items: start;
            padding: 40px 0 60px;
        }

        @media (max-width: 992px) {
            .hero-two-column {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .hero-left h1 {
            font-size: 52px;
            line-height: 1.15;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        .hero-left p.subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.5;
            font-weight: 500;
        }

        .disclaimer-box {
            background: rgba(217, 119, 6, 0.06);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            border-radius: 6px;
            margin-bottom: 28px;
            font-size: 14px;
            text-align: left;
            line-height: 1.6;
        }

        .disclaimer-box strong {
            display: block;
            margin-bottom: 6px;
            color: var(--accent-gold);
            font-weight: 800;
            letter-spacing: 0.05em;
            font-size: 12px;
            text-transform: uppercase;
        }

        .disclaimer-box p {
            color: var(--text-secondary);
        }

        .bullets-title {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
        }

        .consultation-bullets {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
        }

        @media (max-width: 576px) {
            .consultation-bullets {
                grid-template-columns: 1fr;
            }
        }

        .consultation-bullets li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .consultation-bullets li svg {
            width: 18px;
            height: 18px;
            fill: var(--accent-teal);
            flex-shrink: 0;
        }

        /* LICENCE CHECKER CARD */
        .checker-card {
            padding: 32px;
            background: var(--bg-card);
        }

        .checker-header {
            margin-bottom: 20px;
        }

        .checker-header h2 {
            font-size: 24px;
            margin-bottom: 6px;
        }

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

        .checker-box-inner {
            background: var(--bg-base);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .checker-box-inner-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .checker-box-inner-header svg {
            width: 18px;
            height: 18px;
            fill: var(--accent-teal);
        }

        .checker-box-inner-sub {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

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

        .btn-verify {
            background: var(--accent-teal);
            color: white;
            height: 48px;
            padding: 0 24px;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            border: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
        }

        .btn-verify:hover {
            background: var(--accent-teal-hover);
        }

        .btn-verify svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Verification status output card */
        .verify-output-card {
            margin-top: 16px;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            text-align: left;
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .verify-output-card.verified-status {
            background: rgba(0, 150, 107, 0.05);
            border-color: var(--accent-teal);
        }

        .verify-output-card.expired-status {
            background: rgba(239, 68, 68, 0.05);
            border-color: #ef4444;
        }

        .status-badge-pill {
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .status-badge-pill.verified {
            background: var(--accent-teal);
            color: white;
        }

        .status-badge-pill.expired {
            background: #ef4444;
            color: white;
        }

        .status-pills-row {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 20px;
            font-size: 13px;
        }

        .status-pill-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .status-pill-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .status-pill-dot.active-dot { background: var(--accent-teal); }
        .status-pill-dot.expired-dot { background: #ef4444; }
        .status-pill-dot.tracked-dot { background: var(--primary); }

        .btn-report-red {
            width: 100%;
            height: 48px;
            background: #dc2626;
            color: white;
            font-weight: 700;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 16px;
            transition: var(--transition-smooth);
        }

        .btn-report-red:hover {
            background: #b91c1c;
        }

        .btn-report-red svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* LOGO WALL */
        .logo-wall-title {
            text-align: center;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-top: 40px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .logo-wall {
            display: flex;
            justify-content: center;
            gap: 32px 48px;
            flex-wrap: wrap;
            align-items: center;
            opacity: 0.6;
            margin-bottom: 60px;
        }

        .logo-wall span {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-secondary);
            font-family: var(--font-heading);
        }

        /* 6 TOOLS CARDS GRID */
        .tools-grid-6 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        @media (max-width: 992px) {
            .tools-grid-6 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .tools-grid-6 {
                grid-template-columns: 1fr;
            }
        }

        .tool-card-custom {
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: left;
        }

        .tool-icon-custom {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: var(--primary-glow);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tool-icon-custom svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .tool-label-custom {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 2px 6px;
            border-radius: 4px;
            display: inline-block;
            align-self: flex-start;
        }

        .tool-label-custom.ai { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
        .tool-label-custom.free { background: rgba(0, 150, 107, 0.1); color: var(--accent-teal); }
        .tool-label-custom.new { background: rgba(217, 119, 6, 0.1); color: var(--accent-gold); }

        .tool-card-custom h3 {
            font-size: 18px;
        }

        .tool-card-custom p {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.5;
            flex-grow: 1;
        }

        .tool-card-custom a.tool-link {
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
        }

        .tool-card-custom a.tool-link:hover {
            color: var(--primary-hover);
        }

        /* MOCK SUB-TABS ON TOOLS PAGE */
        .subtabs-bar {
            display: flex;
            gap: 8px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 32px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .subtab-btn {
            background: transparent;
            border: none;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-secondary);
            border-radius: 6px;
            cursor: pointer;
            white-space: nowrap;
            transition: var(--transition-smooth);
        }

        .subtab-btn:hover {
            background: var(--bg-base);
            color: var(--text-primary);
        }

        .subtab-btn.active-subtab {
            background: var(--primary-glow);
            color: var(--primary);
        }

        .tool-panel {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .tool-panel.active-panel {
            display: block;
        }

        /* Statistics block */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin: 60px 0;
        }

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

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

        .stat-card {
            padding: 32px;
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Features / Services Grid */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
        }

        .feature-card {
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-glow);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .feature-card h3 {
            font-size: 20px;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 14px;
            flex-grow: 1;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        .section-header h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-secondary);
        }

        /* TESTIMONIALS CAROUSEL */
        .testimonials {
            padding: 60px 0;
            background: var(--primary-glow);
            border-radius: var(--radius-lg);
            margin: 60px 0;
            text-align: center;
        }

        .testimonial-slider {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            padding: 0 40px;
        }

        .testimonial-slide {
            display: none;
            animation: fadeIn 0.4s ease-in-out;
        }

        .testimonial-slide.active-slide {
            display: block;
        }

        .testimonial-quote {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 24px;
            color: var(--text-primary);
            font-family: var(--font-heading);
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--accent-teal);
        }

        .testimonial-location {
            font-size: 13px;
            color: var(--text-muted);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
        }

        .slider-btn {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            transition: var(--transition-smooth);
        }

        .slider-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .slider-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* NEA AGENCIES SEARCH ENGINE */
        .search-filter-bar {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .search-input-wrapper {
            position: relative;
            flex-grow: 1;
            min-width: 280px;
        }

        .search-input-wrapper svg {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            fill: var(--text-muted);
        }

        .form-control {
            width: 100%;
            height: 48px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 0 16px;
            background: var(--bg-card);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 15px;
            transition: var(--transition-smooth);
        }

        .search-input-wrapper .form-control {
            padding-left: 48px;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-glow);
        }

        .filter-select {
            width: 180px;
        }

        /* Custom Table design */
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .custom-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            background: var(--bg-card);
        }

        .custom-table th {
            background: var(--bg-base);
            padding: 16px 24px;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .custom-table td {
            padding: 18px 24px;
            border-bottom: 1px solid var(--border-color);
            font-size: 15px;
            color: var(--text-primary);
        }

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

        .custom-table tr:hover td {
            background: var(--primary-glow);
        }

        .badge {
            display: inline-flex;
            padding: 4px 10px;
            border-radius: 99px;
            font-size: 12px;
            font-weight: 700;
        }

        .badge-success {
            background: var(--badge-valid-bg);
            color: var(--badge-valid-text);
        }

        .badge-danger {
            background: var(--badge-expired-bg);
            color: var(--badge-expired-text);
        }

        /* JOB BOARD CARDS */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .job-card {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .job-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
        }

        .job-title-wrapper h3 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .company-name {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .country-flag {
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-base);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        .job-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .job-tag {
            background: var(--bg-base);
            color: var(--text-secondary);
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .salary {
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-teal);
        }

        /* CAREER TOOLS & ATS TESTER */
        .tools-layout {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 32px;
        }

        .ats-panel {
            padding: 32px;
        }

        .ats-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 24px;
        }

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

        .form-group label {
            font-weight: 700;
            font-size: 14px;
        }

        textarea.form-control {
            height: 120px;
            padding: 12px 16px;
            resize: vertical;
        }

        .ats-results {
            margin-top: 24px;
            padding: 24px;
            border-radius: 8px;
            background: var(--bg-base);
            display: none;
        }

        .score-circle-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .score-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 10px var(--primary-glow);
        }

        .score-text h4 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .score-text p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .keywords-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 16px;
        }

        .keyword-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .keyword-list h5 {
            font-size: 14px;
            margin-bottom: 4px;
        }

        .keyword-item {
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .keyword-item.found { color: var(--accent-teal); }
        .keyword-item.missing { color: var(--badge-expired-text); }

        .keyword-item svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .cv-templates-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .template-card {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .template-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .template-info p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* SERVICES PAGE - Updated to support 4 tiers */
        .pricing-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: stretch;
            margin-top: 40px;
        }

        @media (max-width: 1200px) {
            .pricing-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .pricing-grid-4 {
                grid-template-columns: 1fr;
            }
        }

        .pricing-card {
            padding: 40px 24px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: 0 8px 24px var(--primary-glow);
        }

        .badge-popular {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--accent-teal);
            color: white;
            padding: 4px 30px;
            font-size: 10px;
            font-weight: 800;
            transform: rotate(45deg);
            text-transform: uppercase;
        }

        .pricing-header h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .pricing-price {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
        }

        .pricing-price span {
            font-size: 13px;
            font-family: var(--font-body);
            color: var(--text-secondary);
            font-weight: 500;
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-grow: 1;
            font-size: 13.5px;
            color: var(--text-secondary);
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .pricing-features li svg {
            width: 16px;
            height: 16px;
            fill: var(--accent-teal);
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* MODAL POPUPS */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-modal);
            backdrop-filter: blur(4px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal.active-modal {
            display: flex;
        }

        .modal-content {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 500px;
            padding: 32px;
            box-shadow: var(--shadow-lg);
            position: relative;
            animation: modalSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition-smooth);
        }

        .modal-close:hover {
            background: var(--bg-base);
            color: var(--text-primary);
        }

        .modal-close svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .modal-header {
            margin-bottom: 20px;
        }

        .modal-header h3 {
            font-size: 24px;
        }

        /* M-Pesa Verification Checkout Box */
        .mpesa-details {
            border: 1px dashed var(--border-color);
            padding: 16px;
            border-radius: 8px;
            background: var(--bg-base);
            margin: 16px 0;
        }

        .mpesa-steps {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 12px;
            padding-left: 20px;
        }

        .verification-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 16px;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Success screen inside Modal */
        .success-panel {
            text-align: center;
            display: none;
            padding: 20px 0;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--badge-valid-bg);
            color: var(--accent-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .success-icon svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

        .success-panel p {
            color: var(--text-secondary);
            font-size: 14px;
            margin-top: 8px;
        }

        /* FOOTER */
        footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 60px 0 32px;
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-col p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-primary);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* RESPONSIVE BREAKPOINTS */
        @media (max-width: 992px) {
            .grid-3, .pricing-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .tools-layout {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .grid-3, .pricing-grid-4, .jobs-grid {
                grid-template-columns: 1fr;
            }
            .hero h1, .hero-left h1 {
                font-size: 38px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Dynamic Legal Content Cards & accordion */
        .legal-content-card {
            max-width: 800px;
            margin: 40px auto;
            padding: 32px;
            line-height: 1.7;
            text-align: left;
        }

        .legal-content-card h2 {
            font-size: 28px;
            margin-bottom: 20px;
            font-family: var(--font-heading);
            color: var(--primary);
        }

        .legal-content-card h3 {
            font-size: 18px;
            margin-top: 24px;
            margin-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 6px;
        }

        .legal-content-card p {
            color: var(--text-secondary);
            font-size: 14.5px;
            margin-bottom: 16px;
        }

        .legal-content-card ul, .legal-content-card ol {
            padding-left: 20px;
            margin-bottom: 16px;
            color: var(--text-secondary);
            font-size: 14.5px;
        }

        .legal-content-card li {
            margin-bottom: 8px;
        }

        /* FAQ details expanding card */
        .faq-accordion details {
            transition: var(--transition-smooth);
        }

        .faq-accordion details[open] {
            border-color: var(--primary);
            box-shadow: 0 4px 12px var(--primary-glow);
        }

        .faq-accordion summary {
            font-family: var(--font-heading);
            user-select: none;
            outline: none;
        }

        /* Top Header Alignments & Screenshot styles */
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .logo-line1 {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-primary);
            font-family: var(--font-heading);
        }
        .logo-line2 {
            font-size: 14px;
            font-weight: 800;
            color: var(--text-primary);
            font-family: var(--font-heading);
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 6px;
            transition: var(--transition-smooth);
        }
        .lang-selector:hover {
            background: var(--border-color);
        }
        .lang-selector svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .login-link {
            font-size: 13.5px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            margin-left: 12px;
        }
        .login-link:hover {
            color: var(--primary);
        }

        .btn-signup {
            background: #c2410c !important;
            color: white !important;
            padding: 8px 18px !important;
            border-radius: 99px !important;
            font-size: 13.5px !important;
            font-weight: 700 !important;
            box-shadow: none !important;
            text-decoration: none;
        }
        .btn-signup:hover {
            background: #ea580c !important;
        }

        .status-banner {
            background: #faf6f0;
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            font-size: 12.5px;
            color: var(--text-secondary);
            margin-top: 80px;
            position: relative;
            z-index: 99;
        }
        .dark .status-banner {
            background: #1e293b;
        }
        .status-banner-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .status-banner-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .live-dot {
            color: #10b981;
            font-size: 14px;
            animation: pulse-live 2s infinite;
        }
        .live-text {
            font-weight: 800;
            letter-spacing: 0.05em;
            color: var(--text-primary);
        }
        .browsing-count {
            color: var(--text-muted);
        }
        @keyframes pulse-live {
            0% { opacity: 0.4; }
            50% { opacity: 1; }
            100% { opacity: 0.4; }
        }

        /* Screenshot alignments: Hero columns layout, logo wall, metrics */
        .stats-grid-left {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 24px;
        }

        .stat-card-left {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: var(--bg-card);
        }

        .stat-card-left.green-border { border-color: #34d399; }
        .stat-card-left.blue-border { border-color: #60a5fa; }
        .stat-card-left.yellow-border { border-color: #fbbf24; }
        .stat-card-left.purple-border { border-color: #a78bfa; }

        .stat-card-left .stat-num {
            font-size: 24px;
            font-weight: 800;
            line-height: 1.1;
        }
        .stat-card-left.green-border .stat-num { color: #059669; }
        .stat-card-left.blue-border .stat-num { color: #2563eb; }
        .stat-card-left.yellow-border .stat-num { color: #d97706; }
        .stat-card-left.purple-border .stat-num { color: #7c3aed; }

        .stat-card-left .stat-desc {
            font-size: 11px;
            color: var(--text-secondary);
            font-weight: 600;
            line-height: 1.3;
        }

        .logo-wall-left-container {
            margin-top: 24px;
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            background: var(--bg-card);
        }

        .logo-wall-left-label {
            background: #f1f5f9;
            color: #475569;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.05em;
            padding: 12px;
            white-space: nowrap;
            border-right: 1px solid var(--border-color);
        }
        .dark .logo-wall-left-label {
            background: #334155;
            color: #cbd5e1;
        }

        .logo-wall-left-list {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 8px 16px;
            overflow-x: auto;
            scrollbar-width: none;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .btn-check-agency {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #00966b;
            color: white !important;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            padding: 14px 20px;
            margin-top: 20px;
            text-decoration: none;
            width: 100%;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 150, 107, 0.2);
            transition: var(--transition-smooth);
        }
        .btn-check-agency:hover {
            background: #007d58;
            transform: translateY(-1px);
        }
        .btn-check-agency svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* Pricing Tab Selector styling */
        .pricing-selector-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .pricing-tabs-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 32px;
            margin-bottom: 24px;
        }

        .pricing-tab-item {
            flex: 1;
            max-width: 180px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 14px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .pricing-tab-item.active {
            border-color: var(--primary);
            box-shadow: 0 4px 12px var(--primary-glow);
            background: var(--primary-glow);
        }

        .pricing-tab-item .tab-price {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .pricing-tab-item .tab-name {
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .pricing-tab-item.active .tab-price {
            color: var(--primary);
        }

        /* Recruiters Portal section */
        .recruiter-portal-section {
            background: #0f172a;
            color: #ffffff;
            padding: 80px 0;
            position: relative;
            margin-top: 60px;
            border-radius: 16px;
        }
        .recruiter-portal-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .recruiter-pill {
            display: inline-block;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 99px;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #94a3b8;
            margin-bottom: 16px;
        }
        .recruiter-portal-section h2 {
            font-size: 36px;
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.2;
            color: #ffffff;
        }
        .recruiter-portal-section p {
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.6;
            margin-top: 16px;
        }
        .recruiter-stat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            margin-top: 20px;
        }
        .recruiter-features-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 12px;
            margin-top: 32px;
        }
        .recruiter-feature-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 16px;
        }
        .recruiter-feature-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: #38bdf8;
        }
        .recruiter-feature-card p {
            font-size: 11.5px;
            margin-top: 4px;
            color: #94a3b8;
        }
        .btn-claim-agency {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white !important;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 32px;
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
            transition: var(--transition-smooth);
        }
        .btn-claim-agency:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
        }
        .claim-subtext {
            display: inline-block;
            font-size: 12px;
            color: #64748b;
            margin-top: 8px;
            margin-left: 16px;
        }
        .agency-preview-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            backdrop-filter: blur(12px);
        }
        .agency-preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 16px;
            margin-bottom: 16px;
        }
        .agency-preview-title h4 {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
        }
        .agency-preview-title p {
            font-size: 12px;
            color: #94a3b8;
            margin-top: 2px;
        }
        .agency-preview-badge {
            background: rgba(16, 185, 129, 0.1);
            color: #34d399;
            border: 1px solid rgba(16, 185, 129, 0.2);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 99px;
            text-transform: uppercase;
        }
        .agency-preview-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .agency-preview-list-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13.5px;
            color: #cbd5e1;
        }
        .agency-preview-list-item svg {
            width: 18px;
            height: 18px;
            fill: #34d399;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Layout modifications */
        .desktop-nav {
            margin-right: auto;
            margin-left: 32px;
        }
        .navbar-container {
            max-width: 1400px;
            width: 100%;
        }
        .nav-links {
            gap: 14px;
        }
        .nav-links a {
            font-size: 12.5px;
            font-weight: 600;
            padding: 4px 6px;
        }
    
        /* Trusted Metrics Grid (6 columns) */
        .trusted-section {
            padding: 60px 0;
            text-align: center;
        }
        
        .trusted-metrics-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .trusted-metric-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            transition: var(--transition-smooth);
        }
        .trusted-metric-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .trusted-metric-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .trusted-metric-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .trusted-metric-card .metric-val {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.1;
        }

        .trusted-metric-card .metric-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .trusted-metric-card .metric-sub {
            font-size: 10.5px;
            color: var(--text-muted);
            line-height: 1.3;
        }

        /* 3 steps section styling */
        .steps-3-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-top: 32px;
        }

        .step-3-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .step-3-card .step-num-big {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-glow);
            position: absolute;
            top: 16px;
            right: 24px;
            line-height: 1;
        }

        .step-3-icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .step-3-icon-box.green { background: #dcfce7; color: #059669; }
        .step-3-icon-box.orange { background: #ffedd5; color: #d97706; }
        .step-3-icon-box.blue { background: #dbeafe; color: #2563eb; }

        .step-3-icon-box svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .step-3-card h3 {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .step-3-card p {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Gold tiredness card */
        .tired-quote-card {
            background: #fffdf5;
            border: 1px solid #fef08a;
            border-radius: 16px;
            padding: 32px;
            max-width: 750px;
            margin: 40px auto 0;
            text-align: left;
        }
        .dark .tired-quote-card {
            background: #1e1e18;
            border-color: #854d0e;
        }

        .tired-quote-card h3 {
            font-size: 18px;
            font-weight: 800;
            color: #854d0e;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dark .tired-quote-card h3 { color: #fef08a; }

        .tired-quote-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .tired-quote-card li {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Promise Stack */
        .promise-card-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            text-align: left;
            transition: var(--transition-smooth);
        }
        .promise-card-item:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }

        .promise-icon-box {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #dcfce7;
            color: #059669;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .promise-icon-box svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .promise-text-box h3 {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .promise-text-box p {
            font-size: 13.5px;
            color: var(--text-secondary);
            margin-top: 6px;
            line-height: 1.5;
        }

        /* Country card styles */
        .countries-section {
            background: #0f172a;
            color: #ffffff;
            padding: 80px 0;
            margin-top: 60px;
            border-radius: 16px;
        }
        
        .countries-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }

        .country-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: left;
            position: relative;
            transition: var(--transition-smooth);
        }
        .country-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .country-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .country-card-flag {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: white;
        }
        .country-card-flag.us { background: #1e3a8a; }
        .country-card-flag.ca { background: #b91c1c; }
        .country-card-flag.uk { background: #111827; }
        .country-card-flag.au { background: #065f46; }
        .country-card-flag.ae { background: #0f766e; }
        .country-card-flag.eu { background: #1d4ed8; }
        .country-card-flag.lu { background: #4338ca; }

        .country-card-name h4 {
            font-size: 15px;
            font-weight: 800;
            color: #ffffff;
        }
        .country-card-name p {
            font-size: 11.5px;
            color: #94a3b8;
            margin-top: 2px;
        }

        .country-badge-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .country-badge {
            background: rgba(255,255,255,0.05);
            color: #cbd5e1;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 99px;
            border: 1px solid rgba(255,255,255,0.08);
        }
        .country-badge.green {
            background: rgba(16, 185, 129, 0.1);
            color: #34d399;
            border-color: rgba(16, 185, 129, 0.2);
        }
        .country-badge.blue {
            background: rgba(59, 130, 246, 0.1);
            color: #60a5fa;
            border-color: rgba(59, 130, 246, 0.2);
        }

        /* NEA Top banner elements matching screenshot 5 */
        .nea-top-nav-banner {
            background: #0f172a;
            color: white;
            padding: 20px 0;
            margin-top: 80px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .nea-top-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-nea-access-portals {
            background: #00966b;
            color: white !important;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 700;
            padding: 10px 20px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-nea-access-portals svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .nea-hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 48px;
            align-items: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .nea-stat-outline-card {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            background: var(--bg-card);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nea-stat-outline-card.green { border-color: #34d399; }
        .nea-stat-outline-card.red { border-color: #f87171; }

        .nea-stat-outline-card .num {
            font-size: 24px;
            font-weight: 800;
            line-height: 1;
        }
        .nea-stat-outline-card.green .num { color: #059669; }
        .nea-stat-outline-card.red .num { color: #dc2626; }

        .nea-stat-outline-card .label {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .sample-verification-box {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            box-shadow: var(--shadow-md);
            text-align: left;
        }

        .sample-verification-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f1f5f9;
            padding: 10px 0;
            font-size: 13px;
        }
        .sample-verification-row:last-child {
            border-bottom: none;
        }

        .sample-verification-row span {
            color: #64748b;
            font-weight: 500;
        }

        .sample-verification-row strong {
            color: #0f172a;
            font-weight: 700;
        }
    
        /* Pricing Showcase Card Layout (Screenshot 1) */
        .pricing-showcase-card {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-top: 4px solid #ea580c; /* Orange top border */
            border-radius: 16px;
            padding: 40px;
            text-align: left;
            gap: 40px;
            max-width: 900px;
            margin: 32px auto 0;
            box-shadow: var(--shadow-lg);
            align-items: center;
        }

        .pricing-showcase-left {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pricing-showcase-price-row {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .pricing-showcase-price-row .price-val {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .pricing-showcase-price-row .price-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 600;
            line-height: 1.2;
        }

        .pricing-showcase-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }

        .pricing-showcase-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13.5px;
            color: var(--text-secondary);
        }

        .pricing-showcase-bullets li svg {
            width: 16px;
            height: 16px;
            fill: #00966b;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-showcase-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        /* Why Choose Section (Screenshot 2) */
        .why-choose-section {
            padding: 60px 0;
            text-align: center;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-top: 32px;
            margin-bottom: 32px;
        }

        .why-choose-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: var(--transition-smooth);
        }
        .why-choose-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .why-choose-icon-box {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .why-choose-icon-box.green { background: #dcfce7; color: #059669; }
        .why-choose-icon-box.blue { background: #dbeafe; color: #2563eb; }
        .why-choose-icon-box.orange { background: #fef3c7; color: #d97706; }

        .why-choose-icon-box svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .why-choose-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .why-choose-card .card-sub {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .why-choose-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .why-choose-card .card-badge {
            display: inline-block;
            background: #e2e8f0;
            color: #334155;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 99px;
            align-self: flex-start;
            margin-top: auto;
        }
        .why-choose-card.green .card-badge { background: #dcfce7; color: #166534; }
        .why-choose-card.blue .card-badge { background: #dbeafe; color: #1e40af; }
        .why-choose-card.orange .card-badge { background: #ffedd5; color: #9a3412; }

        /* Commitment Box (Screenshot 3) */
        .commitment-box {
            border: 1px solid #fca5a5; /* red border */
            background: #fff5f5;
            border-radius: 12px;
            padding: 24px;
            max-width: 800px;
            margin: 0 auto 40px;
            text-align: left;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .dark .commitment-box {
            background: #271c1c;
            border-color: #991b1b;
        }

        .commitment-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: #fee2e2;
            color: #ef4444;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .commitment-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .commitment-text h4 {
            font-size: 14.5px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .commitment-text p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-top: 6px;
        }

        /* Trusted Navy Banner (Screenshot 4) */
        .trusted-navy-banner {
            background: #0f172a;
            color: white;
            padding: 40px 0;
            border-radius: 16px;
            margin-top: 40px;
            text-align: center;
        }

        .trusted-navy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 24px;
            margin-top: 32px;
        }

        .trusted-navy-card {
            border-right: 1px solid rgba(255,255,255,0.1);
            padding: 0 16px;
            text-align: center;
        }
        .trusted-navy-card:last-child {
            border-right: none;
        }

        .trusted-navy-card .num {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
        }

        .trusted-navy-card .label {
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            margin-top: 4px;
        }

        .trusted-navy-card .desc {
            font-size: 11px;
            color: #94a3b8;
            margin-top: 2px;
        }

        /* Styled Accordion Details (Screenshot 5) */
        .faq-item-styled {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 16px 20px;
            transition: var(--transition-smooth);
        }

        .faq-item-styled summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            cursor: pointer;
            list-style: none;
        }
        .faq-item-styled summary::-webkit-details-marker {
            display: none;
        }

        .faq-item-styled summary svg {
            width: 16px;
            height: 16px;
            fill: var(--text-muted);
            transition: transform 0.3s;
        }

        .faq-item-styled[open] summary svg {
            transform: rotate(180deg);
        }
    
        /* Footer exact match styling */
        .footer-social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            color: #94a3b8;
            margin-right: 8px;
            transition: var(--transition-smooth);
        }
        .footer-social-btn:hover {
            background: var(--primary);
            color: white;
        }
        .footer-social-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .footer-bottom-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 40px;
            padding-top: 24px;
        }

        .footer-bottom-links-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-bottom-links-row1 {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
        }
        .footer-bottom-links-row1 a {
            color: #94a3b8;
            text-decoration: none;
        }
        .footer-bottom-links-row1 a:hover {
            color: white;
        }

        .footer-badge-inline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: #64748b;
            margin-right: 16px;
        }
        .footer-badge-inline svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }

        .btn-footer-verify {
            background: rgba(16, 185, 129, 0.1);
            color: #34d399 !important;
            border: 1px solid rgba(16, 185, 129, 0.2);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 99px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .btn-footer-verify:hover {
            background: rgba(16, 185, 129, 0.2);
        }
    
        /* Clean responsive layout overrides */
        @media (max-width: 1100px) {
            .desktop-nav {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px !important;
            }
            .hero-two-column {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
            }
            .consultation-bullets {
                grid-template-columns: 1fr !important;
            }
            .steps-3-row {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            .why-choose-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            .pricing-showcase-card {
                grid-template-columns: 1fr !important;
                padding: 24px !important;
                gap: 24px !important;
            }
            .nea-hero-grid {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
            }
            .nea-top-nav-container {
                flex-direction: column !important;
                gap: 12px !important;
                text-align: center !important;
            }
            .footer-bottom-flex {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                gap: 16px !important;
            }
            .footer-bottom-flex div {
                text-align: center !important;
            }
        }

        @media (max-width: 640px) {
            .lang-selector, .login-link, .btn-signup {
                display: none !important;
            }
            .pricing-tabs-row {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 8px !important;
            }
            .pricing-tab-item {
                max-width: none !important;
            }
        }

        @media (max-width: 576px) {
            .logo-wall-left-container {
                flex-direction: column !important;
                align-items: stretch !important;
            }
            .logo-wall-left-label {
                border-right: none !important;
                border-bottom: 1px solid var(--border-color) !important;
                text-align: center !important;
            }
            .countries-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            .trusted-navy-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            .trusted-navy-card {
                border-right: none !important;
                border-bottom: 1px solid rgba(255,255,255,0.08) !important;
                padding-bottom: 16px !important;
            }
            .trusted-navy-card:last-child {
                border-bottom: none !important;
                padding-bottom: 0 !important;
            }
        }

        @media (max-width: 480px) {
            .stats-grid-left {
                grid-template-columns: 1fr !important;
            }
            .checker-card {
                padding: 16px !important;
            }
            .checker-box-inner {
                padding: 16px !important;
            }
            .form-row-search {
                flex-direction: column !important;
                gap: 8px !important;
            }
            .btn-verify {
                width: 100% !important;
                justify-content: center !important;
            }
            .disclaimer-box {
                padding: 16px !important;
                font-size: 13px !important;
            }
            .search-filter-bar {
                flex-direction: column !important;
                align-items: stretch !important;
            }
            .search-input-wrapper {
                width: 100% !important;
            }
            .filter-select {
                width: 100% !important;
            }
            .ats-panel {
                padding: 16px !important;
            }
            .hero-left h1 {
                font-size: 34px !important;
                line-height: 1.2 !important;
            }
        }

        /* Prevent margins and spacing rules causing absolute overflow */
        .footer-badge-inline {
            margin-right: 0 !important;
        }
    
        /* Responsive Grid classes replacing inline styles */
        .steps-4-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 60px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 32px;
            margin-top: 40px;
        }

        .assistant-input-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .visa-result-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .verify-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            font-size: 12px;
            margin-bottom: 12px;
        }

        /* Fix grid child elements auto min-width overflow */
        .hero-left {
            min-width: 0;
        }

        @media (max-width: 992px) {
            .steps-4-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
        }

        @media (max-width: 600px) {
            .visa-result-grid {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
        }

        @media (max-width: 576px) {
            .steps-4-grid {
                grid-template-columns: 1fr !important;
            }
            .assistant-input-grid {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
        }

        @media (max-width: 480px) {
            .verify-card-grid {
                grid-template-columns: 1fr !important;
                gap: 6px !important;
            }
        }
    
        /* Extra responsive layout alignments */
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
            gap: 40px;
        }

        .logo-wall-left-list {
            flex: 1;
            min-width: 0;
        }

        @media (max-width: 1200px) {
            .trusted-metrics-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 12px !important;
            }
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 32px !important;
            }
        }

        @media (max-width: 768px) {
            .trusted-metrics-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
            }
        }

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

        @media (max-width: 480px) {
            .trusted-metrics-grid {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
        }
        

/* Single-Page Router CSS Scoping */
main section, section.route-view {
    display: none !important;
}
main section.active-route, section.route-view.active-route {
    display: block !important;
}

/* ==========================================
   PRODUCTION EXECUTIVE ADMIN CONTROL PANEL
   ========================================== */

.admin-dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 64px 24px;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.admin-header-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-context-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-page-title {
    font-family: var(--font-heading, 'Fraunces', serif);
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.admin-page-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    color: #15803d;
}

.admin-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.admin-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

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

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

.admin-metric-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.admin-metric-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
}

.admin-metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.admin-metric-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.admin-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #f1f5f9;
}

.admin-metric-value {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 4px;
}

.admin-metric-footer {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.admin-workspace-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.admin-tab-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
}

.admin-tab-item {
    background: transparent;
    border: 1px solid transparent;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.admin-tab-item:hover {
    color: #0f172a;
    background: #ffffff;
    border-color: #e2e8f0;
}

.admin-tab-item.active {
    background: #ffffff;
    color: #2563eb;
    border-color: #cbd5e1;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.admin-toolbar {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.admin-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
}

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

.admin-search-input {
    width: 100%;
    padding: 9px 14px 9px 40px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 13.5px;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.15s ease;
}

.admin-search-input:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.admin-filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    padding: 3px;
    border-radius: 10px;
}

.admin-filter-btn {
    border: none;
    background: transparent;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s ease;
}

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

.admin-filter-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.btn-admin-refresh {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
}

.btn-admin-refresh:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: #f8fafc;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.admin-table td {
    padding: 16px 20px;
    font-size: 13.5px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: #f8fafc;
}

.user-profile-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbeafe;
    flex-shrink: 0;
}

.user-meta-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
}

.user-meta-sub {
    font-size: 12px;
    color: #64748b;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1;
}

.badge-admin-role {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
}

.badge-candidate-role {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.badge-vip-plan {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.badge-free-plan {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.badge-status-completed {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.badge-status-pending {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}

.badge-status-failed {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.btn-action-sm {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-action-sm:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

.btn-action-primary {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-action-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-action-whatsapp {
    background: #10b981;
    border: 1px solid #10b981;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-action-whatsapp:hover {
    background: #059669;
}

/* Remove excessive top padding on Admin Dashboard */
#route-admin {
    padding-top: 8px !important;
    padding-bottom: 32px !important;
}

#route-admin .admin-dashboard-wrapper {
    padding-top: 8px !important;
}
