/* Audi Cashmere Style - Auto-themed */
/* Unique Class Prefix: ac- */
:root {
    --ljkj-charcoal: #2d3529;
    --ljkj-graphite: #444b4a;
    --ljkj-cashmere: #9d9ff5;
    --ljkj-cream: #f5f0e8;
    --ljkj-ivory: #faf8f5;
    --ljkj-warm-white: #fefdfb;
    --ljkj-taupe: #a29979;
    --ljkj-bronze: #8687f5;
    --ljkj-slate: #575b60;
    --ljkj-mist: #f1dde4;
    --ljkj-shadow-soft: rgba(47,51,51,0.08);
    --ljkj-shadow-med: rgba(46,41,44,0.15);
    --ljkj-shadow-deep: rgba(45,47,52,0.25);
    --ljkj-success: #589653;
    --ljkj-danger: #c05d5a;
    --ljkj-radius-sm: 3px;
    --ljkj-radius-md: 11px;
    --ljkj-radius-lg: 15px;
    --ljkj-spacing-xs: 6px;
    --ljkj-spacing-sm: 16px;
    --ljkj-spacing-md: 24px;
    --ljkj-spacing-lg: 40px;
    --ljkj-spacing-xl: 64px;
    --ljkj-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--ljkj-charcoal);
    background: var(--ljkj-ivory);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.ljkj-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--ljkj-spacing-md);
}

/* Breadcrumb Component */
.ljkj-breadcrumb {
    padding: var(--ljkj-spacing-sm) 0;
    background: var(--ljkj-cream);
    border-bottom: 1px solid var(--ljkj-mist);
}

.ljkj-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 16px;
}

.ljkj-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ljkj-breadcrumb-item::after {
    content: '/';
    color: var(--ljkj-taupe);
    opacity: 0.6;
}

.ljkj-breadcrumb-item:last-child::after {
    display: none;
}

.ljkj-breadcrumb-link {
    color: var(--ljkj-slate);
    text-decoration: none;
    transition: color var(--ljkj-transition);
}

.ljkj-breadcrumb-link:hover {
    color: var(--ljkj-bronze);
}

.ljkj-breadcrumb-current {
    color: var(--ljkj-charcoal);
    font-weight: 500;
}

/* Header */
.ljkj-header {
    background: var(--ljkj-warm-white);
    border-bottom: 1px solid var(--ljkj-mist);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(11px);
}

.ljkj-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
}

.ljkj-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--ljkj-charcoal);
}

.ljkj-brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--ljkj-charcoal), var(--ljkj-graphite));
    border-radius: var(--ljkj-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ljkj-brand-mark::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px solid var(--ljkj-cashmere);
    border-radius: 5px;
    opacity: 0.4;
}

.ljkj-brand-mark svg {
    width: 22px;
    height: 22px;
    fill: var(--ljkj-cashmere);
}

.ljkj-brand-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.ljkj-brand-text em {
    font-style: normal;
    color: var(--ljkj-bronze);
}

.ljkj-navigation {
    display: flex;
    align-items: center;
    gap: 38px;
}

.ljkj-nav-item {
    color: var(--ljkj-graphite);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 7px 0;
    transition: color var(--ljkj-transition);
}

.ljkj-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ljkj-bronze);
    transition: width var(--ljkj-transition);
}

.ljkj-nav-item:hover {
    color: var(--ljkj-charcoal);
}

.ljkj-nav-item:hover::after,
.ljkj-nav-item--active::after {
    width: 100%;
}

.ljkj-nav-item--active {
    color: var(--ljkj-charcoal);
}

.ljkj-header-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 24px;
    background: var(--ljkj-charcoal);
    color: var(--ljkj-cream);
    text-decoration: none;
    border-radius: var(--ljkj-radius-sm);
    font-weight: 600;
    font-size: 11px;
    transition: all var(--ljkj-transition);
}

.ljkj-header-action:hover {
    background: var(--ljkj-graphite);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--ljkj-shadow-med);
}

/* Mobile Menu Toggle */
.ljkj-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.ljkj-burger-line {
    width: 26px;
    height: 2px;
    background: var(--ljkj-charcoal);
    border-radius: 1px;
    transition: all var(--ljkj-transition);
}

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

