/* NEC Timeless Style - Auto-themed */
:root {
    --llaf-primary: #141836;
    --llaf-accent: #f5c720;
    --llaf-gold: #f5c01b;
    --llaf-gold-light: #877fdf;
    --llaf-gold-dark: #5256a9;
    --llaf-bg: #FAFAFE;
    --llaf-bg-white: #ffffff;
    --llaf-text: #191f33;
    --llaf-text-light: #f5ba24;
    --llaf-border: #d1d1f5;
    --llaf-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --llaf-shadow-hover: rgba(0, 0, 0, 0.12);
    --llaf-success: #537452;
    --llaf-danger: #c56063;
}

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

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--llaf-text);
    background: var(--llaf-bg);
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(202,172,92,0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(145,107,85,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(208,167,89,0.008) 2px, rgba(205,173,98,0.008) 4px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.llaf-content-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* Scroll Indicator */
.llaf-scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--llaf-gold) 0%, var(--llaf-gold-light) 50%, var(--llaf-gold-dark) 100%);
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(206,166,90,0.5);
}

.llaf-scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: llaf-shimmer 2s infinite;
}

@keyframes llaf-shimmer {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(20px); opacity: 0; }
}

/* Header */
.llaf-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--llaf-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(22px) saturate(180%);
    box-shadow: 0 3px 23px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.llaf-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--llaf-gold) 20%, var(--llaf-gold-light) 50%, var(--llaf-gold) 80%, transparent);
    opacity: 0.6;
    animation: llaf-header-glow 3s ease-in-out infinite;
}

@keyframes llaf-header-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.llaf-header-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding: 20px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.llaf-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--llaf-primary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.4px;
}

.llaf-logo-mark {
    width: 39px;
    height: 40px;
    background: linear-gradient(135deg, var(--llaf-gold) 0%, var(--llaf-gold-light) 50%, var(--llaf-gold-dark) 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--llaf-bg-white);
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(199,163,101,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.llaf-logo-mark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: llaf-logo-shine 3s infinite;
}

@keyframes llaf-logo-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.llaf-logo-link:hover .llaf-logo-mark {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(198,168,94,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.llaf-logo-text {
    font-weight: 600;
}

.llaf-nav-menu {
    display: flex;
    gap: 37px;
    align-items: center;
}

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

.llaf-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--llaf-gold);
    transition: width 0.3s ease;
}

.llaf-nav-item:hover,
.llaf-nav-item--active {
    color: var(--llaf-gold);
}

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

.llaf-menu-button {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 11px;
}

.llaf-menu-bar {
    width: 23px;
    height: 2px;
    background: var(--llaf-primary);
    transition: all 0.3s ease;
}

.llaf-menu-button.active .llaf-menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.llaf-menu-button.active .llaf-menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.llaf-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 17px 31px;
    background: var(--llaf-bg-white);
    border-top: 1px solid var(--llaf-border);
}

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

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

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

/* Hero Section */
.llaf-hero-section {
    background: linear-gradient(135deg, #101322 0%, #2a3026 30%, #181f16 50%, #2e2d30 70%, #12171b 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.llaf-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(204,163,99,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139,115,80,0.08) 0%, transparent 50%);
    animation: llaf-hero-pulse 4s ease-in-out infinite;
}

.llaf-hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(202,175,100,0.02) 100px,
        rgba(207,168,89,0.02) 200px
    );
    animation: llaf-hero-drift 20s linear infinite;
}

@keyframes llaf-hero-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes llaf-hero-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.llaf-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

