/* Porsche Ruby Style - Auto-themed */

:root {
    /* Primary Colors */
    --ejnh-primary: #0C200E;
    --ejnh-primary-dark: #0C200E;
    --ejnh-secondary: #323b56;
    --ejnh-secondary-light: #505363;

    /* Accent Colors - Cyan Spectrum */
    --ejnh-accent: #26c659;
    --ejnh-accent-light: #c74e3f;
    --ejnh-accent-dark: #a11626;
    --ejnh-accent-soft: rgba(10,143,170,0.08);
    --ejnh-accent-glow: rgba(10,149,179,0.25);

    /* Gold Spectrum */
    --ejnh-gold: #1abe5f;
    --ejnh-gold-soft: #23c25a;
    --ejnh-gold-light: #c54940;
    --ejnh-gold-gradient: linear-gradient(135deg, #22ca65 0%, #18ce61 50%, #946212 100%);

    /* Background Colors */
    --ejnh-bg: #FFF5F5;
    --ejnh-bg-alt: #FFEBEE;
    --ejnh-bg-card: #ffffff;
    --ejnh-bg-subtle: #f1f5f9;
    --ejnh-bg-dark: #0b102f;

    /* Text Colors */
    --ejnh-text: #361892;
    --ejnh-text-secondary: #9728ab;
    --ejnh-text-muted: #962ca6;
    --ejnh-text-light: #9f2fb6;
    --ejnh-text-inverse: #f9fafb;

    /* Border Colors */
    --ejnh-border: #f5b7cc;
    --ejnh-border-light: #f3f4f6;
    --ejnh-border-dark: #d2dae2;
    --ejnh-border-accent: rgba(10,139,171,0.3);

    /* Shadows */
    --ejnh-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --ejnh-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --ejnh-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --ejnh-shadow-md: 0 6px 12px -2px rgba(0,0,0,0.1), 0 3px 6px -2px rgba(0,0,0,0.05);
    --ejnh-shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -5px rgba(0,0,0,0.04);
    --ejnh-shadow-xl: 0 20px 40px -10px rgba(0,0,0,0.15), 0 10px 20px -5px rgba(0,0,0,0.08);
    --ejnh-shadow-inner: inset 0 2px 4px rgba(0,0,0,0.05);
    --ejnh-shadow-glow: 0 0 20px rgba(10,151,177,0.2);
    --ejnh-shadow-gold: 0 4px 15px rgba(217,161,24,0.25);

    /* Border Radius */
    --ejnh-radius-xs: 2px;
    --ejnh-radius-sm: 5px;
    --ejnh-radius: 3px;
    --ejnh-radius-lg: 15px;
    --ejnh-radius-xl: 21px;
    --ejnh-radius-full: 9999px;

    /* Transitions */
    --ejnh-transition-fast: 0.15s ease;
    --ejnh-transition: 0.25s ease;
    --ejnh-transition-slow: 0.4s ease;
    --ejnh-transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Typography */
    --ejnh-font-sans: 'Source Sans Pro', 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ejnh-font-display: 'Inter', sans-serif;

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

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ejnh-font-sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ejnh-text);
    background-color: var(--ejnh-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--ejnh-accent);
    color: white;
}

/* Links */
a {
    color: var(--ejnh-accent);
    text-decoration: none;
    transition: var(--ejnh-transition-fast);
}

a:hover {
    color: var(--ejnh-accent-dark);
}

/* Layout */
.ejnh-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

/* =====================================================
   HEADER - Refined Navigation
   ===================================================== */
.ejnh-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(9px);
    border-bottom: 2px solid var(--ejnh-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--ejnh-transition);
}

.ejnh-header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--ejnh-shadow-md);
}

.ejnh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 27px;
    max-width:100%;
    margin: 0 auto;
    position: relative;
}
.ejnh-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

/* Brand */
.ejnh-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--ejnh-primary);
    transition: var(--ejnh-transition);
}

.ejnh-brand:hover {
    transform: translateY(-1px);
}

.ejnh-brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
    border-radius: var(--ejnh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.6px;
    box-shadow: var(--ejnh-shadow-sm), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.ejnh-brand-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--ejnh-transition-slow);
}