.ljkj-burger--open .ljkj-burger-line:nth-child(2) {
    opacity: 0;
}

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

.ljkj-mobile-menu {
    display: none;
    flex-direction: column;
    padding: var(--ljkj-spacing-md);
    background: var(--ljkj-warm-white);
    border-top: 1px solid var(--ljkj-mist);
}

.ljkj-mobile-menu--visible {
    display: flex;
}

.ljkj-mobile-link {
    padding: 17px 0;
    color: var(--ljkj-charcoal);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--ljkj-mist);
}

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

/* Hero Section */
.ljkj-hero {
    padding: var(--ljkj-spacing-xl) 0;
    background: linear-gradient(180deg, var(--ljkj-cream) 0%, var(--ljkj-ivory) 100%);
    text-align: center;
    position: relative;
}

.ljkj-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ljkj-cashmere), transparent);
}

.ljkj-hero-label {
    display: inline-block;
    padding: 10px 19px;
    background: var(--ljkj-warm-white);
    border: 1px solid var(--ljkj-mist);
    border-radius: 51px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--ljkj-taupe);
    margin-bottom: var(--ljkj-spacing-md);
}

.ljkj-hero-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 600;
    color: var(--ljkj-charcoal);
    line-height: 1.2;
    margin-bottom: var(--ljkj-spacing-md);
    letter-spacing: -2px;
}

.ljkj-hero-desc {
    font-size: 17px;
    color: var(--ljkj-graphite);
    max-width: 680px;
    margin: 0 auto var(--ljkj-spacing-lg);
    line-height: 1.8;
}

.ljkj-hero-actions {
    display: flex;
    gap: var(--ljkj-spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.ljkj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 35px;
    border-radius: var(--ljkj-radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--ljkj-transition);
    border: none;
    cursor: pointer;
}

.ljkj-btn--primary {
    background: var(--ljkj-charcoal);
    color: var(--ljkj-cream);
}

.ljkj-btn--primary:hover {
    background: var(--ljkj-graphite);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--ljkj-shadow-med);
}

.ljkj-btn--ghost {
    background: transparent;
    color: var(--ljkj-charcoal);
    border: 2px solid var(--ljkj-mist);
}

.ljkj-btn--ghost:hover {
    border-color: var(--ljkj-cashmere);
    background: var(--ljkj-cream);
}

/* Companies Section */
.ljkj-companies {
    padding: var(--ljkj-spacing-xl) 0;
    background: var(--ljkj-warm-white);
}

.ljkj-section-header {
    text-align: center;
    margin-bottom: var(--ljkj-spacing-lg);
}

.ljkj-section-tag {
    display: inline-block;
    padding: 7px 14px;
    background: var(--ljkj-cream);
    border-radius: 53px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--ljkj-bronze);
    margin-bottom: var(--ljkj-spacing-sm);
}

.ljkj-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--ljkj-charcoal);
    margin-bottom: 11px;
}

.ljkj-section-subtitle {
    font-size: 16px;
    color: var(--ljkj-slate);
}

.ljkj-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--ljkj-spacing-md);
}

.ljkj-company-card {
    background: var(--ljkj-ivory);
    border: 1px solid var(--ljkj-mist);
    border-radius: var(--ljkj-radius-md);
    padding: var(--ljkj-spacing-md);
    transition: all var(--ljkj-transition);
    position: relative;
}

.ljkj-company-card:hover {
    border-color: var(--ljkj-cashmere);
    box-shadow: 0 12px 40px var(--ljkj-shadow-soft);
    transform: translateY(-4px);
}

.ljkj-company-card--featured {
    border-color: var(--ljkj-cashmere);
    background: linear-gradient(145deg, var(--ljkj-ivory), var(--ljkj-cream));
}

.ljkj-company-card--featured::before {
    content: 'Top Pick';
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--ljkj-charcoal);
    color: var(--ljkj-cashmere);
    padding: 7px 15px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 0 0 var(--ljkj-radius-sm) var(--ljkj-radius-sm);
}

.ljkj-company-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: var(--ljkj-cream);
    border: 1px solid var(--ljkj-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--ljkj-bronze);
}

