/* Ritz-Carlton Flawless Style - Auto-themed */
:root {
    --lllk-champagne: #c7bb8e;
    --lllk-gold-muted: #bfaf7c;
    --lllk-gold-soft: #d0baac;
    --lllk-ivory: #f8f6f1;
    --lllk-cream: #fffef9;
    --lllk-charcoal: #03050a;
    --lllk-graphite: #44534a;
    --lllk-slate: #6e6170;
    --lllk-pearl: #f0ede6;
    --lllk-marble: linear-gradient(135deg, #fdfcfa 0%, #f5f3ed 50%, #fdfcfa 100%);
    --lllk-shadow-soft: rgba(50,41,49,0.08);
    --lllk-shadow-medium: rgba(49,51,40,0.12);
    --lllk-border-light: rgba(204,177,154,0.25);
    --lllk-transition: cubic-bezier(0.4, 0, 0.2, 1);
    --lllk-spacing-xs: 8px;
    --lllk-spacing-sm: 16px;
    --lllk-spacing-md: 24px;
    --lllk-spacing-lg: 40px;
    --lllk-spacing-xl: 64px;
    --lllk-radius-sm: 4px;
    --lllk-radius-md: 5px;
    --lllk-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--lllk-charcoal);
    background: var(--lllk-marble);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Elegant Header */
.lllk-masthead {
    background: rgba(255, 254, 249, 0.97);
    border-bottom: 1px solid var(--lllk-border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.lllk-masthead-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: var(--lllk-spacing-sm) var(--lllk-spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.lllk-brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--lllk-champagne) 0%, var(--lllk-gold-muted) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--lllk-charcoal);
    box-shadow: 0 2px 8px var(--lllk-shadow-soft);
}

.lllk-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lllk-navigation {
    display: flex;
    gap: var(--lllk-spacing-lg);
}

.lllk-nav-item {
    color: var(--lllk-graphite);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: var(--lllk-spacing-xs) 0;
    position: relative;
    transition: color 0.3s var(--lllk-transition);
}

.lllk-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lllk-champagne);
    transition: width 0.4s var(--lllk-transition);
}

.lllk-nav-item:hover,
.lllk-nav-item--current {
    color: var(--lllk-charcoal);
}

.lllk-nav-item:hover::after,
.lllk-nav-item--current::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.lllk-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--lllk-spacing-xs);
}

.lllk-menu-bar {
    width: 26px;
    height: 2px;
    background: var(--lllk-charcoal);
    transition: all 0.3s var(--lllk-transition);
    border-radius: 1px;
}

.lllk-menu-btn.active .lllk-menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.lllk-menu-btn.active .lllk-menu-bar:nth-child(2) {
    opacity: 0;
}

.lllk-menu-btn.active .lllk-menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.lllk-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--lllk-cream);
    border-top: 1px solid var(--lllk-border-light);
    padding: var(--lllk-spacing-md);
}

.lllk-mobile-menu.active {
    display: flex;
}

.lllk-mobile-item {
    padding: var(--lllk-spacing-sm) 0;
    color: var(--lllk-graphite);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--lllk-border-light);
    transition: color 0.3s;
}

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

.lllk-mobile-item:hover {
    color: var(--lllk-champagne);
}

/* Hero Section */
.lllk-hero {
    background: linear-gradient(170deg, var(--lllk-charcoal) 0%, #101018 100%);
    padding: var(--lllk-spacing-xl) 0 78px;
    position: relative;
    overflow: hidden;
}

.lllk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(203,188,157,0.12) 0%, transparent 60%);
}

.lllk-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 var(--lllk-spacing-md);
}

.lllk-hero-label {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(202,182,148,0.15);
    border: 1px solid rgba(201,191,156,0.3);
    border-radius: 29px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lllk-champagne);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--lllk-spacing-md);
}

.lllk-hero-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 500;
    color: var(--lllk-cream);
    line-height: 1.15;
    margin-bottom: var(--lllk-spacing-md);
    letter-spacing: -0.6px;
}