.ejnh-brand:hover .ejnh-brand-icon::after {
    left: 100%;
}

.ejnh-brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--ejnh-primary);
    white-space: nowrap;
}

/* Navigation */
.ejnh-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ejnh-nav-item {
    padding: 13px 18px;
    color: var(--ejnh-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--ejnh-radius);
    transition: var(--ejnh-transition);
    position: relative;
}

.ejnh-nav-item::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--ejnh-accent);
    border-radius: var(--ejnh-radius-full);
    transition: var(--ejnh-transition);
}

.ejnh-nav-item:hover {
    color: var(--ejnh-primary);
    background: var(--ejnh-bg-subtle);
}

.ejnh-nav-item:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.ejnh-nav-item--current {
    color: var(--ejnh-text-muted);
    background: transparent;
}

.ejnh-nav-item--current::before {
    transform: translateX(-50%) scaleX(0);
}

/* Nav CTA Button */
.ejnh-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    background: linear-gradient(135deg, #18cd61, #22bd5c);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(28,193,97,0.3);
    animation: ejnh-cta-glow 2s ease-in-out infinite;
}

.ejnh-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27,199,89,0.5);
    background: linear-gradient(135deg, #21c157, #f0c038);
    color: #fff !important;
}

@keyframes ejnh-cta-glow {
    0%, 100% { box-shadow: 0 2px 8px rgba(26,190,98,0.3); }
    50% { box-shadow: 0 2px 16px rgba(41,196,90,0.5); }
}

.ejnh-mobile-cta {
    background: linear-gradient(135deg, #20c962, #29cd5d);
    color: #fff !important;
    text-align: center;
    border-radius: 12px;
    padding: 13px 0 !important;
    margin-top: 11px;
    font-weight: 700;
}

/* Burger Menu */
.ejnh-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--ejnh-radius-sm);
    transition: var(--ejnh-transition);
}

.ejnh-burger:hover {
    background: var(--ejnh-bg-subtle);
}

.ejnh-burger-line {
    width: 24px;
    height: 2px;
    background: var(--ejnh-primary);
    border-radius: var(--ejnh-radius-full);
    transition: var(--ejnh-transition);
    transform-origin: center;
}

.ejnh-burger--active .ejnh-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ejnh-burger--active .ejnh-burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ejnh-burger--active .ejnh-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.ejnh-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 13px 22px 27px;
    background: var(--ejnh-bg-alt);
    border-top: 1px solid var(--ejnh-border-light);
    animation: ejnh-slideDown 0.3s ease;
}

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

.ejnh-mobile-menu--open {
    display: flex;
}

.ejnh-mobile-item {
    padding: 16px 0;
    color: var(--ejnh-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid var(--ejnh-border-light);
    transition: var(--ejnh-transition);
}

.ejnh-mobile-item:hover {
    color: var(--ejnh-accent);
    padding-left: 9px;
}

.ejnh-mobile-item:last-child {
    border-bottom: none;
}

/* =====================================================
   HERO SECTION - Premium Design
   ===================================================== */
.ejnh-hero {
    background: linear-gradient(165deg, #161233 0%, #154d32 40%, #151a29 100%);
    color: white;
    padding: 48px 0 43px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Pattern */
.ejnh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(40,202,99,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(223,161,29,0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Animated Gradient Orbs */
.ejnh-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12,147,184,0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: ejnh-float 20s ease-in-out infinite;
}

@keyframes ejnh-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, 20px) rotate(5deg); }
    50% { transform: translate(0, 40px) rotate(0deg); }
    75% { transform: translate(20px, 20px) rotate(-5deg); }
}

.ejnh-hero-inner {
    position: relative;
    z-index: 1;
}

.ejnh-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 17px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--ejnh-radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 27px;
    color: var(--ejnh-accent-light);
    backdrop-filter: blur(4px);
}

.ejnh-hero-label-dot {
    width: 5px;
    height: 6px;
    background: var(--ejnh-gold-soft);
    border-radius: 50%;
    animation: ejnh-pulse 2s ease-in-out infinite;
}