.ljkj-company-logo {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.ljkj-company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ljkj-charcoal);
    text-align: center;
    margin-bottom: 5px;
}

.ljkj-company-tagline {
    font-size: 13px;
    color: var(--ljkj-taupe);
    text-align: center;
    margin-bottom: 19px;
}

.ljkj-company-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 14px;
}

.ljkj-stars {
    color: var(--ljkj-cashmere);
    font-size: 16px;
    letter-spacing: 2px;
}

.ljkj-rating-num {
    font-weight: 700;
    color: var(--ljkj-charcoal);
    font-size: 14px;
}

.ljkj-company-details {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 19px;
    font-size: 16px;
    color: var(--ljkj-slate);
}

.ljkj-company-actions {
    display: flex;
    gap: 11px;
}

.ljkj-company-actions .ljkj-btn {
    flex: 1;
    padding: 10px 19px;
    font-size: 13px;
}

.ljkj-btn--outline {
    background: transparent;
    border: 1px solid var(--ljkj-mist);
    color: var(--ljkj-graphite);
}

.ljkj-btn--outline:hover {
    border-color: var(--ljkj-cashmere);
    color: var(--ljkj-charcoal);
}

/* Article Content */
.ljkj-content {
    padding: var(--ljkj-spacing-xl) 0;
}

.ljkj-article {
    max-width: 780px;
    margin: 0 auto;
}

.ljkj-article h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--ljkj-charcoal);
    margin: var(--ljkj-spacing-lg) 0 var(--ljkj-spacing-md);
    padding-bottom: var(--ljkj-spacing-sm);
    border-bottom: 2px solid var(--ljkj-mist);
}

.ljkj-article h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--ljkj-graphite);
    margin: var(--ljkj-spacing-md) 0 var(--ljkj-spacing-sm);
}

.ljkj-article p {
    margin-bottom: var(--ljkj-spacing-md);
    color: var(--ljkj-graphite);
    line-height: 1.85;
}

.ljkj-article ul {
    margin: var(--ljkj-spacing-md) 0;
    padding-left: var(--ljkj-spacing-md);
}

.ljkj-article li {
    margin-bottom: 10px;
    color: var(--ljkj-graphite);
    line-height: 1.7;
}

.ljkj-article li::marker {
    color: var(--ljkj-cashmere);
}

/* Article Image */
.ljkj-image-block {
    margin: var(--ljkj-spacing-lg) 0;
    border-radius: var(--ljkj-radius-md);
    overflow: hidden;
    box-shadow: 0 11px 32px var(--ljkj-shadow-soft);
}

.ljkj-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.ljkj-image-block figcaption {
    padding: 11px 22px;
    background: var(--ljkj-cream);
    font-size: 13px;
    color: var(--ljkj-slate);
    text-align: center;
}

/* Newsletter Signup Component */
.ljkj-newsletter {
    margin: var(--ljkj-spacing-xl) 0;
    padding: var(--ljkj-spacing-lg);
    background: linear-gradient(145deg, var(--ljkj-charcoal), var(--ljkj-graphite));
    border-radius: var(--ljkj-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ljkj-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(208,178,150,0.1), transparent 60%);
    pointer-events: none;
}

.ljkj-newsletter-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--ljkj-cream);
    margin-bottom: 13px;
    position: relative;
}

.ljkj-newsletter-desc {
    color: var(--ljkj-mist);
    margin-bottom: var(--ljkj-spacing-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.ljkj-newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.ljkj-newsletter-input {
    flex: 1;
    padding: 13px 22px;
    border: 1px solid var(--ljkj-slate);
    border-radius: var(--ljkj-radius-sm);
    background: var(--ljkj-charcoal);
    color: var(--ljkj-cream);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--ljkj-transition);
}

.ljkj-newsletter-input::placeholder {
    color: var(--ljkj-slate);
}

.ljkj-newsletter-input:focus {
    outline: none;
    border-color: var(--ljkj-cashmere);
}

.ljkj-newsletter-btn {
    padding: 17px 26px;
    background: var(--ljkj-cashmere);
    color: var(--ljkj-charcoal);
    border: none;
    border-radius: var(--ljkj-radius-sm);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--ljkj-transition);
}

.ljkj-newsletter-btn:hover {
    background: var(--ljkj-taupe);
    transform: translateY(-2px);
}