.lllk-hero-tagline {
    font-size: 18px;
    color: rgba(248, 246, 241, 0.75);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto var(--lllk-spacing-lg);
}

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

.lllk-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--lllk-radius-sm);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all 0.4s var(--lllk-transition);
    cursor: pointer;
    border: none;
}

.lllk-btn-gold {
    background: linear-gradient(145deg, var(--lllk-champagne) 0%, var(--lllk-gold-muted) 100%);
    color: var(--lllk-charcoal);
    box-shadow: 0 4px 16px rgba(199,187,151,0.3);
}

.lllk-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198,188,142,0.4);
}

.lllk-btn-outline {
    background: transparent;
    color: var(--lllk-cream);
    border: 1px solid rgba(248, 246, 241, 0.3);
}

.lllk-btn-outline:hover {
    background: rgba(248, 246, 241, 0.08);
    border-color: rgba(248, 246, 241, 0.5);
}

/* CTA Banner Component */
.lllk-cta-strip {
    background: linear-gradient(135deg, var(--lllk-champagne) 0%, var(--lllk-gold-muted) 100%);
    padding: var(--lllk-spacing-lg) var(--lllk-spacing-md);
    text-align: center;
    position: relative;
}

.lllk-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.lllk-cta-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--lllk-charcoal);
    margin-bottom: var(--lllk-spacing-sm);
}

.lllk-cta-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 32px;
    background: var(--lllk-charcoal);
    color: var(--lllk-cream);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--lllk-radius-sm);
    transition: all 0.3s var(--lllk-transition);
}

.lllk-cta-action:hover {
    background: #1a161d;
    transform: translateY(-2px);
}

/* Video Embed Component */
.lllk-video-section {
    padding: var(--lllk-spacing-xl) 0;
    background: var(--lllk-pearl);
}

.lllk-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lllk-video-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--lllk-charcoal);
    margin-bottom: var(--lllk-spacing-md);
}

.lllk-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--lllk-radius-md);
    box-shadow: 0 10px 43px var(--lllk-shadow-medium);
    background: var(--lllk-charcoal);
}

.lllk-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #433841 0%, #2a2f24 100%);
    color: var(--lllk-cream);
    cursor: pointer;
    transition: all 0.4s var(--lllk-transition);
}

.lllk-video-placeholder:hover {
    background: linear-gradient(145deg, #524f49 0%, #393340 100%);
}

.lllk-video-play-icon {
    width: 80px;
    height: 80px;
    background: rgba(193,189,152,0.2);
    border: 2px solid var(--lllk-champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--lllk-spacing-sm);
    transition: all 0.3s var(--lllk-transition);
}

.lllk-video-placeholder:hover .lllk-video-play-icon {
    background: rgba(208,183,155,0.3);
    transform: scale(1.1);
}

.lllk-video-play-icon svg {
    width: 32px;
    height: 32px;
    margin-left: 5px;
    fill: var(--lllk-champagne);
}

.lllk-video-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(248, 246, 241, 0.7);
}

/* Newsletter Signup Component */
.lllk-newsletter {
    background: var(--lllk-charcoal);
    padding: var(--lllk-spacing-xl) var(--lllk-spacing-md);
}

.lllk-newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.lllk-newsletter-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 500;
    color: var(--lllk-cream);
    margin-bottom: var(--lllk-spacing-xs);
}

.lllk-newsletter-desc {
    font-size: 18px;
    color: rgba(248, 246, 241, 0.65);
    margin-bottom: var(--lllk-spacing-md);
}

.lllk-newsletter-form {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    justify-content: center;
}

.lllk-newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 17px 18px;
    background: rgba(248, 246, 241, 0.08);
    border: 1px solid rgba(248, 246, 241, 0.15);
    border-radius: var(--lllk-radius-sm);
    color: var(--lllk-cream);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s var(--lllk-transition);
}

.lllk-newsletter-input::placeholder {
    color: rgba(248, 246, 241, 0.4);
}