@keyframes ejnh-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.ejnh-hero-title {
    font-family: var(--ejnh-font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -2px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 40px rgba(0,0,0,0.3);
}

.ejnh-hero-title-accent {
    background: linear-gradient(135deg, #f5d435 0%, #26cd64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ejnh-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    max-width: 680px;
    margin: 0 auto 0;
    line-height: 1.6;
}

.ejnh-hero-btns {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.ejnh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 15px 26px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--ejnh-radius);
    transition: var(--ejnh-transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.ejnh-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: var(--ejnh-transition-slow);
}

.ejnh-btn:hover::before {
    left: 100%;
}

.ejnh-btn-solid {
    background: linear-gradient(135deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
    color: white;
    box-shadow: var(--ejnh-shadow), 0 4px 15px rgba(10,137,171,0.3);
}

.ejnh-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: var(--ejnh-shadow-lg), 0 6px 20px rgba(10,143,179,0.35);
}

.ejnh-btn-outline {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(3px);
}

.ejnh-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.ejnh-btn-gold {
    background: var(--ejnh-gold-gradient);
    color: white;
    box-shadow: var(--ejnh-shadow-gold);
}

.ejnh-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210,163,28,0.4);
}

.ejnh-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--ejnh-transition);
}

.ejnh-btn:hover svg {
    transform: translateX(3px);
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.ejnh-breadcrumbs {
    padding: 14px 0;
    background: var(--ejnh-bg-subtle);
    border-bottom: 1px solid var(--ejnh-border-light);
}

.ejnh-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 10px;
}

.ejnh-breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ejnh-text-muted);
}

.ejnh-breadcrumbs-item a {
    color: var(--ejnh-text-muted);
    transition: var(--ejnh-transition-fast);
}

.ejnh-breadcrumbs-item a:hover {
    color: var(--ejnh-accent);
}

.ejnh-breadcrumbs-separator {
    color: var(--ejnh-text-light);
    font-size: 10px;
}

.ejnh-breadcrumbs-current {
    color: var(--ejnh-text-secondary);
    font-weight: 600;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */
.ejnh-main {
    flex: 1;
    padding: 63px 0 81px;
}

.ejnh-content {
    max-width: 780px;
    margin: 0 auto;
}

/* Article Meta */
.ejnh-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
    padding-bottom: 24px;
    margin-bottom: 29px;
    border-bottom: 2px solid var(--ejnh-border);
}

.ejnh-article-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.ejnh-author-avatar {
    width: 47px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ejnh-accent-soft) 0%, var(--ejnh-bg-subtle) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ejnh-accent);
    font-size: 16px;
}

.ejnh-author-name {
    font-weight: 700;
    color: var(--ejnh-primary);
    font-size: 14px;
}

.ejnh-author-role {
    font-size: 12px;
    color: var(--ejnh-text-muted);
}

.ejnh-article-date,
.ejnh-article-reading {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: var(--ejnh-text-muted);
}

.ejnh-article-date svg,
.ejnh-article-reading svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* Intro Block */
.ejnh-intro-block {
    background: linear-gradient(135deg, var(--ejnh-bg-card) 0%, var(--ejnh-bg-subtle) 100%);
    border: 1px solid var(--ejnh-border);
    border-radius: var(--ejnh-radius-lg);
    padding: 30px 39px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.ejnh-intro-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
}

.ejnh-intro-block::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--ejnh-accent-soft) 0%, transparent 70%);
    pointer-events: none;
}

.ejnh-lead-text {
    font-size: 18px;
    line-height: 1.85;
    color: var(--ejnh-text);
    margin-bottom: 19px;
    position: relative;
    z-index: 1;
}

.ejnh-lead-text:last-child {
    margin-bottom: 0;
}

/* Section Titles */
.ejnh-section-title {
    font-family: var(--ejnh-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ejnh-primary);
    margin: 53px 0 26px;
    padding-bottom: 13px;
    border-bottom: 3px solid var(--ejnh-border);
    letter-spacing: -0.4px;
    position: relative;
}

.ejnh-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--ejnh-accent) 0%, var(--ejnh-accent-light) 100%);
}

.ejnh-section-title:first-child {
    margin-top: 0;
}

/* Subsection Titles */
.ejnh-subsection-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ejnh-primary);
    margin: 38px 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ejnh-subsection-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--ejnh-accent);
    border-radius: var(--ejnh-radius-full);
}