/* FAQ Accordion Component */
.ljkj-faq {
    padding: var(--ljkj-spacing-xl) 0;
    background: var(--ljkj-cream);
}

.ljkj-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--ljkj-spacing-sm);
}

.ljkj-faq-item {
    background: var(--ljkj-warm-white);
    border: 1px solid var(--ljkj-mist);
    border-radius: var(--ljkj-radius-md);
    overflow: hidden;
    transition: all var(--ljkj-transition);
}

.ljkj-faq-item:hover {
    border-color: var(--ljkj-cashmere);
}

.ljkj-faq-item--open {
    border-color: var(--ljkj-cashmere);
    box-shadow: 0 8px 32px var(--ljkj-shadow-soft);
}

.ljkj-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 23px;
}

.ljkj-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--ljkj-charcoal);
    line-height: 1.4;
}

.ljkj-faq-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--ljkj-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ljkj-transition);
}

.ljkj-faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--ljkj-bronze);
    transition: transform var(--ljkj-transition);
}

.ljkj-faq-item--open .ljkj-faq-icon {
    background: var(--ljkj-charcoal);
}

.ljkj-faq-item--open .ljkj-faq-icon svg {
    stroke: var(--ljkj-cashmere);
    transform: rotate(180deg);
}

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

.ljkj-faq-answer-inner {
    padding: 0 27px 24px;
    color: var(--ljkj-graphite);
    line-height: 1.8;
}

/* Footer */
.ljkj-footer {
    background: var(--ljkj-charcoal);
    color: var(--ljkj-mist);
    padding: var(--ljkj-spacing-xl) 0 var(--ljkj-spacing-lg);
    margin-top: var(--ljkj-spacing-xl);
}

.ljkj-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--ljkj-spacing-lg);
    padding-bottom: var(--ljkj-spacing-lg);
    border-bottom: 2px solid var(--ljkj-slate);
}

.ljkj-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--ljkj-spacing-sm);
}

.ljkj-footer-brand-mark {
    width: 36px;
    height: 36px;
    background: var(--ljkj-graphite);
    border-radius: var(--ljkj-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ljkj-footer-brand-mark svg {
    width: 18px;
    height: 18px;
    fill: var(--ljkj-cashmere);
}

.ljkj-footer-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--ljkj-cream);
}

.ljkj-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ljkj-taupe);
}

.ljkj-footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ljkj-cream);
    margin-bottom: var(--ljkj-spacing-sm);
}

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

.ljkj-footer-links li {
    margin-bottom: 7px;
}

.ljkj-footer-links a {
    color: var(--ljkj-taupe);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--ljkj-transition);
}

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

.ljkj-footer-disclaimer {
    padding: var(--ljkj-spacing-md) 0;
    border-bottom: 1px solid var(--ljkj-slate);
}

.ljkj-footer-disclaimer p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--ljkj-taupe);
}

.ljkj-footer-bottom {
    padding-top: var(--ljkj-spacing-md);
    text-align: center;
    font-size: 13px;
    color: var(--ljkj-slate);
}

/* Contact Form Styles */
.ljkj-contact-section {
    padding: var(--ljkj-spacing-xl) 0;
}

.ljkj-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--ljkj-spacing-xl);
    margin-top: var(--ljkj-spacing-lg);
}

.ljkj-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--ljkj-spacing-md);
}

.ljkj-contact-card {
    display: flex;
    gap: var(--ljkj-spacing-sm);
    align-items: flex-start;
}

.ljkj-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--ljkj-cream);
    border-radius: var(--ljkj-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ljkj-contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--ljkj-bronze);
}

.ljkj-contact-label {
    font-weight: 600;
    color: var(--ljkj-charcoal);
    margin-bottom: 5px;
}

.ljkj-contact-value {
    color: var(--ljkj-slate);
    font-size: 14px;
}

.ljkj-form-wrapper {
    background: var(--ljkj-cream);
    padding: var(--ljkj-spacing-lg);
    border-radius: var(--ljkj-radius-lg);
}

.ljkj-form-group {
    margin-bottom: var(--ljkj-spacing-md);
}

.ljkj-form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--ljkj-charcoal);
    margin-bottom: 9px;
}