.lllk-newsletter-input:focus {
    outline: none;
    border-color: var(--lllk-champagne);
    background: rgba(248, 246, 241, 0.12);
}

.lllk-newsletter-submit {
    padding: 13px 34px;
    background: linear-gradient(145deg, var(--lllk-champagne) 0%, var(--lllk-gold-muted) 100%);
    color: var(--lllk-charcoal);
    border: none;
    border-radius: var(--lllk-radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: all 0.3s var(--lllk-transition);
}

.lllk-newsletter-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201,178,143,0.35);
}

/* Main Content Area */
.lllk-content {
    padding: var(--lllk-spacing-xl) 0;
}

.lllk-article {
    max-width: 760px;
    margin: 0 auto;
}

.lllk-intro-block {
    padding: var(--lllk-spacing-lg);
    background: var(--lllk-cream);
    border-left: 3px solid var(--lllk-champagne);
    border-radius: 0 var(--lllk-radius-md) var(--lllk-radius-md) 0;
    margin-bottom: var(--lllk-spacing-xl);
    box-shadow: 0 5px 20px var(--lllk-shadow-soft);
}

.lllk-intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--lllk-graphite);
}

.lllk-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--lllk-charcoal);
    margin: var(--lllk-spacing-xl) 0 var(--lllk-spacing-md);
    padding-bottom: var(--lllk-spacing-sm);
    border-bottom: 1px solid var(--lllk-border-light);
}

.lllk-subsection-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--lllk-charcoal);
    margin: var(--lllk-spacing-lg) 0 var(--lllk-spacing-sm);
}

.lllk-body-text {
    margin-bottom: var(--lllk-spacing-md);
    color: var(--lllk-graphite);
}

.lllk-feature-list {
    margin: var(--lllk-spacing-md) 0;
    padding-left: var(--lllk-spacing-md);
}

.lllk-feature-list li {
    margin-bottom: 12px;
    color: var(--lllk-graphite);
    padding-left: 5px;
}

.lllk-feature-list li::marker {
    color: var(--lllk-champagne);
}

.lllk-ordered-list {
    margin: var(--lllk-spacing-md) 0;
    padding-left: var(--lllk-spacing-md);
    counter-reset: rf-counter;
    list-style: none;
}

.lllk-ordered-list li {
    margin-bottom: var(--lllk-spacing-sm);
    color: var(--lllk-graphite);
    padding-left: 38px;
    position: relative;
}

.lllk-ordered-list li::before {
    counter-increment: rf-counter;
    content: counter(rf-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background: var(--lllk-champagne);
    color: var(--lllk-charcoal);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lllk-article-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--lllk-transition);
}

.lllk-image-block:hover .lllk-article-img {
    transform: scale(1.03);
}

/* Benefits Grid */
.lllk-benefits-area {
    margin: var(--lllk-spacing-xl) 0;
    padding: var(--lllk-spacing-xl);
    background: var(--lllk-pearl);
    border-radius: var(--lllk-radius-lg);
}

.lllk-benefits-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--lllk-charcoal);
    text-align: center;
    margin-bottom: var(--lllk-spacing-lg);
}

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

.lllk-benefit-card {
    background: var(--lllk-cream);
    padding: var(--lllk-spacing-md);
    border-radius: var(--lllk-radius-md);
    text-align: center;
    transition: all 0.4s var(--lllk-transition);
    border: 1px solid transparent;
}

.lllk-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--lllk-champagne);
    box-shadow: 0 8px 24px var(--lllk-shadow-soft);
}

.lllk-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--lllk-champagne) 0%, var(--lllk-gold-muted) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--lllk-spacing-sm);
}

.lllk-benefit-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--lllk-charcoal);
}

.lllk-benefit-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--lllk-charcoal);
    margin-bottom: 11px;
}

.lllk-benefit-desc {
    font-size: 15px;
    color: var(--lllk-slate);
    line-height: 1.6;
}

/* FAQ Accordion */
.lllk-faq-section {
    margin: var(--lllk-spacing-xl) 0;
    padding-top: var(--lllk-spacing-xl);
    border-top: 1px solid var(--lllk-border-light);
}

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