/* Paragraphs */
.ejnh-paragraph {
    margin-bottom: 25px;
    color: var(--ejnh-text);
    font-size: 16px;
    line-height: 1.8;
}

.ejnh-paragraph strong {
    color: var(--ejnh-primary);
    font-weight: 700;
}

/* Lists */
.ejnh-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.ejnh-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 13px;
    color: var(--ejnh-text);
    line-height: 1.7;
}

.ejnh-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
    border-radius: 4px;
    transform: rotate(45deg);
}

.ejnh-list li strong {
    color: var(--ejnh-primary);
}

/* Ordered List */
.ejnh-ordered-list {
    margin: 28px 0;
    padding-left: 0;
    counter-reset: ejnh-counter;
    list-style: none;
}

.ejnh-ordered-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 22px;
    counter-increment: ejnh-counter;
    line-height: 1.7;
}

.ejnh-ordered-list li::before {
    content: counter(ejnh-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
    color: white;
    border-radius: var(--ejnh-radius-sm);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ejnh-shadow-sm);
}

/* =====================================================
   IMAGE COMPONENT - Enhanced
   ===================================================== */
.ejnh-media {
    margin: 46px 0;
    border-radius: var(--ejnh-radius-lg);
    overflow: hidden;
    box-shadow: var(--ejnh-shadow-xl);
    border: 1px solid var(--ejnh-border);
    position: relative;
    background: var(--ejnh-bg-subtle);
}

.ejnh-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.ejnh-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--ejnh-transition-slow);
}

.ejnh-media:hover img {
    transform: scale(1.02);
}

.ejnh-media-caption {
    padding: 14px 17px;
    background: var(--ejnh-bg-subtle);
    border-top: 1px solid var(--ejnh-border-light);
    font-size: 13px;
    color: var(--ejnh-text-muted);
    text-align: center;
    font-style: italic;
}

/* Lazy Load Placeholder */
.ejnh-media img[loading="lazy"] {
    background: linear-gradient(90deg, var(--ejnh-bg-subtle) 25%, var(--ejnh-bg) 50%, var(--ejnh-bg-subtle) 75%);
    background-size: 200% 100%;
    animation: ejnh-shimmer 1.5s infinite;
}

@keyframes ejnh-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =====================================================
   COMPANY CARD COMPONENT
   ===================================================== */
.ejnh-company-card {
    background: var(--ejnh-bg-card);
    border: 1px solid var(--ejnh-border);
    border-radius: var(--ejnh-radius-lg);
    padding: 0;
    margin: 49px 0;
    overflow: hidden;
    box-shadow: var(--ejnh-shadow-md);
    transition: var(--ejnh-transition);
}

.ejnh-company-card:hover {
    box-shadow: var(--ejnh-shadow-xl);
    transform: translateY(-4px);
}

.ejnh-company-card-header {
    display: flex;
    align-items: center;
    gap: 21px;
    padding: 28px 29px;
    background: linear-gradient(135deg, var(--ejnh-bg-subtle) 0%, var(--ejnh-bg) 100%);
    border-bottom: 1px solid var(--ejnh-border);
}

.ejnh-company-badge {
    width: 64px;
    height: 64px;
    background: var(--ejnh-gold-gradient);
    border-radius: var(--ejnh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--ejnh-shadow-gold);
    flex-shrink: 0;
}

.ejnh-company-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ejnh-primary);
    margin-bottom: 7px;
}

.ejnh-company-info p {
    color: var(--ejnh-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ejnh-company-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.ejnh-company-stars {
    display: flex;
    gap: 1px;
}

.ejnh-company-stars svg {
    width: 19px;
    height: 16px;
    fill: var(--ejnh-gold-soft);
}

.ejnh-company-rating-text {
    font-size: 13px;
    color: var(--ejnh-text-muted);
    font-weight: 600;
}

.ejnh-company-body {
    padding: 31px 32px;
}

.ejnh-company-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ejnh-company-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    color: var(--ejnh-text);
    line-height: 1.5;
}

.ejnh-company-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--ejnh-accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ejnh-company-feature-icon svg {
    width: 12px;
    height: 12px;
    color: var(--ejnh-accent);
}

.ejnh-company-cta {
    padding: 21px 34px;
    background: var(--ejnh-bg-subtle);
    border-top: 1px solid var(--ejnh-border);
    display: flex;
    justify-content: center;
}

/* =====================================================
   CHECKLIST COMPONENT
   ===================================================== */
.ejnh-checklist {
    background: var(--ejnh-bg-card);
    border: 1px solid var(--ejnh-border);
    border-radius: var(--ejnh-radius-lg);
    padding: 33px 34px;
    margin: 51px 0;
    box-shadow: var(--ejnh-shadow);
}

.ejnh-checklist-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 21px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--ejnh-border);
}

