/* Siemens Paramount Style - Auto-themed */
:root {
    --dlhm-teal: #0a959e;
    --dlhm-teal-dark: #0a7771;
    --dlhm-navy: #251213;
    --dlhm-slate: #1f4262;
    --dlhm-dark: #240a1c;
    --dlhm-gray-900: #2d3341;
    --dlhm-gray-700: #435566;
    --dlhm-gray-500: #758398;
    --dlhm-gray-400: #98b6c7;
    --dlhm-gray-300: #ceccdc;
    --dlhm-gray-200: #e8e3f1;
    --dlhm-gray-100: #f7fafc;
    --dlhm-white: #ffffff;
    --dlhm-gold: #f5c61f;
    --dlhm-orange: #f58036;
    --dlhm-green: #379c6e;
    --dlhm-red: #ec3d34;
    --dlhm-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --dlhm-shadow: 0 1px 3px rgba(0,0,0,0.06);
    --dlhm-shadow-lg: 0 10px 32px rgba(0, 0, 0, 0.1);
    --dlhm-radius-sm: 3px;
    --dlhm-radius: 3px;
    --dlhm-radius-lg: 5px;
    --dlhm-transition: all 0.2s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dlhm-gray-900);
    background: var(--dlhm-white);
}

.dlhm-wrapper { max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* Alert Banner Component */
.dlhm-alert {
    background: var(--dlhm-orange);
    color: var(--dlhm-white);
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}
.dlhm-alert strong { font-weight: 700; }
.dlhm-alert a { color: var(--dlhm-white); text-decoration: underline; margin-left: 13px; }
.dlhm-alert a:hover { text-decoration: none; }

/* Header */
.dlhm-header {
    background: var(--dlhm-white);
    border-bottom: 1px solid var(--dlhm-gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.dlhm-brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.dlhm-brand-mark {
    width: 40px;
    height: 40px;
    background: var(--dlhm-teal);
    border-radius: var(--dlhm-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--dlhm-white);
}
.dlhm-brand-name { font-weight: 700; font-size: 19px; color: var(--dlhm-navy); }
.dlhm-brand-name span { color: var(--dlhm-teal); }

.dlhm-nav { display: flex; align-items: center; gap: 7px; }
.dlhm-nav-link {
    padding: 12px 13px;
    text-decoration: none;
    color: var(--dlhm-gray-700);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--dlhm-radius-sm);
    transition: var(--dlhm-transition);
}
.dlhm-nav-link:hover { color: var(--dlhm-teal); background: var(--dlhm-gray-100); }
.dlhm-nav-link.active { color: var(--dlhm-teal); }

.dlhm-nav-cta {
    margin-left: 13px;
    padding: 8px 23px;
    background: var(--dlhm-teal);
    color: var(--dlhm-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--dlhm-radius-sm);
    transition: var(--dlhm-transition);
}
.dlhm-nav-cta:hover { background: var(--dlhm-teal-dark); }

.dlhm-burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 10px; }
.dlhm-burger-line { width: 19px; height: 3px; background: var(--dlhm-navy); transition: var(--dlhm-transition); }
.dlhm-burger.active .dlhm-burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.dlhm-burger.active .dlhm-burger-line:nth-child(2) { opacity: 0; }
.dlhm-burger.active .dlhm-burger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.dlhm-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dlhm-white);
    padding: 19px 26px;
    flex-direction: column;
    gap: 5px;
    border-bottom: 2px solid var(--dlhm-gray-200);
    box-shadow: var(--dlhm-shadow);
}
.dlhm-mobile-nav.active { display: flex; }
.dlhm-mobile-link {
    padding: 11px 14px;
    text-decoration: none;
    color: var(--dlhm-navy);
    font-weight: 500;
    border-radius: var(--dlhm-radius-sm);
    transition: var(--dlhm-transition);
}
.dlhm-mobile-link:hover { background: var(--dlhm-gray-100); }