.lllk-faq-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--lllk-charcoal);
    margin-bottom: 8px;
}

.lllk-faq-subtitle {
    font-size: 13px;
    color: var(--lllk-slate);
}

.lllk-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lllk-faq-entry {
    background: var(--lllk-cream);
    border: 1px solid var(--lllk-border-light);
    border-radius: var(--lllk-radius-md);
    overflow: hidden;
    transition: all 0.3s var(--lllk-transition);
}

.lllk-faq-entry:hover {
    border-color: var(--lllk-champagne);
}

.lllk-faq-entry.expanded {
    border-color: var(--lllk-champagne);
    box-shadow: 0 4px 16px var(--lllk-shadow-soft);
}

.lllk-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--lllk-spacing-sm);
    padding: 18px 27px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.lllk-faq-question {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--lllk-charcoal);
}

.lllk-faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--lllk-pearl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--lllk-transition);
}

.lllk-faq-entry.expanded .lllk-faq-toggle {
    background: var(--lllk-champagne);
    transform: rotate(180deg);
}

.lllk-faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--lllk-charcoal);
}

.lllk-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--lllk-transition);
}

.lllk-faq-entry.expanded .lllk-faq-content {
    max-height: 600px;
}

.lllk-faq-answer {
    padding: 0 22px 27px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--lllk-graphite);
}

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

.lllk-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--lllk-spacing-lg);
    padding-bottom: var(--lllk-spacing-lg);
    border-bottom: 1px solid rgba(248, 246, 241, 0.1);
}

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

.lllk-footer-tagline {
    font-size: 14px;
    color: rgba(248, 246, 241, 0.6);
    line-height: 1.6;
}

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

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

.lllk-footer-links li {
    margin-bottom: 8px;
}

.lllk-footer-links a {
    color: rgba(248, 246, 241, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.lllk-footer-legal {
    padding-top: var(--lllk-spacing-md);
    text-align: center;
    font-size: 13px;
    color: rgba(248, 246, 241, 0.5);
}

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

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

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

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

.lllk-contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--lllk-champagne) 0%, var(--lllk-gold-muted) 100%);
    border-radius: var(--lllk-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lllk-contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--lllk-charcoal);
}

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

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

.lllk-form-container {
    background: var(--lllk-pearl);
    padding: var(--lllk-spacing-lg);
    border-radius: var(--lllk-radius-lg);
}

.lllk-form-field {
    margin-bottom: var(--lllk-spacing-md);
}

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

.lllk-form-input,
.lllk-form-select,
.lllk-form-textarea {
    width: 100%;
    padding: 11px 18px;
    background: var(--lllk-cream);
    border: 1px solid var(--lllk-border-light);
    border-radius: var(--lllk-radius-sm);
    font-family: inherit;
    font-size: 18px;
    color: var(--lllk-charcoal);
    transition: all 0.3s var(--lllk-transition);
}

.lllk-form-input:focus,
.lllk-form-select:focus,
.lllk-form-textarea:focus {
    outline: none;
    border-color: var(--lllk-champagne);
    box-shadow: 0 0 0 3px rgba(196,179,153,0.15);
}

.lllk-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.lllk-form-submit {
    width: 100%;
    padding: 19px;
    background: linear-gradient(145deg, var(--lllk-champagne) 0%, var(--lllk-gold-muted) 100%);
    color: var(--lllk-charcoal);
    border: none;
    border-radius: var(--lllk-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s var(--lllk-transition);
}

.lllk-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195,181,144,0.35);
}