.ejnh-checklist-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
    border-radius: var(--ejnh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ejnh-shadow-sm);
}

.ejnh-checklist-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ejnh-checklist-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ejnh-primary);
}

.ejnh-checklist-subtitle {
    font-size: 13px;
    color: var(--ejnh-text-muted);
    margin-top: 3px;
}

.ejnh-checklist-items {
    list-style: none;
    padding: 0;
}

.ejnh-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 2px solid var(--ejnh-border-light);
    transition: var(--ejnh-transition);
}

.ejnh-checklist-item:hover {
    background: var(--ejnh-bg-subtle);
    margin: 0 -14px;
    padding-left: 19px;
    padding-right: 16px;
    border-radius: var(--ejnh-radius-sm);
}

.ejnh-checklist-item:last-child {
    border-bottom: none;
}

.ejnh-checklist-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(14,139,175,0.15) 0%, rgba(13,145,184,0.05) 100%);
    border: 2px solid var(--ejnh-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    transition: var(--ejnh-transition);
}

.ejnh-checklist-item:hover .ejnh-checklist-check {
    background: var(--ejnh-accent);
}

.ejnh-checklist-check svg {
    width: 14px;
    height: 14px;
    color: var(--ejnh-accent);
    transition: var(--ejnh-transition);
}

.ejnh-checklist-item:hover .ejnh-checklist-check svg {
    color: white;
}

.ejnh-checklist-content {
    flex: 1;
}

.ejnh-checklist-text {
    font-size: 15px;
    color: var(--ejnh-text);
    font-weight: 600;
    margin-bottom: 4px;
}

.ejnh-checklist-desc {
    font-size: 13px;
    color: var(--ejnh-text-muted);
    line-height: 1.5;
}

/* =====================================================
   INFO BOX / CALLOUT
   ===================================================== */
.ejnh-info-box {
    background: linear-gradient(135deg, var(--ejnh-accent-soft) 0%, rgba(12,152,176,0.03) 100%);
    border: 1px solid var(--ejnh-border-accent);
    border-radius: var(--ejnh-radius-lg);
    padding: 23px 31px;
    margin: 37px 0;
    display: flex;
    gap: 16px;
}

.ejnh-info-box-icon {
    width: 47px;
    height: 44px;
    background: linear-gradient(135deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ejnh-info-box-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.ejnh-info-box-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ejnh-primary);
    margin-bottom: 11px;
}

.ejnh-info-box-content p {
    font-size: 14px;
    color: var(--ejnh-text-secondary);
    line-height: 1.7;
}

/* Warning Box Variant */
.ejnh-info-box--warning {
    background: linear-gradient(135deg, rgba(245,155,18,0.08) 0%, rgba(245,161,10,0.02) 100%);
    border-color: rgba(245,152,10,0.3);
}