.llaf-hero-label {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(208,174,98,0.18);
    border: 2px solid rgba(205,164,90,0.4);
    border-radius: 33px;
    font-size: 11px;
    font-weight: 700;
    color: var(--llaf-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 33px;
    box-shadow: 0 4px 18px rgba(206,169,103,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: llaf-badge-glow 3s ease-in-out infinite;
}

.llaf-hero-label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: llaf-badge-shine 3s infinite;
}

@keyframes llaf-badge-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(193,174,96,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 6px 25px rgba(199,170,93,0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
}

@keyframes llaf-badge-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.llaf-hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 30px 0;
    color: #ffffff;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(198,171,91,0.2);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--llaf-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: llaf-title-glow 3s ease-in-out infinite;
}

@keyframes llaf-title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

.llaf-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.llaf-hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.llaf-button {
    display: inline-flex;
    align-items: center;
    padding: 11px 35px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.llaf-button--primary {
    background: linear-gradient(135deg, var(--llaf-gold) 0%, var(--llaf-gold-light) 50%, var(--llaf-gold-dark) 100%);
    color: var(--llaf-primary);
    box-shadow: 0 6px 20px rgba(204,170,92,0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.llaf-button--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.llaf-button--primary:hover::before {
    left: 100%;
}

.llaf-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(207,171,97,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.llaf-button--secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.llaf-button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Main Content */
.llaf-main-content {
    padding: 61px 0;
}

.llaf-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 53px;
    position: relative;
}

.llaf-article-content {
    max-width: 800px;
}

.llaf-article-intro {
    margin-bottom: 47px;
    padding: 43px;
    background: linear-gradient(135deg, var(--llaf-bg-white) 0%, #fefefe 100%);
    border-radius: 11px;
    border-left: 4px solid var(--llaf-gold);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(193,162,101,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.llaf-article-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(199,173,102,0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.llaf-article-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--llaf-gold), var(--llaf-gold-light), transparent);
    opacity: 0.5;
}

.llaf-lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--llaf-text);
    margin-bottom: 20px;
    font-weight: 400;
}

.llaf-article-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--llaf-primary) 0%, var(--llaf-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 62px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 23px;
}

.llaf-article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--llaf-gold), var(--llaf-gold-light), transparent);
    border-radius: 3px;
}

.llaf-article-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--llaf-primary);
    margin: 39px 0 20px 0;
}

.llaf-article-content p {
    margin-bottom: 21px;
    line-height: 1.9;
    color: var(--llaf-text);
    position: relative;
    padding-left: 19px;
}

.llaf-article-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background: var(--llaf-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(200,163,94,0.4);
    opacity: 0.6;
}

.llaf-article-content p:first-of-type::before {
    display: none;
}

.llaf-article-content p:first-of-type {
    padding-left: 0;
}

.llaf-image-container {
    margin: 53px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    border: 2px solid rgba(204,173,100,0.15);
    background: var(--llaf-bg-white);
    transition: all 0.4s ease;
}

.llaf-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--llaf-gold), var(--llaf-gold-light), var(--llaf-gold-dark), var(--llaf-gold));
    border-radius: 11px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: llaf-border-pulse 3s ease-in-out infinite;
}

@keyframes llaf-border-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.2; }
}

.llaf-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(202,169,97,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(208,168,98,0.3);
}

.llaf-image-container:hover::before {
    opacity: 0.3;
}

.llaf-content-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    opacity: 0;
    animation: llaf-image-fade-in 0.6s ease forwards;
}

.llaf-content-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.llaf-content-image[loading="lazy"].loaded {
    opacity: 1;
}

@keyframes llaf-image-fade-in {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.llaf-image-container:hover .llaf-content-image {
    transform: scale(1.03);
}

.llaf-numbered-list {
    margin: 38px 0;
    padding-left: 31px;
    position: relative;
}

.llaf-numbered-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--llaf-gold), var(--llaf-gold-light), var(--llaf-gold-dark));
    border-radius: 3px;
    opacity: 0.4;
}

.llaf-numbered-list li {
    margin-bottom: 20px;
    line-height: 1.85;
    color: var(--llaf-text);
    padding-left: 11px;
    position: relative;
    transition: all 0.3s ease;
}

.llaf-numbered-list li::marker {
    color: var(--llaf-gold);
    font-weight: 700;
}

.llaf-numbered-list li:hover {
    color: var(--llaf-primary);
    transform: translateX(4px);
}

/* Sticky Sidebar Widget */
.llaf-sticky-widget {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, var(--llaf-bg-white) 0%, #fefefe 100%);
    border: 2px solid var(--llaf-border);
    border-radius: 11px;
    padding: 30px;
    box-shadow: 
        0 9px 25px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(206,164,103,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.llaf-sticky-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--llaf-gold), var(--llaf-gold-light), var(--llaf-gold));
    opacity: 0.8;
}

.llaf-widget-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--llaf-gold);
    color: var(--llaf-primary);
    padding: 5px 17px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.llaf-widget-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 15px 0 19px 0;
    color: var(--llaf-primary);
}

.llaf-widget-rating {
    text-align: center;
    margin-bottom: 22px;
}

.llaf-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 8px;
}

.llaf-star {
    font-size: 21px;
    color: #dfd4d8;
}

.llaf-star--filled {
    color: var(--llaf-gold);
}

.llaf-rating-text {
    font-size: 13px;
    color: var(--llaf-text-light);
}

.llaf-widget-features {
    list-style: none;
    padding: 0;
    margin: 0 0 21px 0;
}