/* Hero */
.dlhm-hero {
    background: linear-gradient(135deg, var(--dlhm-navy) 0%, var(--dlhm-slate) 100%);
    padding: 81px 0 70px;
}
.dlhm-hero-content { max-width: 680px; }
.dlhm-hero-badge {
    display: inline-block;
    padding: 7px 11px;
    background: var(--dlhm-teal);
    border-radius: var(--dlhm-radius-sm);
    color: var(--dlhm-white);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.dlhm-hero-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--dlhm-white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.dlhm-hero-title span { color: var(--dlhm-gold); }
.dlhm-hero-text { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 34px; }
.dlhm-hero-btns { display: flex; gap: 9px; flex-wrap: wrap; }

.dlhm-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 13px 24px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--dlhm-radius-sm);
    transition: var(--dlhm-transition);
    border: none;
    cursor: pointer;
}
.dlhm-btn-primary { background: var(--dlhm-teal); color: var(--dlhm-white); }
.dlhm-btn-primary:hover { background: var(--dlhm-teal-dark); }
.dlhm-btn-secondary { background: var(--dlhm-white); color: var(--dlhm-navy); }
.dlhm-btn-secondary:hover { background: var(--dlhm-gray-100); }
.dlhm-btn-gold { background: var(--dlhm-gold); color: var(--dlhm-white); }
.dlhm-btn-gold:hover { background: #b6950e; }
.dlhm-btn-outline { background: transparent; color: var(--dlhm-navy); border: 1px solid var(--dlhm-gray-300); }
.dlhm-btn-outline:hover { background: var(--dlhm-gray-100); }

/* Quick Facts Box Component */
.dlhm-facts {
    background: var(--dlhm-gray-100);
    border: 1px solid var(--dlhm-gray-200);
    border-radius: var(--dlhm-radius-lg);
    padding: 34px;
    margin: 37px 0;
}
.dlhm-facts-title { font-size: 23px; font-weight: 700; color: var(--dlhm-navy); margin-bottom: 19px; display: flex; align-items: center; gap: 8px; }
.dlhm-facts-title::before { content: '📋'; font-size: 24px; }
.dlhm-facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dlhm-fact-item { display: flex; align-items: flex-start; gap: 15px; }
.dlhm-fact-icon { width: 26px; height: 21px; background: var(--dlhm-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dlhm-white); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.dlhm-fact-text { font-size: 13px; color: var(--dlhm-gray-700); line-height: 1.5; }
.dlhm-fact-text strong { color: var(--dlhm-navy); }

/* Star Rating Component */
.dlhm-rating-box {
    background: var(--dlhm-white);
    border: 2px solid var(--dlhm-teal);
    border-radius: var(--dlhm-radius-lg);
    padding: 28px;
    margin: 43px 0;
}
.dlhm-rating-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dlhm-rating-company { font-size: 19px; font-weight: 700; color: var(--dlhm-navy); }
.dlhm-rating-badge { padding: 7px 11px; background: var(--dlhm-gold); border-radius: var(--dlhm-radius-sm); color: var(--dlhm-white); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.dlhm-rating-stars { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.dlhm-stars { color: var(--dlhm-gold); font-size: 24px; letter-spacing: 3px; }
.dlhm-rating-score { font-size: 25px; font-weight: 700; color: var(--dlhm-navy); }
.dlhm-rating-count { font-size: 14px; color: var(--dlhm-gray-500); }
.dlhm-rating-features { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.dlhm-rating-tag { padding: 7px 14px; background: var(--dlhm-gray-100); border-radius: 23px; font-size: 15px; color: var(--dlhm-gray-700); }

/* Main Content */
.dlhm-main { padding: 67px 0; }
.dlhm-article h2 { font-size: 29px; font-weight: 700; color: var(--dlhm-navy); margin: 47px 0 16px; padding-bottom: 11px; border-bottom: 3px solid var(--dlhm-teal); }
.dlhm-article h2:first-child { margin-top: 0; }
.dlhm-article h3 { font-size: 23px; font-weight: 600; color: var(--dlhm-slate); margin: 34px 0 11px; }
.dlhm-article p { margin-bottom: 21px; color: var(--dlhm-gray-700); }
.dlhm-article ul, .dlhm-article ol { margin: 17px 0; padding-left: 22px; }
.dlhm-article li { margin-bottom: 9px; color: var(--dlhm-gray-700); }
.dlhm-article strong { color: var(--dlhm-navy); }
.dlhm-article a { color: var(--dlhm-teal); text-decoration: none; }
.dlhm-article a:hover { text-decoration: underline; }

/* Companies */
.dlhm-companies { padding: 70px 0; background: var(--dlhm-gray-100); }
.dlhm-section-header { text-align: center; margin-bottom: 51px; }
.dlhm-section-badge { display: inline-block; padding: 7px 11px; background: var(--dlhm-teal); border-radius: var(--dlhm-radius-sm); color: var(--dlhm-white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.dlhm-section-title { font-size: 39px; font-weight: 700; color: var(--dlhm-navy); margin-bottom: 12px; }
.dlhm-section-text { font-size: 20px; color: var(--dlhm-gray-500); max-width: 560px; margin: 0 auto; }

.dlhm-companies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 27px; }
.dlhm-company-card {
    background: var(--dlhm-white);
    border-radius: var(--dlhm-radius);
    padding: 27px;
    transition: var(--dlhm-transition);
    position: relative;
    border: 1px solid var(--dlhm-gray-200);
}
.dlhm-company-card:hover { box-shadow: var(--dlhm-shadow-lg); transform: translateY(-4px); }
.dlhm-company-card.featured { border: 2px solid var(--dlhm-teal); }
.dlhm-company-card.featured::before {
    content: 'Verified';
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 3px 15px;
    background: var(--dlhm-green);
    color: var(--dlhm-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--dlhm-radius-sm);
}
.dlhm-company-rank { position: absolute; top: 18px; right: 20px; width: 32px; height: 32px; background: var(--dlhm-gray-100); border-radius: var(--dlhm-radius-sm); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--dlhm-gray-500); }
.dlhm-company-name { font-size: 20px; font-weight: 700; color: var(--dlhm-navy); margin-bottom: 5px; }
.dlhm-company-tagline { font-size: 13px; color: var(--dlhm-gray-500); margin-bottom: 14px; }
.dlhm-company-rating { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.dlhm-company-stars { color: var(--dlhm-gold); font-size: 14px; }
.dlhm-company-score { font-weight: 700; font-size: 14px; color: var(--dlhm-navy); }
.dlhm-company-meta { display: flex; gap: 13px; padding: 19px 0; border-top: 1px solid var(--dlhm-gray-200); border-bottom: 1px solid var(--dlhm-gray-200); margin-bottom: 17px; font-size: 13px; color: var(--dlhm-gray-500); }
.dlhm-company-btns { display: flex; gap: 13px; }
.dlhm-company-btns .dlhm-btn { flex: 1; justify-content: center; padding: 14px 13px; font-size: 17px; }

/* FAQ */
.dlhm-faq { padding: 69px 0; }
.dlhm-faq-list { max-width: 760px; margin: 0 auto; }
.dlhm-faq-item { border: 2px solid var(--dlhm-gray-200); border-radius: var(--dlhm-radius); margin-bottom: 12px; overflow: hidden; }
.dlhm-faq-item:hover { border-color: var(--dlhm-gray-300); }
.dlhm-faq-item.active { border-color: var(--dlhm-teal); }
.dlhm-faq-trigger {
    width: 100%;
    padding: 23px 26px;
    background: var(--dlhm-white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}
.dlhm-faq-trigger:hover { background: var(--dlhm-gray-100); }
.dlhm-faq-q { font-size: 17px; font-weight: 600; color: var(--dlhm-navy); padding-right: 27px; }
.dlhm-faq-icon { width: 27px; height: 28px; background: var(--dlhm-gray-100); border-radius: var(--dlhm-radius-sm); display: flex; align-items: center; justify-content: center; transition: var(--dlhm-transition); flex-shrink: 0; }
.dlhm-faq-icon::before { content: '+'; font-size: 20px; font-weight: 400; color: var(--dlhm-gray-500); }
.dlhm-faq-item.active .dlhm-faq-icon { background: var(--dlhm-teal); }
.dlhm-faq-item.active .dlhm-faq-icon::before { content: '−'; color: var(--dlhm-white); }
.dlhm-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.dlhm-faq-item.active .dlhm-faq-answer { max-height: 500px; }
.dlhm-faq-content { padding: 0 27px 26px; font-size: 12px; color: var(--dlhm-gray-700); line-height: 1.8; }

/* Footer */
.dlhm-footer { background: var(--dlhm-navy); color: rgba(255,255,255,0.8); padding: 63px 0 31px; }
.dlhm-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 46px; padding-bottom: 49px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dlhm-footer-brand { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.dlhm-footer-mark { width: 33px; height: 36px; background: var(--dlhm-teal); border-radius: var(--dlhm-radius-sm); display: flex; align-items: center; justify-content: center; color: var(--dlhm-white); font-weight: 700; font-size: 13px; }
.dlhm-footer-name { font-size: 18px; font-weight: 700; color: var(--dlhm-white); }
.dlhm-footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.dlhm-footer-heading { font-size: 13px; font-weight: 600; color: var(--dlhm-white); margin-bottom: 19px; text-transform: uppercase; letter-spacing: 0.6px; }
.dlhm-footer-links { list-style: none; }
.dlhm-footer-links li { margin-bottom: 7px; }
.dlhm-footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: var(--dlhm-transition); }
.dlhm-footer-links a:hover { color: var(--dlhm-white); }
.dlhm-footer-disclaimer { padding: 31px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dlhm-footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.dlhm-footer-bottom { padding-top: 24px; text-align: center; font-size: 16px; color: rgba(255,255,255,0.4); }

/* Contact */
.dlhm-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; margin-top: 45px; }
.dlhm-contact-card { display: flex; gap: 19px; align-items: flex-start; margin-bottom: 23px; }
.dlhm-contact-icon { width: 46px; height: 48px; background: var(--dlhm-teal); border-radius: var(--dlhm-radius); display: flex; align-items: center; justify-content: center; color: var(--dlhm-white); flex-shrink: 0; }
.dlhm-contact-details h3 { font-size: 16px; font-weight: 600; color: var(--dlhm-navy); margin-bottom: 5px; }
.dlhm-contact-details p { font-size: 16px; color: var(--dlhm-gray-500); margin: 0; }
.dlhm-form-wrap { background: var(--dlhm-gray-100); padding: 33px; border-radius: var(--dlhm-radius-lg); }
.dlhm-form-title { font-size: 27px; font-weight: 700; color: var(--dlhm-navy); margin-bottom: 23px; }
.dlhm-form-row { margin-bottom: 18px; }
.dlhm-form-label { display: block; font-weight: 600; font-size: 14px; color: var(--dlhm-navy); margin-bottom: 8px; }
.dlhm-form-input, .dlhm-form-textarea { width: 100%; padding: 17px 18px; border: 1px solid var(--dlhm-gray-300); border-radius: var(--dlhm-radius-sm); font-family: inherit; font-size: 18px; transition: var(--dlhm-transition); background: var(--dlhm-white); }
.dlhm-form-input:focus, .dlhm-form-textarea:focus { outline: none; border-color: var(--dlhm-teal); box-shadow: 0 0 0 3px rgba(10,156,150,0.1); }
.dlhm-form-textarea { min-height: 120px; resize: vertical; }
.dlhm-form-submit { width: 100%; padding: 15px; background: var(--dlhm-teal); color: var(--dlhm-white); border: none; border-radius: var(--dlhm-radius-sm); font-weight: 600; font-size: 15px; cursor: pointer; transition: var(--dlhm-transition); }
.dlhm-form-submit:hover { background: var(--dlhm-teal-dark); }

/* ===== COMPANIES COMPARISON TABLE ===== */
.dlhm-compare-section {
    padding: 63px 0;
    background: var(--dlhm-gray-100);
}

.dlhm-compare-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 17px;
}

.dlhm-compare-header {
    text-align: center;
    margin-bottom: 43px;
}

.dlhm-compare-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dlhm-navy);
    margin-bottom: 10px;
}

.dlhm-compare-subtitle {
    font-size: 17px;
    color: var(--dlhm-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Table Wrapper for horizontal scroll on mobile */
.dlhm-compare-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -23px;
    padding: 0 22px;
}

/* Main comparison table */
.dlhm-compare-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: var(--dlhm-white);
    border-radius: var(--dlhm-radius-lg);
    overflow: hidden;
    box-shadow: var(--dlhm-shadow);
}

.dlhm-compare-table thead {
    background: var(--dlhm-teal);
}

.dlhm-compare-table th {
    padding: 21px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--dlhm-white);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.dlhm-compare-table th:first-child {
    padding-left: 24px;
}

.dlhm-compare-table th:last-child {
    padding-right: 27px;
    text-align: center;
}

.dlhm-compare-table tbody tr {
    border-bottom: 1px solid var(--dlhm-gray-200);
    transition: var(--dlhm-transition);
}

.dlhm-compare-table tbody tr:hover {
    background: var(--dlhm-gray-100);
}

.dlhm-compare-table tbody tr:last-child {
    border-bottom: none;
}

.dlhm-compare-table tbody tr.dlhm-featured-row {
    background: linear-gradient(90deg, rgba(10,147,158,0.08) 0%, rgba(10,153,149,0.03) 100%);
}

.dlhm-compare-table tbody tr.dlhm-featured-row:hover {
    background: linear-gradient(90deg, rgba(10,159,157,0.12) 0%, rgba(10,149,156,0.06) 100%);
}

.dlhm-compare-table td {
    padding: 17px 19px;
    font-size: 14px;
    color: var(--dlhm-gray-700);
    vertical-align: middle;
}

.dlhm-compare-table td:first-child {
    padding-left: 22px;
}

.dlhm-compare-table td:last-child {
    padding-right: 25px;
    text-align: center;
}

/* Company name cell */
.dlhm-compare-company {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dlhm-compare-rank {
    width: 31px;
    height: 28px;
    background: var(--dlhm-gray-100);
    border-radius: var(--dlhm-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--dlhm-gray-500);
    flex-shrink: 0;
}

.dlhm-featured-row .dlhm-compare-rank {
    background: var(--dlhm-teal);
    color: var(--dlhm-white);
}

.dlhm-compare-name {
    font-weight: 600;
    color: var(--dlhm-navy);
}

.dlhm-compare-badge {
    display: inline-block;
    padding: 4px 7px;
    background: var(--dlhm-gold);
    border-radius: var(--dlhm-radius-sm);
    font-size: 8px;
    font-weight: 700;
    color: var(--dlhm-white);
    text-transform: uppercase;
    margin-left: 9px;
}

/* Rating cell */
.dlhm-compare-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dlhm-compare-stars {
    color: var(--dlhm-gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.dlhm-compare-score {
    font-weight: 700;
    color: var(--dlhm-navy);
    font-size: 14px;
}

/* Feature highlights */
.dlhm-compare-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.dlhm-compare-feature {
    display: inline-block;
    padding: 3px 8px;
    background: var(--dlhm-gray-100);
    border-radius: var(--dlhm-radius-sm);
    font-size: 13px;
    color: var(--dlhm-gray-700);
    white-space: nowrap;
}

.dlhm-featured-row .dlhm-compare-feature {
    background: rgba(10,156,148,0.1);
    color: var(--dlhm-teal);
}

/* Minimum cell */
.dlhm-compare-minimum {
    font-weight: 600;
    color: var(--dlhm-navy);
}

/* CTA button in table */
.dlhm-compare-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 23px;
    background: var(--dlhm-teal);
    color: var(--dlhm-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--dlhm-radius-sm);
    transition: var(--dlhm-transition);
    white-space: nowrap;
}

.dlhm-compare-cta:hover {
    background: var(--dlhm-teal-dark);
}

.dlhm-featured-row .dlhm-compare-cta {
    background: var(--dlhm-gold);
    color: var(--dlhm-white);
}

.dlhm-featured-row .dlhm-compare-cta:hover {
    background: #b99913;
}

/* Scroll indicator for mobile */
.dlhm-compare-scroll-hint {
    display: none;
    text-align: center;
    padding: 9px;
    font-size: 16px;
    color: var(--dlhm-gray-500);
}

.dlhm-compare-scroll-hint span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Table footer/notes */
.dlhm-compare-footer {
    margin-top: 22px;
    padding: 21px 24px;
    background: var(--dlhm-white);
    border-radius: var(--dlhm-radius);
    border-left: 5px solid var(--dlhm-teal);
}

.dlhm-compare-note {
    font-size: 13px;
    color: var(--dlhm-gray-500);
    line-height: 1.6;
}

.dlhm-compare-note strong {
    color: var(--dlhm-navy);
}

/* Mobile card view alternative */
.dlhm-compare-cards {
    display: none;
}

.dlhm-compare-card {
    background: var(--dlhm-white);
    border-radius: var(--dlhm-radius);
    padding: 21px;
    margin-bottom: 19px;
    box-shadow: var(--dlhm-shadow-sm);
    border: 1px solid var(--dlhm-gray-200);
}

.dlhm-compare-card.dlhm-featured-card {
    border: 2px solid var(--dlhm-teal);
    position: relative;
}

.dlhm-compare-card.dlhm-featured-card::before {
    content: 'Top Pick';
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 5px 14px;
    background: var(--dlhm-teal);
    color: var(--dlhm-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--dlhm-radius-sm);
}

.dlhm-compare-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 19px;
}

.dlhm-compare-card-company {
    display: flex;
    align-items: center;
    gap: 9px;
}

.dlhm-compare-card-rank {
    width: 30px;
    height: 32px;
    background: var(--dlhm-gray-100);
    border-radius: var(--dlhm-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dlhm-gray-500);
}

.dlhm-featured-card .dlhm-compare-card-rank {
    background: var(--dlhm-teal);
    color: var(--dlhm-white);
}

.dlhm-compare-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dlhm-navy);
}

.dlhm-compare-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dlhm-compare-card-stars {
    color: var(--dlhm-gold);
    font-size: 14px;
}

.dlhm-compare-card-score {
    font-weight: 700;
    color: var(--dlhm-navy);
    font-size: 15px;
}

.dlhm-compare-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-bottom: 14px;
    padding: 17px 0;
    border-top: 1px solid var(--dlhm-gray-200);
    border-bottom: 1px solid var(--dlhm-gray-200);
}

.dlhm-compare-card-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dlhm-compare-card-label {
    font-size: 9px;
    color: var(--dlhm-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.dlhm-compare-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--dlhm-navy);
}

.dlhm-compare-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 17px;
}

.dlhm-compare-card-feature {
    display: inline-block;
    padding: 4px 13px;
    background: var(--dlhm-gray-100);
    border-radius: var(--dlhm-radius-sm);
    font-size: 14px;
    color: var(--dlhm-gray-700);
}

.dlhm-featured-card .dlhm-compare-card-feature {
    background: rgba(10,146,155,0.1);
    color: var(--dlhm-teal);
}

.dlhm-compare-card-cta {
    display: block;
    width: 100%;
    padding: 11px;
    background: var(--dlhm-teal);
    color: var(--dlhm-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    border-radius: var(--dlhm-radius-sm);
    transition: var(--dlhm-transition);
}

.dlhm-compare-card-cta:hover {
    background: var(--dlhm-teal-dark);
}

.dlhm-featured-card .dlhm-compare-card-cta {
    background: var(--dlhm-gold);
}

.dlhm-featured-card .dlhm-compare-card-cta:hover {
    background: #af8917;
}

/* Responsive */
@media (max-width: 1024px) {
    .dlhm-facts-grid { grid-template-columns: 1fr; }
    .dlhm-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .dlhm-compare-title {
        font-size: 29px;
    }
}

@media (max-width: 768px) {
    .dlhm-nav, .dlhm-nav-cta { display: none; }
    .dlhm-burger { display: flex; }
    .dlhm-hero-title { font-size: 32px; }
    .dlhm-hero-text { font-size: 16px; }
    .dlhm-hero-btns { flex-direction: column; }
    .dlhm-btn { width: 100%; justify-content: center; }
    .dlhm-section-title { font-size: 30px; }
    .dlhm-article h2 { font-size: 22px; }
    .dlhm-companies-grid { grid-template-columns: 1fr; }
    .dlhm-footer-grid { grid-template-columns: 1fr; gap: 27px; }
    .dlhm-contact-grid { grid-template-columns: 1fr; }

    /* Switch to card view on mobile */
    .dlhm-compare-wrapper {
        display: none;
    }

    .dlhm-compare-cards {
        display: block;
    }

    .dlhm-compare-scroll-hint {
        display: none;
    }

    .dlhm-compare-title {
        font-size: 24px;
    }

    .dlhm-compare-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .dlhm-compare-card-details {
        grid-template-columns: 1fr;
    }

    .dlhm-compare-section {
        padding: 43px 0;
    }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .dlhm-companies-section .dlhm-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .dlhm-companies-section table.dlhm-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .dlhm-companies-section .dlhm-companies-table thead {
        display: none !important;
    }

    .dlhm-companies-section .dlhm-companies-table tbody,
    .dlhm-companies-section .dlhm-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .dlhm-companies-section .dlhm-companies-table tbody tr.dlhm-company-row {
        background: #fff !important;
        margin-bottom: 17px !important;
        border-radius: 19px !important;
        box-shadow: 0 3px 22px rgba(93,29,41,0.1) !important;
        padding: 21px !important;
        border: 1px solid rgba(98,36,48,0.08);
    }

    .dlhm-companies-section .dlhm-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .dlhm-companies-section .dlhm-companies-table td:last-child {
        border-bottom: none !important;
    }

    .dlhm-companies-section .dlhm-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #521d2d !important;
        flex-shrink: 0 !important;
        margin-right: 12px !important;
        font-size: 0.85rem !important;
    }

    .dlhm-companies-section .dlhm-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 19px !important;
        border-bottom: 1px solid #f3e9d5 !important;
    }

    .dlhm-companies-section .dlhm-td-company::before {
        display: none !important;
    }

    .dlhm-companies-section .dlhm-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .dlhm-companies-section .dlhm-td-rank::before {
        display: none !important;
    }

    .dlhm-companies-section .dlhm-td-action {
        flex-direction: column !important;
        padding-top: 14px !important;
        border-top: 3px solid #eaecda !important;
        border-bottom: none !important;
    }

    .dlhm-companies-section .dlhm-td-action::before {
        display: none !important;
    }

    .dlhm-companies-section .dlhm-td-action .dlhm-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 27px !important;
        font-size: 1rem !important;
    }
}