.ljkj-form-control {
    width: 100%;
    padding: 12px 21px;
    border: 1px solid var(--ljkj-mist);
    border-radius: var(--ljkj-radius-sm);
    font-family: inherit;
    font-size: 12px;
    background: var(--ljkj-warm-white);
    color: var(--ljkj-charcoal);
    transition: border-color var(--ljkj-transition);
}

.ljkj-form-control:focus {
    outline: none;
    border-color: var(--ljkj-cashmere);
}

.ljkj-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.ljkj-form-submit {
    width: 100%;
    padding: 15px;
    background: var(--ljkj-charcoal);
    color: var(--ljkj-cream);
    border: none;
    border-radius: var(--ljkj-radius-sm);
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    transition: all var(--ljkj-transition);
}

.ljkj-form-submit:hover {
    background: var(--ljkj-graphite);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--ljkj-shadow-med);
}

.ljkj-form-success {
    display: none;
    padding: var(--ljkj-spacing-md);
    background: rgba(96,142,94,0.1);
    border: 1px solid var(--ljkj-success);
    border-radius: var(--ljkj-radius-sm);
    color: var(--ljkj-success);
    text-align: center;
    margin-top: var(--ljkj-spacing-sm);
}

.ljkj-form-success--visible {
    display: block;
}

/* Article Styles */
.ljkj-page-header {
    padding: var(--ljkj-spacing-lg) 0;
    text-align: center;
    background: var(--ljkj-cream);
    border-bottom: 1px solid var(--ljkj-mist);
}

.ljkj-page-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--ljkj-charcoal);
    margin-bottom: 7px;
}

.ljkj-page-lead {
    font-size: 19px;
    color: var(--ljkj-slate);
}

.ljkj-static-content {
    max-width: 780px;
    margin: 0 auto;
    padding: var(--ljkj-spacing-xl) 0;
}

.ljkj-static-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ljkj-charcoal);
    margin: var(--ljkj-spacing-lg) 0 var(--ljkj-spacing-sm);
}

.ljkj-static-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ljkj-graphite);
    margin: var(--ljkj-spacing-md) 0 var(--ljkj-spacing-xs);
}

.ljkj-static-content p {
    margin-bottom: var(--ljkj-spacing-sm);
    color: var(--ljkj-graphite);
    line-height: 1.8;
}

.ljkj-static-content ul {
    margin: var(--ljkj-spacing-sm) 0;
    padding-left: var(--ljkj-spacing-md);
}

.ljkj-static-content li {
    margin-bottom: 10px;
    color: var(--ljkj-graphite);
}

/* Responsive Design */
@media (max-width: 992px) {
    .ljkj-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ljkj-contact-grid {
        grid-template-columns: 1fr;
    }
}

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

    .ljkj-burger {
        display: flex;
    }

    .ljkj-hero-heading {
        font-size: 32px;
    }

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

    .ljkj-hero-actions {
        flex-direction: column;
        padding: 0 var(--ljkj-spacing-md);
    }

    .ljkj-btn {
        width: 100%;
    }

    .ljkj-companies-grid {
        grid-template-columns: 1fr;
    }

    .ljkj-newsletter-form {
        flex-direction: column;
    }

    .ljkj-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ljkj-footer-brand {
        justify-content: center;
    }

    .ljkj-section-title {
        font-size: 28px;
    }

    .ljkj-article h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .ljkj-wrapper {
        padding: 0 var(--ljkj-spacing-sm);
    }

    .ljkj-spacing-xl {
        --ljkj-spacing-xl: 48px;
    }

    .ljkj-faq-trigger {
        padding: 15px 22px;
    }

    .ljkj-faq-question {
        font-size: 15px;
    }
}

/* ========================================
   Companies Comparison Table - Cashmere Comfort Style
   ======================================== */
.ljkj-comparison-section {
    padding: 86px 0;
    background: linear-gradient(180deg, var(--ljkj-sand-light) 0%, var(--ljkj-white) 100%);
}

.ljkj-comparison-header {
    text-align: center;
    margin-bottom: 53px;
}