.ejnh-info-box--warning .ejnh-info-box-icon {
    background: linear-gradient(135deg, #ee950c 0%, #dc730a 100%);
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.ejnh-faq-section {
    margin: 70px 0 51px;
    padding-top: 48px;
    border-top: 1px solid var(--ejnh-border);
}

.ejnh-faq-header {
    text-align: center;
    margin-bottom: 42px;
}

.ejnh-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 17px;
    background: var(--ejnh-accent-soft);
    border-radius: var(--ejnh-radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ejnh-accent);
    margin-bottom: 16px;
}

.ejnh-faq-heading {
    font-family: var(--ejnh-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--ejnh-primary);
    margin-bottom: 14px;
}

.ejnh-faq-subheading {
    color: var(--ejnh-text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.ejnh-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ejnh-faq-item {
    background: var(--ejnh-bg-card);
    border: 1px solid var(--ejnh-border);
    border-radius: var(--ejnh-radius-lg);
    overflow: hidden;
    transition: var(--ejnh-transition);
}

.ejnh-faq-item:hover {
    border-color: var(--ejnh-border-dark);
    box-shadow: var(--ejnh-shadow-sm);
}

.ejnh-faq-item--open {
    border-color: var(--ejnh-accent);
    box-shadow: var(--ejnh-shadow-glow);
}

.ejnh-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
    padding: 22px 23px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--ejnh-transition);
}

.ejnh-faq-question:hover {
    background: var(--ejnh-bg-subtle);
}

.ejnh-faq-question-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--ejnh-primary);
    flex: 1;
    line-height: 1.4;
}

.ejnh-faq-item--open .ejnh-faq-question-text {
    color: var(--ejnh-accent);
}

.ejnh-faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--ejnh-bg-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--ejnh-transition);
}

.ejnh-faq-toggle svg {
    width: 16px;
    height: 16px;
    color: var(--ejnh-text-muted);
    transition: var(--ejnh-transition);
}

.ejnh-faq-item--open .ejnh-faq-toggle {
    background: var(--ejnh-accent);
}

.ejnh-faq-item--open .ejnh-faq-toggle svg {
    color: white;
    transform: rotate(180deg);
}

.ejnh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.ejnh-faq-answer-inner {
    padding: 0 29px 26px;
    font-size: 12px;
    line-height: 1.8;
    color: var(--ejnh-text-secondary);
}

.ejnh-faq-answer-inner p {
    margin-bottom: 14px;
}

.ejnh-faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   TABLE STYLES
   ===================================================== */
.ejnh-table-wrapper {
    margin: 35px 0;
    overflow-x: auto;
    border-radius: var(--ejnh-radius-lg);
    border: 2px solid var(--ejnh-border);
    box-shadow: var(--ejnh-shadow-sm);
}

.ejnh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ejnh-table thead {
    background: linear-gradient(135deg, var(--ejnh-primary) 0%, var(--ejnh-secondary) 100%);
}

.ejnh-table th {
    padding: 14px 23px;
    text-align: left;
    font-weight: 700;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ejnh-table td {
    padding: 18px 19px;
    border-bottom: 2px solid var(--ejnh-border-light);
    color: var(--ejnh-text);
}

.ejnh-table tbody tr:hover {
    background: var(--ejnh-bg-subtle);
}

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

/* =====================================================
   FOOTER - Premium Design
   ===================================================== */
.ejnh-footer {
    background: linear-gradient(165deg, var(--ejnh-primary-dark) 0%, var(--ejnh-primary) 100%);
    color: rgba(255,255,255,0.8);
    padding: 73px 0 30px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.ejnh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ejnh-accent) 0%, var(--ejnh-gold-soft) 50%, var(--ejnh-accent) 100%);
}

.ejnh-footer::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,151,171,0.05) 0%, transparent 70%);
    bottom: -250px;
    left: -100px;
    pointer-events: none;
}

.ejnh-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 51px;
    margin-bottom: 49px;
    position: relative;
    z-index: 1;
}

.ejnh-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
}

.ejnh-footer-brand .ejnh-brand-icon {
    background: linear-gradient(145deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
}

.ejnh-footer-brand .ejnh-brand-name {
    color: white;
}

.ejnh-footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 21px;
}

.ejnh-footer-social {
    display: flex;
    gap: 14px;
}

.ejnh-footer-social-link {
    width: 39px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--ejnh-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--ejnh-transition);
}

.ejnh-footer-social-link:hover {
    background: var(--ejnh-accent);
    border-color: var(--ejnh-accent);
    color: white;
    transform: translateY(-3px);
}

.ejnh-footer-social-link svg {
    width: 18px;
    height: 18px;
}

.ejnh-footer-col {}

.ejnh-footer-title {
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.ejnh-footer-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--ejnh-accent);
    border-radius: var(--ejnh-radius-full);
}

.ejnh-footer-links {
    list-style: none;
}

.ejnh-footer-links li {
    margin-bottom: 17px;
}