/* Company Logo Styles */
.dlhm-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    margin-bottom: 9px;
}

@media screen and (max-width: 768px) {
    .dlhm-company-logo {
        display: block !important;
        margin: 0 auto 16px auto !important;
    }

    .dlhm-companies-section .dlhm-td-company .dlhm-company-info {
        text-align: center;
    }
}


/* Hamburger Menu Styles */
.dlhm-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 11px;
}

.dlhm-menu-line {
    width: 26px;
    height: 3px;
    background: var(--dlhm-text, #2f2e44);
    border-radius: 3px;
    transition: 0.3s;
}

.dlhm-menu-toggle.active .dlhm-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.dlhm-menu-toggle.active .dlhm-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .dlhm-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.dlhm-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 13px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dlhm-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .dlhm-nav {
        display: none !important;
    }

    .dlhm-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.dlhm-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 16px 27px;
    border-top: 2px solid #eee;
}

.dlhm-mobile-nav.active {
    display: flex;
}

.dlhm-mobile-link {
    padding: 9px 0;
    color: var(--dlhm-text, #263249);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.dlhm-mobile-link:last-child {
    border-bottom: none;
}

.dlhm-mobile-link:hover {
    color: var(--dlhm-accent, #f10a12);
}


/* SVG Logo & Mobile Fixes */
.dlhm-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.dlhm-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .dlhm-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .dlhm-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .dlhm-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .dlhm-company-info {
        text-align: center !important;
    }

    .dlhm-company-name {
        text-align: center !important;
    }

    .dlhm-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


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

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