.lllk-form-success {
    display: none;
    padding: var(--lllk-spacing-md);
    background: #e8f5e9;
    border: 1px solid #c4e4c2;
    border-radius: var(--lllk-radius-md);
    color: #33812d;
    text-align: center;
    margin-top: var(--lllk-spacing-sm);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .lllk-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .lllk-menu-btn {
        display: flex;
    }

    .lllk-hero-heading {
        font-size: 36px;
    }

    .lllk-hero-tagline {
        font-size: 16px;
    }

    .lllk-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .lllk-btn {
        justify-content: center;
    }

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

    .lllk-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--lllk-spacing-md);
    }

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

    .lllk-newsletter-input {
        min-width: auto;
    }

    .lllk-benefits-grid {
        grid-template-columns: 1fr;
    }

    .lllk-cta-text {
        font-size: 22px;
    }

    .lllk-video-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .lllk-hero {
        padding: var(--lllk-spacing-lg) 0;
    }

    .lllk-hero-heading {
        font-size: 30px;
    }

    .lllk-intro-block {
        padding: var(--lllk-spacing-md);
    }

    .lllk-intro-text {
        font-size: 17px;
    }

    .lllk-faq-question {
        font-size: 17px;
    }

    .lllk-faq-trigger {
        padding: 13px;
    }

    .lllk-faq-answer {
        padding: 0 18px 15px;
    }
}

/* ===========================================
   COMPANIES TABLE STYLES
   =========================================== */

.lllk-companies-table-wrapper {
    overflow-x: auto;
    margin: 33px 0;
    border-radius: var(--lllk-radius-lg);
    box-shadow: 0 9px 30px var(--lllk-shadow-medium);
}

.lllk-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--lllk-cream);
    font-size: 15px;
}

.lllk-companies-table thead {
    background: linear-gradient(135deg, var(--lllk-charcoal) 0%, var(--lllk-graphite) 100%);
}

.lllk-companies-table thead th {
    padding: 18px 13px;
    text-align: left;
    color: var(--lllk-pearl);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lllk-companies-table tbody tr {
    border-bottom: 1px solid var(--lllk-border-light);
    transition: background 0.25s var(--lllk-transition);
}

.lllk-companies-table tbody tr:hover {
    background: var(--lllk-pearl);
}

.lllk-companies-table tbody td {
    padding: 17px;
    vertical-align: middle;
}

.lllk-rank-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, var(--lllk-champagne), var(--lllk-gold-muted));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--lllk-charcoal);
    font-size: 14px;
    box-shadow: 0 3px 10px var(--lllk-shadow-soft);
}

.lllk-company-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--lllk-charcoal);
}

.lllk-company-subtitle {
    font-size: 13px;
    color: var(--lllk-slate);
    margin-top: 3px;
}

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

.lllk-star-full {
    color: #f5dc0a !important;
    font-size: 18px;
}

.lllk-star-empty {
    color: #d6ddde !important;
    font-size: 18px;
}

.lllk-bbb-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #2ba565 0%, #27c467 100%);
    color: white;
    padding: 7px 11px;
    border-radius: var(--lllk-radius-sm);
    font-weight: 600;
    font-size: 16px;
}

.lllk-btn-review {
    display: inline-block;
    padding: 13px 22px;
    background: linear-gradient(145deg, var(--lllk-champagne), var(--lllk-gold-muted));
    color: var(--lllk-charcoal);
    text-decoration: none;
    border-radius: var(--lllk-radius-md);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.25s var(--lllk-transition);
    box-shadow: 0 4px 15px var(--lllk-shadow-soft);
}

.lllk-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--lllk-shadow-medium);
}

/* Review Page Styles */
.lllk-review-header {
    background: linear-gradient(135deg, var(--lllk-charcoal) 0%, var(--lllk-graphite) 100%);
    padding: 61px 0;
    margin-bottom: 38px;
}

.lllk-review-company-title {
    font-size: 42px;
    color: var(--lllk-pearl);
    margin-bottom: 16px;
}

.lllk-review-rating-box {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: rgba(194,190,152,0.15);
    padding: 18px 23px;
    border-radius: var(--lllk-radius-md);
    border: 2px solid var(--lllk-border-light);
}

.lllk-review-score {
    font-size: 36px;
    font-weight: 700;
    color: var(--lllk-champagne);
}