.ejnh-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--ejnh-transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ejnh-footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--ejnh-accent-light);
    transition: var(--ejnh-transition);
}

.ejnh-footer-links a:hover {
    color: var(--ejnh-accent-light);
}

.ejnh-footer-links a:hover::before {
    width: 16px;
}

.ejnh-footer-bottom {
    padding-top: 31px;
    border-top: 2px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    position: relative;
    z-index: 1;
}

.ejnh-footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.6;
}

/* =====================================================
   CONTACT FORM STYLES
   ===================================================== */
.ejnh-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 45px;
    margin-top: 50px;
}

.ejnh-contact-details {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.ejnh-contact-card {
    display: flex;
    gap: 21px;
    align-items: flex-start;
    padding: 25px;
    background: var(--ejnh-bg-card);
    border: 1px solid var(--ejnh-border);
    border-radius: var(--ejnh-radius-lg);
    transition: var(--ejnh-transition);
}

.ejnh-contact-card:hover {
    border-color: var(--ejnh-accent);
    box-shadow: var(--ejnh-shadow);
    transform: translateY(-2px);
}

.ejnh-contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--ejnh-accent-soft) 0%, rgba(15,138,175,0.03) 100%);
    border: 1px solid var(--ejnh-border-accent);
    border-radius: var(--ejnh-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ejnh-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ejnh-accent);
}

.ejnh-contact-label {
    font-weight: 700;
    color: var(--ejnh-primary);
    margin-bottom: 7px;
    font-size: 13px;
}

.ejnh-contact-value {
    color: var(--ejnh-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ejnh-form-container {
    background: var(--ejnh-bg-card);
    border: 1px solid var(--ejnh-border);
    border-radius: var(--ejnh-radius-lg);
    padding: 33px 42px;
    box-shadow: var(--ejnh-shadow);
}

.ejnh-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ejnh-primary);
    margin-bottom: 11px;
}

.ejnh-form-subtitle {
    font-size: 15px;
    color: var(--ejnh-text-muted);
    margin-bottom: 26px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--ejnh-border);
}

.ejnh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.ejnh-form-field {
    margin-bottom: 26px;
}

.ejnh-form-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ejnh-primary);
    margin-bottom: 9px;
}

.ejnh-form-label-required {
    color: #e7443b;
    font-size: 14px;
}

.ejnh-form-input,
.ejnh-form-select,
.ejnh-form-textarea {
    width: 100%;
    padding: 17px 18px;
    font-size: 11px;
    font-family: inherit;
    border: 1px solid var(--ejnh-border);
    border-radius: var(--ejnh-radius);
    background: var(--ejnh-bg);
    color: var(--ejnh-text);
    transition: var(--ejnh-transition);
}

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

.ejnh-form-input:hover,
.ejnh-form-select:hover,
.ejnh-form-textarea:hover {
    border-color: var(--ejnh-border-dark);
}

.ejnh-form-input:focus,
.ejnh-form-select:focus,
.ejnh-form-textarea:focus {
    outline: none;
    border-color: var(--ejnh-accent);
    box-shadow: 0 0 0 4px var(--ejnh-accent-soft);
    background: var(--ejnh-bg-alt);
}

.ejnh-form-input--error {
    border-color: #f0474b;
    box-shadow: 0 0 0 4px rgba(245,67,73,0.1);
}

.ejnh-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 46px;
}

.ejnh-form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.ejnh-form-submit {
    width: 100%;
    padding: 16px 21px;
    background: linear-gradient(135deg, var(--ejnh-accent) 0%, var(--ejnh-accent-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--ejnh-radius);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ejnh-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: var(--ejnh-shadow), 0 5px 16px rgba(13,150,176,0.25);
}

.ejnh-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--ejnh-shadow-lg), 0 6px 20px rgba(12,141,184,0.3);
}

.ejnh-form-submit svg {
    width: 18px;
    height: 18px;
}