.llaf-widget-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 11px 0;
    border-bottom: 1px solid var(--llaf-border);
    font-size: 14px;
}

.llaf-widget-feature:last-child {
    border-bottom: none;
}

.llaf-feature-icon {
    color: var(--llaf-gold);
    font-weight: 700;
    font-size: 16px;
}

.llaf-widget-button {
    display: block;
    width: 100%;
    padding: 19px;
    background: linear-gradient(135deg, var(--llaf-gold) 0%, var(--llaf-gold-light) 50%, var(--llaf-gold-dark) 100%);
    color: var(--llaf-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.4s ease;
    box-shadow: 
        0 4px 15px rgba(196,175,104,0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.llaf-widget-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.llaf-widget-button:hover::before {
    left: 100%;
}

.llaf-widget-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 6px 25px rgba(199,164,94,0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.llaf-widget-trust {
    display: flex;
    justify-content: center;
    gap: 17px;
    margin-top: 23px;
    padding-top: 19px;
    border-top: 1px solid var(--llaf-border);
}

.llaf-trust-item {
    font-size: 11px;
    color: var(--llaf-text-light);
    text-align: center;
}

.llaf-trust-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

/* Features Section */
.llaf-features-section {
    margin: 72px 0;
    padding: 57px 0;
    background: linear-gradient(135deg, var(--llaf-bg-white) 0%, #fefefe 50%, var(--llaf-bg-white) 100%);
    border-radius: 19px;
    box-shadow: 
        0 7px 28px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(198,165,92,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204,164,89,0.1);
}

.llaf-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,170,97,0.04) 0%, transparent 70%);
    animation: llaf-features-float 10s ease-in-out infinite;
}

@keyframes llaf-features-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.llaf-features-header {
    text-align: center;
    margin-bottom: 49px;
}

.llaf-features-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--llaf-primary);
    margin-bottom: 13px;
}

.llaf-features-subtitle {
    font-size: 17px;
    color: var(--llaf-text-light);
}

.llaf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 0 34px;
}

.llaf-feature-card {
    padding: 33px;
    background: linear-gradient(135deg, var(--llaf-bg-white) 0%, #fafafa 100%);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--llaf-border);
    position: relative;
    overflow: hidden;
}

.llaf-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--llaf-gold), var(--llaf-gold-light), var(--llaf-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.llaf-feature-card:hover::before {
    transform: scaleX(1);
}

.llaf-feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(207,166,98,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--llaf-gold);
}

.llaf-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--llaf-gold) 0%, var(--llaf-gold-light) 50%, var(--llaf-gold-dark) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--llaf-primary);
    box-shadow: 
        0 6px 20px rgba(205,161,103,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.llaf-feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--llaf-gold-light), var(--llaf-gold-dark));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.llaf-feature-card:hover .llaf-feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(195,176,104,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.llaf-feature-card:hover .llaf-feature-icon::after {
    opacity: 0.3;
}

.llaf-feature-icon svg {
    width: 28px;
    height: 28px;
}

.llaf-feature-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--llaf-primary);
    margin-bottom: 13px;
}

.llaf-feature-text {
    font-size: 15px;
    color: var(--llaf-text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.llaf-testimonials-section {
    margin: 63px 0;
    padding: 52px 0;
}

.llaf-testimonials-header {
    text-align: center;
    margin-bottom: 47px;
}

.llaf-testimonials-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--llaf-primary);
    margin-bottom: 11px;
}

.llaf-testimonials-subtitle {
    font-size: 17px;
    color: var(--llaf-text-light);
}

.llaf-testimonials-slider {
    display: flex;
    overflow: hidden;
    margin-bottom: 31px;
}

.llaf-testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.llaf-testimonial-card {
    background: linear-gradient(135deg, var(--llaf-bg-white) 0%, #fefefe 100%);
    border-radius: 15px;
    padding: 47px;
    box-shadow: 
        0 5px 28px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(194,161,94,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid rgba(200,173,99,0.15);
    position: relative;
    overflow: hidden;
}

.llaf-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--llaf-gold), var(--llaf-gold-light), var(--llaf-gold));
    opacity: 0.6;
}

.llaf-testimonial-quote {
    font-size: 48px;
    color: var(--llaf-gold);
    line-height: 1;
    margin-bottom: 19px;
    font-family: 'Cormorant Garamond', serif;
}

.llaf-testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--llaf-text);
    margin-bottom: 22px;
    font-style: italic;
}