.lllk-review-stars {
    display: flex;
    gap: 3px;
    font-size: 27px;
}

.lllk-pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 37px 0;
}

.lllk-pros-card,
.lllk-cons-card {
    padding: 26px;
    border-radius: var(--lllk-radius-lg);
    background: var(--lllk-cream);
    box-shadow: 0 6px 24px var(--lllk-shadow-soft);
}

.lllk-pros-card {
    border-top: 4px solid #2aac5c;
}

.lllk-cons-card {
    border-top: 4px solid #df503d;
}

.lllk-pros-title,
.lllk-cons-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lllk-pros-title {
    color: #28b366;
}

.lllk-cons-title {
    color: #de433a;
}

.lllk-pros-list,
.lllk-cons-list {
    list-style: none;
    padding: 0;
}

.lllk-pros-list li,
.lllk-cons-list li {
    padding: 7px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--lllk-border-light);
}

.lllk-pros-list li:last-child,
.lllk-cons-list li:last-child {
    border-bottom: none;
}

.lllk-pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27a663;
    font-weight: 700;
}

.lllk-cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dd4a43;
    font-weight: 700;
}

.lllk-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 27px 0;
    background: var(--lllk-cream);
    border-radius: var(--lllk-radius-lg);
    overflow: hidden;
    box-shadow: 0 7px 22px var(--lllk-shadow-soft);
}

.lllk-fee-table thead {
    background: linear-gradient(135deg, var(--lllk-charcoal) 0%, var(--lllk-graphite) 100%);
}

.lllk-fee-table thead th {
    padding: 19px 20px;
    text-align: left;
    color: var(--lllk-pearl);
    font-weight: 600;
}

.lllk-fee-table tbody td {
    padding: 11px 22px;
    border-bottom: 1px solid var(--lllk-border-light);
}

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

.lllk-cta-box {
    background: linear-gradient(145deg, var(--lllk-champagne), var(--lllk-gold-muted));
    padding: 43px;
    border-radius: var(--lllk-radius-lg);
    text-align: center;
    margin: 41px 0;
    box-shadow: 0 6px 35px var(--lllk-shadow-medium);
}

.lllk-cta-title {
    font-size: 28px;
    color: var(--lllk-charcoal);
    margin-bottom: 13px;
}

.lllk-cta-text {
    color: var(--lllk-graphite);
    margin-bottom: 26px;
    font-size: 16px;
}

.lllk-cta-btn {
    display: inline-block;
    padding: 19px 41px;
    background: var(--lllk-charcoal);
    color: var(--lllk-pearl);
    text-decoration: none;
    border-radius: var(--lllk-radius-md);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s var(--lllk-transition);
    box-shadow: 0 4px 15px var(--lllk-shadow-medium);
}

.lllk-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--lllk-shadow-medium);
}

/* Companies Table Responsive */
@media (max-width: 768px) {
    .lllk-companies-table {
        font-size: 14px;
    }

    .lllk-companies-table thead th,
    .lllk-companies-table tbody td {
        padding: 10px 13px;
    }

    .lllk-btn-review {
        padding: 10px 13px;
        font-size: 15px;
    }

    .lllk-pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .lllk-review-company-title {
        font-size: 32px;
    }

    .lllk-review-score {
        font-size: 28px;
    }
}


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

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

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

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

    .lllk-companies-section .lllk-companies-table tbody tr.lllk-company-row {
        background: #fff !important;
        margin-bottom: 18px !important;
        border-radius: 19px !important;
        box-shadow: 0 4px 21px rgba(84,22,52,0.1) !important;
        padding: 22px !important;
        border: 1px solid rgba(99,32,44,0.08);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


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

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

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


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

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

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

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

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


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


.lllk-logo-text {
    display: inline-block !important; font-size: 16px; font-weight: 700; color: #142f53; vertical-align: middle; margin-left: 3px;
}
.lllk-logo-text-DISABLED {
    display: none !important;
}

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

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

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

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

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


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

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

.lllk-star-half { color: #f5d60a !important; font-size: 18px; }