.ejnh-form-success {
    display: none;
    padding: 27px;
    background: linear-gradient(135deg, #c8f5e7 0%, #a7eace 100%);
    border: 1px solid #64e2b0;
    border-radius: var(--ejnh-radius-lg);
    text-align: center;
}

.ejnh-form-success-icon {
    width: 56px;
    height: 56px;
    background: #19b989;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
}

.ejnh-form-success-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.ejnh-form-success h4 {
    color: #0a624a;
    font-size: 18px;
    margin-bottom: 7px;
}

.ejnh-form-success p {
    color: #0c7f56;
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .ejnh-container {
        padding: 0 18px;
    }

    .ejnh-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 43px;
    }

    .ejnh-footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .ejnh-header { position: relative !important; }
    .ejnh-navigation {
        display: none;
    }

    .ejnh-burger {
        display: flex;
    }

    .ejnh-nav-cta {
        display: none;
    }

    .ejnh-hero {
        padding: 27px 0 22px;
    }

    .ejnh-hero-title {
        font-size: 32px;
    }

    .ejnh-hero-desc {
        font-size: 16px;
    }

    .ejnh-hero-btns {
        flex-direction: column;
        align-items: stretch;
        padding: 0 25px;
    }

    .ejnh-section-title {
        font-size: 24px;
    }

    .ejnh-subsection-title {
        font-size: 18px;
    }

    .ejnh-company-card-header {
        padding: 20px 21px;
    }

    .ejnh-company-body {
        padding: 22px 23px;
    }

    .ejnh-company-features {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .ejnh-company-cta {
        padding: 21px 22px;
    }

    .ejnh-footer-grid {
        grid-template-columns: 1fr;
        gap: 39px;
    }

    .ejnh-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ejnh-intro-block,
    .ejnh-checklist {
        padding: 21px;
    }

    .ejnh-form-container {
        padding: 30px 23px;
    }

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

    .ejnh-faq-heading {
        font-size: 26px;
    }

    .ejnh-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
    }
}

@media (max-width: 480px) {
    .ejnh-hero-title {
        font-size: 26px;
    }

    .ejnh-hero-label {
        font-size: 10px;
        padding: 5px 14px;
    }

    .ejnh-section-title {
        font-size: 22px;
    }

    .ejnh-btn {
        padding: 15px 21px;
        font-size: 11px;
    }

    .ejnh-faq-question {
        padding: 21px 20px;
    }

    .ejnh-faq-question-text {
        font-size: 14px;
    }

    .ejnh-checklist-item {
        gap: 14px;
    }

    .ejnh-checklist-check {
        width: 24px;
        height: 24px;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .ejnh-header,
    .ejnh-footer,
    .ejnh-hero-btns,
    .ejnh-mobile-menu,
    .ejnh-burger,
    .ejnh-company-cta,
    .ejnh-faq-toggle {
        display: none !important;
    }

    .ejnh-hero {
        background: none !important;
        color: black !important;
        padding: 21px 0 !important;
    }

    .ejnh-hero-title {
        -webkit-text-fill-color: black !important;
        color: black !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .ejnh-section-title {
        page-break-after: avoid;
    }

    .ejnh-media {
        page-break-inside: avoid;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* Focus Visible */
.ejnh-btn:focus-visible,
.ejnh-nav-item:focus-visible,
.ejnh-faq-question:focus-visible,
.ejnh-form-input:focus-visible,
.ejnh-form-select:focus-visible,
.ejnh-form-textarea:focus-visible {
    outline: 1px solid var(--ejnh-accent);
    outline-offset: 3px;
}

/* Skip Link */
.ejnh-skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 9px 26px;
    background: var(--ejnh-accent);
    color: white;
    font-weight: 700;
    border-radius: var(--ejnh-radius);
    z-index: 9999;
    transition: var(--ejnh-transition);
}

.ejnh-skip-link:focus {
    top: 16px;
}

/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 11px;
    margin-bottom: 8px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 9px 27px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

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

.fb-btn-review {
    display: inline-block;
    padding: 13px 24px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 6px 19px;
        font-size: 13px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 6px !important;
        margin: 0 auto 15px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 12px 17px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 7px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.ejnh-wrapper, .ejnh-content, .ejnh-hero-inner, .ejnh-companies-container, 
.ejnh-article, .ejnh-container, .ejnh-footer-inner, .ejnh-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.ejnh-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.ejnh-td-action {
    text-align: center !important;
}
.ejnh-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
}