.llaf-testimonial-author {
    display: flex;
    align-items: center;
    gap: 17px;
}

.llaf-author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--llaf-gold) 0%, var(--llaf-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--llaf-primary);
    font-weight: 700;
    font-size: 20px;
}

.llaf-author-info {
    flex: 1;
}

.llaf-author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--llaf-primary);
}

.llaf-author-role {
    color: var(--llaf-text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.llaf-author-rating {
    color: var(--llaf-gold);
    font-size: 14px;
}

.llaf-testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.llaf-testimonial-dot {
    width: 15px;
    height: 12px;
    border-radius: 50%;
    background: #d6e2d3;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.llaf-testimonial-dot--active {
    background: var(--llaf-gold);
    transform: scale(1.2);
}

/* FAQ Section */
.llaf-faq-section {
    margin: 57px 0;
}

.llaf-faq-header {
    text-align: center;
    margin-bottom: 53px;
}

.llaf-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--llaf-primary);
    margin-bottom: 10px;
}

.llaf-faq-subtitle {
    font-size: 18px;
    color: var(--llaf-text-light);
}

.llaf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.llaf-faq-item {
    background: linear-gradient(135deg, var(--llaf-bg-white) 0%, #fefefe 100%);
    border: 2px solid var(--llaf-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.llaf-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--llaf-gold), var(--llaf-gold-light), var(--llaf-gold-dark));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.llaf-faq-item.active::before {
    transform: scaleY(1);
}

.llaf-faq-item.active {
    border-color: var(--llaf-gold);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(204,168,97,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.llaf-faq-item:hover {
    transform: translateX(4px);
    border-color: rgba(202,163,98,0.5);
}

.llaf-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 25px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

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

.llaf-faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--llaf-primary);
    line-height: 1.4;
}

.llaf-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(207,169,95,0.1);
    border-radius: 50%;
    color: var(--llaf-gold);
    transition: all 0.3s ease;
}

.llaf-faq-item.active .llaf-faq-icon {
    transform: rotate(180deg);
    background: var(--llaf-gold);
    color: var(--llaf-primary);
}

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

.llaf-faq-item.active .llaf-faq-answer {
    max-height: 1000px;
}

.llaf-faq-answer-content {
    padding: 0 27px 22px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--llaf-text);
}

.llaf-faq-answer-content p {
    margin-bottom: 12px;
}

/* Footer */
.llaf-footer {
    background: linear-gradient(135deg, #102211 0%, #2d2e30 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 63px 0 32px;
    margin-top: 77px;
}

.llaf-footer-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding: 0 31px;
}

.llaf-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 41px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.llaf-footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 13px;
}

.llaf-footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.llaf-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.llaf-footer-links {
    list-style: none;
    padding: 0;
}

.llaf-footer-links li {
    margin-bottom: 11px;
}

.llaf-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.llaf-footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    padding-top: 22px;
}

.llaf-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(193,175,94,0.3), transparent);
}

/* Responsive */
@media (max-width: 992px) {
    .llaf-article-layout {
        grid-template-columns: 1fr;
    }
    
    .llaf-sticky-widget {
        position: relative;
        top: 0;
        margin-top: 38px;
    }
    
    .llaf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .llaf-nav-menu {
        display: none;
    }

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

    .llaf-hero-description {
        font-size: 16px;
    }

    .llaf-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .llaf-button {
        width: 100%;
        justify-content: center;
    }

    .llaf-article-content h2 {
        font-size: 28px;
    }

    .llaf-features-grid {
        grid-template-columns: 1fr;
        padding: 0 17px;
    }

    .llaf-features-title,
    .llaf-faq-title,
    .llaf-testimonials-title {
        font-size: 28px;
    }

    .llaf-faq-question {
        padding: 19px;
    }

    .llaf-faq-answer-content {
        padding: 0 18px 21px;
    }
}

/* Additional Decorative Elements */
.llaf-decorative-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Animations */
@keyframes llaf-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.llaf-article-content > * {
    animation: llaf-fade-in-up 0.6s ease forwards;
}

/* Performance Optimizations */
.llaf-content-image {
    will-change: transform;
}

.llaf-feature-card,
.llaf-faq-item,
.llaf-testimonial-card {
    will-change: transform;
}

/* Print Styles */
@media print {
    .llaf-header,
    .llaf-footer,
    .llaf-sticky-widget,
    .llaf-hero-section {
        display: none;
    }
    
    .llaf-article-content {
        max-width:100%;
    }
}




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

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

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

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

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

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

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

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

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

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


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

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