.ljkj-comparison-ribbon {
    display: inline-block;
    padding: 7px 25px;
    background: var(--ljkj-charcoal);
    color: var(--ljkj-sand);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ljkj-comparison-title {
    font-size: 40px;
    font-weight: 300;
    color: var(--ljkj-charcoal);
    font-family: var(--ljkj-font-display);
    letter-spacing: 0.6px;
    margin-bottom: 15px;
}

.ljkj-comparison-subtitle {
    font-size: 16px;
    color: var(--ljkj-gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.ljkj-comparison-table {
    width: 100%;
    background: var(--ljkj-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 34px rgba(0,0,0,0.06);
}

.ljkj-comparison-table thead {
    background: var(--ljkj-charcoal);
}

.ljkj-comparison-table th {
    padding: 21px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ljkj-sand);
}

.ljkj-comparison-table td {
    padding: 22px 25px;
    border-bottom: 1px solid var(--ljkj-sand-light);
    font-size: 14px;
    color: var(--ljkj-gray-700);
}

.ljkj-comparison-table tbody tr:hover {
    background: var(--ljkj-sand-light);
}

.ljkj-company-cell {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ljkj-company-cashmere {
    width: 53px;
    height: 54px;
    background: var(--ljkj-sand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ljkj-company-cashmere img {
    max-width: 34px;
    max-height: 34px;
}

.ljkj-company-info-csh h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ljkj-charcoal);
    font-family: var(--ljkj-font-display);
}

.ljkj-company-info-csh span {
    font-size: 12px;
    color: var(--ljkj-gray-500);
}

.ljkj-rating-cashmere {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 600;
    color: var(--ljkj-charcoal);
}

.ljkj-feature-cashmere {
    display: inline-block;
    padding: 6px 17px;
    background: var(--ljkj-sand-light);
    border-radius: 21px;
    color: var(--ljkj-charcoal);
    font-size: 12px;
    font-weight: 600;
}

.ljkj-btn-cashmere {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 14px 25px;
    background: var(--ljkj-charcoal);
    color: var(--ljkj-sand);
    text-decoration: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ljkj-btn-cashmere:hover {
    background: var(--ljkj-accent);
}

.ljkj-comparison-cards { display: none; }

.ljkj-company-card {
    background: var(--ljkj-white);
    border-radius: 9px;
    padding: 26px;
    margin-bottom: 21px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.ljkj-card-cashmere {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 23px;
    padding-bottom: 23px;
    border-bottom: 2px solid var(--ljkj-sand-light);
}

.ljkj-card-circle {
    width: 66px;
    height: 66px;
    background: var(--ljkj-sand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ljkj-card-name-csh h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--ljkj-charcoal);
    font-family: var(--ljkj-font-display);
}

.ljkj-card-props {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-bottom: 26px;
}

.ljkj-card-prop {
    padding: 15px;
    background: var(--ljkj-sand-light);
    border-radius: 7px;
}

.ljkj-card-prop-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--ljkj-gray-500);
    margin-bottom: 6px;
}

.ljkj-card-prop-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--ljkj-charcoal);
}

.ljkj-card-cta-csh {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--ljkj-charcoal);
    color: var(--ljkj-sand);
    text-decoration: none;
    border-radius: 7px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ljkj-card-cta-csh:hover {
    background: var(--ljkj-accent);
}

@media (max-width: 900px) {
    .ljkj-comparison-table { display: none; }
    .ljkj-comparison-cards { display: block; }
    .ljkj-comparison-title { font-size: 32px; }
}

@media (max-width: 480px) {
    .ljkj-comparison-section { padding: 59px 0; }
    .ljkj-card-props { grid-template-columns: 1fr; }
}


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

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

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

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

    .ljkj-companies-section .ljkj-companies-table tbody tr.ljkj-company-row {
        background: #fff !important;
        margin-bottom: 17px !important;
        border-radius: 18px !important;
        box-shadow: 0 3px 27px rgba(87,32,41,0.1) !important;
        padding: 21px !important;
        border: 1px solid rgba(86,22,49,0.08);
    }

    .ljkj-companies-section .ljkj-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;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

.ljkj-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) {
    .ljkj-nav {
        display: none !important;
    }

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


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

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

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

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

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


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

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

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

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .ljkj-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) {
    .ljkj-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

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

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

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


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

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