/* Rolls-Royce Timeless Style - Auto-themed */
:root {
    --lgbe-primary: #351519;
    --lgbe-accent: #f57281;
    --lgbe-gold: #f56c7b;
    --lgbe-gold-light: #7c83de;
    --lgbe-gold-dark: #5951a8;
    --lgbe-bg: #FAFAFE;
    --lgbe-bg-dark: #0f0f0f;
    --lgbe-bg-gradient: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
    --lgbe-text: #2a1411;
    --lgbe-text-light: #f5728c;
    --lgbe-border: #cecdf5;
    --lgbe-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --lgbe-shadow-hover: rgba(0, 0, 0, 0.15);
    --lgbe-shadow-gold: rgba(245,115,127,0.25);
    --lgbe-success: #2da53c;
    --lgbe-danger: #da2e4b;
    --lgbe-overlay: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.8;
    color: var(--lgbe-text);
    background: var(--lgbe-bg);
    background-image: 
        radial-gradient(ellipse 1200px 800px at 15% 40%, rgba(245,112,126,0.035) 0%, transparent 60%),
        radial-gradient(ellipse 1000px 700px at 85% 60%, rgba(205,174,97,0.025) 0%, transparent 55%),
        radial-gradient(ellipse 800px 600px at 50% 20%, rgba(245,109,125,0.015) 0%, transparent 50%),
        linear-gradient(180deg, #fafafa 0%, #ffffff 30%, #f8f8f8 60%, #ffffff 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(245,115,140,0.012) 4px, rgba(245,105,132,0.012) 8px),
        repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(193,168,103,0.008) 4px, rgba(194,174,95,0.008) 8px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 2px at 20% 30%, rgba(245,108,138,0.1) 0%, transparent 50%),
        radial-gradient(circle 2px at 80% 70%, rgba(200,171,94,0.08) 0%, transparent 50%),
        radial-gradient(circle 1.5px at 50% 50%, rgba(245,105,137,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: lgbe-sparkle 8s ease-in-out infinite;
}

@keyframes lgbe-sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

.lgbe-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Price Ticker */
.lgbe-ticker {
    background: linear-gradient(135deg, #1b121a 0%, #223227 50%, #1a1a14 100%);
    color: #ffffff;
    padding: 15px 0;
    border-bottom: 2px solid rgba(245,111,129,0.3);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.lgbe-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), transparent);
    animation: lgbe-shimmer 4s infinite;
}

@keyframes lgbe-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.lgbe-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    padding: 0 31px;
}

.lgbe-ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    padding: 7px 23px;
    border-radius: 5px;
    transition: all 0.4s;
    position: relative;
}

.lgbe-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245,108,136,0.08);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.4s;
}

.lgbe-ticker-item:hover::before {
    opacity: 1;
}

.lgbe-ticker-item:hover {
    transform: translateY(-1px);
}

.lgbe-ticker-metal {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.lgbe-ticker-price {
    font-size: 19px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--lgbe-gold), var(--lgbe-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.lgbe-ticker-change {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}

.lgbe-ticker-change svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.lgbe-ticker-change--up {
    color: var(--lgbe-success);
}

.lgbe-ticker-change--down {
    color: var(--lgbe-danger);
}

.lgbe-ticker-separator {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
}

.lgbe-ticker-update {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
}

.lgbe-ticker-live {
    width: 7px;
    height: 7px;
    background: var(--lgbe-success);
    border-radius: 50%;
    display: inline-block;
    animation: lgbe-pulse 2.5s infinite;
}

@keyframes lgbe-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Header */
.lgbe-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-bottom: 1px solid var(--lgbe-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(26px) saturate(180%);
    box-shadow: 0 2px 28px rgba(0, 0, 0, 0.06);
    position: relative;
}

.lgbe-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), transparent);
}

.lgbe-header-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 23px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lgbe-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--lgbe-primary);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.lgbe-logo-icon {
    width: 45px;
    height: 42px;
    background: linear-gradient(135deg, 
        var(--lgbe-gold) 0%, 
        var(--lgbe-gold-light) 25%, 
        var(--lgbe-gold) 50%, 
        var(--lgbe-gold-light) 75%, 
        var(--lgbe-gold-dark) 100%);
    background-size: 200% 200%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lgbe-primary);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 
        0 4px 15px var(--lgbe-shadow-gold),
        0 2px 6px rgba(245,120,132,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: lgbe-logo-shine 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes lgbe-logo-shine {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.lgbe-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: lgbe-rotate 4s infinite;
}

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

.lgbe-logo-text {
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-nav {
    display: flex;
    gap: 41px;
    align-items: center;
}

.lgbe-nav-link {
    color: var(--lgbe-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 6px 19px;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,119,137,0.08), rgba(197,166,93,0.05));
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.lgbe-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), transparent);
    border-radius: 1px;
    transition: transform 0.4s;
}

.lgbe-nav-link:hover {
    color: var(--lgbe-gold);
    transform: translateY(-1px);
}

.lgbe-nav-link:hover::before {
    opacity: 1;
}

.lgbe-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.lgbe-nav-link--active {
    color: var(--lgbe-gold);
    background: linear-gradient(135deg, rgba(245,116,128,0.12), rgba(203,162,100,0.08));
    box-shadow: 0 1px 8px rgba(245,113,127,0.15);
}

.lgbe-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), var(--lgbe-gold-light), var(--lgbe-gold), transparent);
    height: 2px;
}

.lgbe-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 13px;
}

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

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

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

.lgbe-menu-line {
    width: 26px;
    height: 2px;
    background: var(--lgbe-primary);
    transition: all 0.3s ease;
}

.lgbe-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 22px 31px;
    background: var(--lgbe-bg);
    border-top: 1px solid var(--lgbe-border);
}

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

.lgbe-mobile-link {
    padding: 11px 0;
    color: var(--lgbe-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--lgbe-border);
    font-family: 'Cormorant Garamond', serif;
}

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

/* Breadcrumb */
.lgbe-breadcrumb {
    padding: 23px 0;
    font-size: 12px;
    color: var(--lgbe-text-light);
    font-family: 'Inter', sans-serif;
}

.lgbe-breadcrumb a {
    color: var(--lgbe-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.lgbe-breadcrumb a:hover {
    color: var(--lgbe-gold);
}

.lgbe-breadcrumb-separator {
    margin: 0 11px;
    color: var(--lgbe-text-light);
}

.lgbe-breadcrumb-current {
    color: var(--lgbe-text);
    font-weight: 500;
}

/* Hero Section */
.lgbe-hero {
    background: linear-gradient(135deg, 
        #1e181d 0%, 
        #24242a 20%, 
        #222518 35%, 
        #302a31 50%, 
        #1b2321 65%, 
        #312a23 80%, 
        #151120 100%);
    color: #ffffff;
    padding: 140px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 -50px 100px rgba(0, 0, 0, 0.3),
        inset 0 50px 100px rgba(245,109,126,0.05);
}

.lgbe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 1400px 900px at 25% 35%, rgba(245,116,134,0.15) 0%, transparent 55%),
        radial-gradient(ellipse 1200px 800px at 75% 65%, rgba(208,162,89,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 50% 20%, rgba(245,112,133,0.08) 0%, transparent 45%);
    animation: lgbe-pulse 6s ease-in-out infinite;
    filter: blur(3px);
}

.lgbe-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(245,119,132,0.025) 120px,
            rgba(245,109,140,0.025) 240px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 100px,
            rgba(196,171,95,0.015) 100px,
            rgba(193,161,102,0.015) 200px
        );
    animation: lgbe-drift 30s linear infinite;
    opacity: 0.7;
}

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

.lgbe-hero-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 26px;
    position: relative;
    z-index: 2;
}

.lgbe-hero-badge {
    display: inline-block;
    padding: 15px 32px;
    background: linear-gradient(135deg, rgba(244,112,130,0.18) 0%, rgba(199,174,101,0.12) 100%);
    border: 1px solid rgba(245,108,129,0.35);
    border-radius: 42px;
    font-size: 9px;
    font-weight: 600;
    color: var(--lgbe-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    box-shadow: 0 2px 19px rgba(245,115,128,0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

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

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

.lgbe-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 30px 0;
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 18px rgba(245,108,126,0.25);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--lgbe-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: lgbe-title-glow 4s ease-in-out infinite;
}

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

.lgbe-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 44px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.lgbe-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 39px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-btn-primary {
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-light) 50%, var(--lgbe-gold-dark) 100%);
    color: var(--lgbe-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 22px rgba(245,105,125,0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

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

.lgbe-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(245,107,140,0.5),
        0 6px 20px rgba(245,114,131,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    animation-duration: 2s;
}

.lgbe-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.lgbe-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s;
}

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

.lgbe-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Trust Badges */
.lgbe-trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 48px 0;
    border-top: 1px solid rgba(245,116,135,0.15);
    border-bottom: 1px solid rgba(245,107,126,0.15);
    position: relative;
    overflow: hidden;
}

.lgbe-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 51px;
    flex-wrap: wrap;
    padding: 0 28px;
}

.lgbe-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 24px 29px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.75) 50%, 
        rgba(250, 250, 250, 0.8) 100%);
    border-radius: 17px;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(245,106,140,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(245,109,130,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.lgbe-trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.lgbe-trust-badge:hover::before {
    left: 100%;
}

.lgbe-trust-badge:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 6px 18px rgba(245,112,137,0.2),
        0 0 0 1px rgba(245,118,136,0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(245,115,135,0.4);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
}

.lgbe-trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-light) 50%, var(--lgbe-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lgbe-primary);
    font-size: 22px;
    box-shadow: 0 4px 15px var(--lgbe-shadow-gold);
}

.lgbe-trust-text {
    font-size: 13px;
    color: var(--lgbe-text);
    font-weight: 500;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Phone CTA */
.lgbe-phone-cta {
    background: linear-gradient(135deg, 
        var(--lgbe-gold) 0%, 
        var(--lgbe-gold-light) 25%, 
        var(--lgbe-gold) 50%, 
        var(--lgbe-gold-light) 75%, 
        var(--lgbe-gold-dark) 100%);
    padding: 40px 39px;
    border-radius: 19px;
    margin: 49px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 
        0 13px 40px rgba(245,108,133,0.35),
        0 6px 20px rgba(245,114,132,0.25),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lgbe-phone-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 80%);
    animation: lgbe-rotate-slow 18s linear infinite;
    opacity: 0.7;
}

.lgbe-phone-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 21px);
    pointer-events: none;
    border-radius: 13px;
}

@keyframes lgbe-rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lgbe-phone-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.lgbe-phone-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--lgbe-primary);
    margin-bottom: 7px;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-phone-subtitle {
    font-size: 15px;
    color: rgba(22,27,28,0.7);
    font-family: 'Inter', sans-serif;
}

.lgbe-phone-button {
    padding: 17px 32px;
    background: var(--lgbe-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 11px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

.lgbe-phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #0f0f0f;
}

.lgbe-phone-button svg {
    width: 18px;
    height: 18px;
}

/* Star Rating Component */
.lgbe-rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 39px 0;
    border-top: 2px solid rgba(245,116,126,0.15);
    border-bottom: 1px solid rgba(245,107,133,0.15);
    position: relative;
    overflow: hidden;
}

.lgbe-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.75);
    padding: 23px 45px;
    border-radius: 48px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245,116,139,0.15);
    position: relative;
    z-index: 1;
}

.lgbe-rating-label {
    font-size: 13px;
    color: var(--lgbe-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Inter', sans-serif;
}

.lgbe-stars {
    display: flex;
    gap: 5px;
}

.lgbe-star {
    font-size: 24px;
    color: #e1dddf;
}

.lgbe-star--filled {
    color: var(--lgbe-gold);
    text-shadow: 0 0 8px rgba(245,106,130,0.4);
    animation: lgbe-star-twinkle 2.5s ease-in-out infinite;
}

@keyframes lgbe-star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.lgbe-rating-number {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--lgbe-primary), var(--lgbe-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 13px;
    font-family: 'Inter', sans-serif;
}

.lgbe-rating-number::before,
.lgbe-rating-number::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), transparent);
}

.lgbe-rating-number::before {
    left: -32px;
}

.lgbe-rating-number::after {
    right: -32px;
}

.lgbe-rating-reviews {
    font-size: 13px;
    color: var(--lgbe-text-light);
    font-family: 'Inter', sans-serif;
}

/* Section Dividers */
.lgbe-section-divider {
    height: 110px;
    position: relative;
    margin: 85px 0;
    overflow: hidden;
}

.lgbe-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(245,113,138,0.15) 20%, 
        var(--lgbe-gold) 50%, 
        rgba(245,119,129,0.15) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.lgbe-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--lgbe-gold), var(--lgbe-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--lgbe-primary);
    box-shadow: 
        0 0 25px rgba(243,109,137,0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

/* Main Content */
.lgbe-main {
    padding: 68px 0;
    position: relative;
}

.lgbe-article {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.lgbe-article::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--lgbe-gold) 10%, 
        var(--lgbe-gold-light) 50%, 
        var(--lgbe-gold) 90%, 
        transparent
    );
    border-radius: 2px;
    opacity: 0.25;
}

@media (max-width: 768px) {
    .lgbe-article::before {
        display: none;
    }
}

.lgbe-intro {
    margin-bottom: 57px;
    padding: 29px;
    background: linear-gradient(135deg, rgba(245,112,135,0.04) 0%, rgba(197,174,91,0.02) 100%);
    border-radius: 17px;
    border-left: 3px solid var(--lgbe-gold);
    box-shadow: 
        0 3px 18px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.lgbe-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(245,105,133,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.lgbe-lead {
    font-size: 20px;
    line-height: 1.75;
    color: var(--lgbe-text);
    margin-bottom: 29px;
    font-weight: 500;
    position: relative;
    padding-left: 23px;
}

.lgbe-lead::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 65px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--lgbe-gold);
    opacity: 0.25;
    line-height: 1;
}

.lgbe-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--lgbe-primary) 0%, var(--lgbe-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 68px 0 34px 0;
    line-height: 1.25;
    position: relative;
    padding-bottom: 19px;
}

.lgbe-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--lgbe-gold) 0%, 
        var(--lgbe-gold-light) 50%, 
        var(--lgbe-gold) 100%, 
        transparent);
    border-radius: 1px;
    box-shadow: 0 3px 8px rgba(245,112,125,0.4);
    animation: lgbe-underline-glow 2s ease-in-out infinite;
}

@keyframes lgbe-underline-glow {
    0%, 100% { opacity: 0.8; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

.lgbe-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--lgbe-primary);
    margin: 44px 0 19px 0;
}

.lgbe-article p {
    margin-bottom: 29px;
    line-height: 1.85;
    color: var(--lgbe-text);
    position: relative;
    padding-left: 21px;
}

.lgbe-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 5px;
    height: 5px;
    background: var(--lgbe-gold);
    border-radius: 50%;
    box-shadow: 0 0 11px rgba(245,118,140,0.4);
    opacity: 0.5;
}

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

.lgbe-list,
.lgbe-list-ordered {
    margin: 34px 0;
    padding-left: 32px;
    position: relative;
}

.lgbe-list::before,
.lgbe-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--lgbe-gold), var(--lgbe-gold-light), var(--lgbe-gold-dark));
    border-radius: 1px;
}

.lgbe-list li,
.lgbe-list-ordered li {
    margin-bottom: 16px;
    line-height: 1.85;
    color: var(--lgbe-text);
    padding-left: 15px;
    position: relative;
    transition: all 0.3s;
}

.lgbe-list li::marker {
    color: var(--lgbe-gold);
    font-weight: 600;
}

.lgbe-list li:hover,
.lgbe-list-ordered li:hover {
    color: var(--lgbe-primary);
    transform: translateX(4px);
}

.lgbe-list-ordered {
    list-style: decimal;
}

.lgbe-image-wrapper {
    margin: 58px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 55px var(--lgbe-shadow),
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 3px 12px rgba(245,115,139,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid rgba(245,118,130,0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(250, 250, 250, 0.3));
}

.lgbe-image-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        var(--lgbe-gold) 0%, 
        var(--lgbe-gold-light) 25%, 
        var(--lgbe-gold-dark) 50%, 
        var(--lgbe-gold-light) 75%, 
        var(--lgbe-gold) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    animation: lgbe-border-glow 4s ease-in-out infinite;
    filter: blur(2px);
}

.lgbe-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(245,111,135,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

@keyframes lgbe-border-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.01); }
}

.lgbe-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s;
    filter: brightness(0.98) contrast(1.02);
    opacity: 0;
    animation: lgbe-image-fade-in 0.6s ease-out forwards;
}

.lgbe-article-image.loaded {
    opacity: 1;
}

.lgbe-article-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s;
}

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

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

.lgbe-image-wrapper:hover .lgbe-article-image {
    transform: scale(1.05);
    filter: brightness(1.02) contrast(1.05);
}

.lgbe-image-wrapper:hover::before {
    opacity: 0.5;
    animation-duration: 2s;
}

/* Lazy loading placeholder */
.lgbe-image-wrapper .lgbe-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(245,117,127,0.1) 0%, 
        rgba(197,163,98,0.08) 50%, 
        rgba(245,114,126,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.4s;
}

.lgbe-image-wrapper .lgbe-image-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

.lgbe-image-wrapper .lgbe-image-placeholder::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(245,120,133,0.3);
    border-top-color: var(--lgbe-gold);
    border-radius: 50%;
    animation: lgbe-spin 1s linear infinite;
}

@keyframes lgbe-spin {
    to { transform: rotate(360deg); }
}

/* Feature Grid */
.lgbe-features {
    margin: 85px 0;
    padding: 76px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f8f9fa 70%, #ffffff 100%);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245,107,132,0.08);
}

.lgbe-features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,113,139,0.04) 0%, transparent 70%);
    animation: lgbe-float 9s ease-in-out infinite;
}

.lgbe-features::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(208,176,95,0.04) 0%, transparent 70%);
    animation: lgbe-float 11s ease-in-out infinite reverse;
}

@keyframes lgbe-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(35px, 35px) scale(1.08); }
}

.lgbe-features-header {
    text-align: center;
    margin-bottom: 66px;
    position: relative;
    padding-bottom: 32px;
}

.lgbe-features-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), var(--lgbe-gold-light), var(--lgbe-gold), transparent);
    border-radius: 1px;
}

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

.lgbe-features-subtitle {
    font-size: 18px;
    color: var(--lgbe-text-light);
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    padding: 0 35px;
}

.lgbe-feature-card {
    background: linear-gradient(135deg, 
        var(--lgbe-bg) 0%, 
        rgba(255, 255, 255, 0.8) 30%, 
        #fafafa 60%, 
        rgba(255, 255, 255, 0.9) 100%);
    padding: 44px 35px;
    border-radius: 17px;
    box-shadow: 
        0 7px 26px var(--lgbe-shadow),
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(245,113,129,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(245,116,127,0.12);
    position: relative;
    overflow: hidden;
}

.lgbe-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,106,135,0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.lgbe-feature-card:hover::after {
    opacity: 1;
}

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

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

.lgbe-feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 18px 45px var(--lgbe-shadow-hover),
        0 8px 25px var(--lgbe-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(245,119,133,0.25);
}

.lgbe-feature-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-light) 50%, var(--lgbe-gold-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--lgbe-primary);
    box-shadow: 
        0 6px 18px var(--lgbe-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    transition: all 0.4s;
}

.lgbe-feature-card:hover .lgbe-feature-icon {
    transform: rotate(4deg) scale(1.08);
    box-shadow: 
        0 10px 28px var(--lgbe-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.lgbe-feature-card:hover .lgbe-feature-icon::after {
    opacity: 0.25;
}

.lgbe-feature-icon svg {
    width: 30px;
    height: 30px;
}

.lgbe-feature-title {
    font-size: 23px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--lgbe-primary), var(--lgbe-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 17px;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 12px;
}

.lgbe-feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--lgbe-gold), transparent);
    border-radius: 1px;
}

.lgbe-feature-desc {
    font-size: 19px;
    color: var(--lgbe-text-light);
    line-height: 1.65;
    font-family: 'Cormorant Garamond', serif;
}

/* Quick Facts Box */
.lgbe-facts-container {
    margin: 54px 0;
}

.lgbe-facts-box {
    background: linear-gradient(135deg, 
        var(--lgbe-bg) 0%, 
        rgba(255, 255, 255, 0.9) 30%, 
        #fafafa 60%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid var(--lgbe-gold);
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 
        0 12px 45px var(--lgbe-shadow),
        0 5px 22px var(--lgbe-shadow-gold),
        0 2px 10px rgba(245,118,131,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
}

.lgbe-facts-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 22px, rgba(245,105,137,0.015) 22px, rgba(245,111,129,0.015) 23px);
    pointer-events: none;
}

.lgbe-facts-header {
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-light) 50%, var(--lgbe-gold-dark) 100%);
    padding: 27px 41px;
    display: flex;
    align-items: center;
    gap: 19px;
    position: relative;
    box-shadow: 0 2px 13px rgba(245,118,128,0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lgbe-facts-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.lgbe-facts-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lgbe-primary);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lgbe-facts-icon svg {
    width: 24px;
    height: 24px;
}

.lgbe-facts-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--lgbe-primary);
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-facts-body {
    padding: 0;
}

.lgbe-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 30px;
    border-bottom: 2px solid var(--lgbe-border);
}

.lgbe-fact-row:last-child {
    border-bottom: none;
}

.lgbe-fact-row--highlight {
    background: linear-gradient(90deg, rgba(245,114,133,0.08) 0%, rgba(245,120,132,0.12) 50%, rgba(245,110,140,0.08) 100%);
    border-left: 3px solid var(--lgbe-gold);
    box-shadow: inset 3px 0 8px rgba(245,117,131,0.08);
}

.lgbe-fact-label {
    font-size: 16px;
    color: var(--lgbe-text-light);
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-fact-value {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--lgbe-primary), var(--lgbe-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-fact-row--highlight .lgbe-fact-value {
    background: linear-gradient(135deg, var(--lgbe-gold), var(--lgbe-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lgbe-fact-value--negative {
    color: #d9314a;
}

.lgbe-facts-footer {
    padding: 25px 30px;
    background: rgba(245,107,138,0.08);
}

.lgbe-facts-cta {
    display: block;
    width: 100%;
    padding: 19px;
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-light) 50%, var(--lgbe-gold-dark) 100%);
    color: var(--lgbe-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.4s;
    box-shadow: 
        0 5px 18px rgba(245,113,130,0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-facts-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.lgbe-facts-cta:hover::before {
    left: 100%;
}

.lgbe-facts-cta:hover {
    background: linear-gradient(135deg, var(--lgbe-gold-light) 0%, var(--lgbe-gold) 50%, var(--lgbe-gold-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 28px rgba(245,116,128,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.lgbe-faq-section {
    margin: 68px 0;
}

.lgbe-faq-header {
    text-align: center;
    margin-bottom: 67px;
    position: relative;
    padding-bottom: 29px;
}

.lgbe-faq-header::before {
    content: '❓';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 42px;
    opacity: 0.08;
    filter: blur(1px);
}

.lgbe-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), var(--lgbe-gold-light), var(--lgbe-gold), transparent);
    border-radius: 3px;
}

.lgbe-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--lgbe-primary);
    margin-bottom: 11px;
}

.lgbe-faq-subtitle {
    font-size: 21px;
    color: var(--lgbe-text-light);
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-faq-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.lgbe-faq-item {
    background: linear-gradient(135deg, 
        var(--lgbe-bg) 0%, 
        rgba(255, 255, 255, 0.9) 30%, 
        #fafafa 60%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid var(--lgbe-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 14px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(245,116,134,0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

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

.lgbe-faq-item:hover {
    border-color: rgba(245,113,133,0.4);
    box-shadow: 
        0 6px 22px var(--lgbe-shadow),
        0 0 0 1px rgba(245,119,132,0.08);
    transform: translateX(3px);
}

.lgbe-faq-item:hover::before,
.lgbe-faq-item.active::before {
    transform: scaleY(1);
}

.lgbe-faq-item.active {
    border-color: var(--lgbe-gold);
    box-shadow: 
        0 14px 42px var(--lgbe-shadow),
        0 6px 24px var(--lgbe-shadow-gold),
        0 2px 10px rgba(245,109,140,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(245,106,139,0.1);
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0.98) 30%, 
        rgba(250, 250, 250, 0.95) 60%, 
        #ffffff 100%);
}

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

.lgbe-faq-question:hover {
    background: rgba(245,109,129,0.04);
}

.lgbe-faq-question-text {
    font-size: 19px;
    font-weight: 500;
    color: var(--lgbe-primary);
    line-height: 1.4;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245,115,128,0.12), rgba(195,161,100,0.08));
    border-radius: 50%;
    color: var(--lgbe-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 6px rgba(245,112,127,0.15);
    border: 1px solid rgba(243,118,135,0.15);
}

.lgbe-faq-item.active .lgbe-faq-icon {
    transform: rotate(180deg) scale(1.08);
    background: linear-gradient(135deg, var(--lgbe-gold), var(--lgbe-gold-light));
    color: var(--lgbe-primary);
    box-shadow: 
        0 4px 12px var(--lgbe-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

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

.lgbe-faq-answer-content {
    padding: 0 33px 26px;
    font-size: 19px;
    line-height: 1.75;
    color: var(--lgbe-text);
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-faq-answer-content p {
    margin-bottom: 16px;
}

/* Footer */
.lgbe-footer {
    background: linear-gradient(135deg, #101c23 0%, #2c282f 50%, #131018 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 85px 0 45px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.lgbe-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(245,105,125,0.4) 20%, 
        var(--lgbe-gold) 40%, 
        var(--lgbe-gold-light) 50%, 
        var(--lgbe-gold) 60%, 
        rgba(245,111,133,0.4) 80%, 
        transparent 100%);
    box-shadow: 0 2px 10px rgba(245,117,132,0.4);
}

.lgbe-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 110px, rgba(245,108,140,0.015) 110px, rgba(245,114,131,0.015) 111px);
    animation: lgbe-drift 35s linear infinite;
}

.lgbe-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 54px;
    margin-bottom: 53px;
    position: relative;
    z-index: 1;
    padding-bottom: 43px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lgbe-footer-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), transparent);
}

.lgbe-footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 21px;
}

.lgbe-footer-tagline {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-footer-title {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 19px;
    font-family: 'Cormorant Garamond', serif;
}

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

.lgbe-footer-links li {
    margin-bottom: 12px;
}

.lgbe-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 24px;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.3s;
    color: var(--lgbe-gold);
}

.lgbe-footer-links a:hover {
    color: var(--lgbe-gold);
    transform: translateX(4px);
}

.lgbe-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.lgbe-footer-bottom {
    padding-top: 31px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
}

/* Comparison Table */
.lgbe-comparison-section {
    margin: 65px 0;
}

.lgbe-comparison-table {
    overflow-x: auto;
    margin-top: 35px;
}

.lgbe-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, var(--lgbe-bg) 0%, #fafafa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 35px var(--lgbe-shadow),
        0 3px 18px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245,117,135,0.08);
}

.lgbe-table thead {
    background: linear-gradient(135deg, #1d1c1c 0%, #322829 50%, #161020 100%);
    color: #ffffff;
    position: relative;
}

.lgbe-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), transparent);
}

.lgbe-table th {
    padding: 24px 23px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.lgbe-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lgbe-gold), transparent);
    opacity: 0.4;
}

.lgbe-table tbody tr {
    border-bottom: 1px solid var(--lgbe-border);
    transition: all 0.3s ease;
    position: relative;
}

.lgbe-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--lgbe-gold), var(--lgbe-gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.lgbe-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(243,107,127,0.04) 0%, #f8f9fa 10%, #f8f9fa 90%, rgba(244,113,134,0.04) 100%);
    box-shadow: inset 0 0 18px rgba(245,119,125,0.04);
}

.lgbe-table tbody tr:hover::before {
    transform: scaleX(1);
}

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

.lgbe-table td {
    padding: 24px;
    font-size: 12px;
    line-height: 1.65;
    color: var(--lgbe-text);
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-table td small {
    display: block;
    color: var(--lgbe-text-light);
    font-size: 13px;
    margin-top: 4px;
}

.lgbe-badge {
    display: inline-block;
    padding: 4px 15px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Inter', sans-serif;
}

.lgbe-badge--yes {
    background: linear-gradient(135deg, rgba(39,164,69,0.12), rgba(36,170,68,0.08));
    color: var(--lgbe-success);
    border: 1px solid rgba(37,160,76,0.25);
    box-shadow: 0 2px 6px rgba(42,167,67,0.15);
}

.lgbe-badge--no {
    background: linear-gradient(135deg, rgba(223,59,75,0.12), rgba(220,49,66,0.08));
    color: var(--lgbe-danger);
    border: 1px solid rgba(221,56,74,0.25);
    box-shadow: 0 2px 6px rgba(226,46,65,0.15);
}

/* Benefits Section */
.lgbe-benefits-section {
    margin: 85px 0;
    padding: 77px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f8f9fa 70%, #ffffff 100%);
    border-radius: 19px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 45px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(245,115,135,0.12);
}

.lgbe-benefits-section::before {
    content: '';
    position: absolute;
    top: -110px;
    right: -110px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(245,105,127,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: lgbe-rotate-slow 22s linear infinite;
}

.lgbe-benefits-section::after {
    content: '';
    position: absolute;
    bottom: -160px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(193,168,98,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: lgbe-rotate-slow 28s linear infinite reverse;
}

.lgbe-benefits-header {
    text-align: center;
    margin-bottom: 58px;
}

.lgbe-benefits-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--lgbe-primary);
    margin-bottom: 15px;
}

.lgbe-benefits-header p {
    font-size: 18px;
    color: var(--lgbe-text-light);
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
}

.lgbe-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 43px;
    padding: 0 32px;
}

.lgbe-benefit-item {
    background: linear-gradient(135deg, var(--lgbe-bg) 0%, #fafafa 100%);
    padding: 51px 42px;
    border-radius: 13px;
    box-shadow: 
        0 11px 27px var(--lgbe-shadow),
        0 3px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(245,115,125,0.08);
    overflow: hidden;
    z-index: 1;
}

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

.lgbe-benefit-item:hover::before {
    transform: scaleX(1);
}

.lgbe-benefit-item:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 
        0 25px 70px var(--lgbe-shadow-hover),
        0 14px 50px var(--lgbe-shadow-gold),
        0 6px 20px rgba(245,105,140,0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 0 rgba(245,118,139,0.15);
    border-color: rgba(245,108,130,0.5);
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        rgba(255, 255, 255, 0.98) 25%, 
        rgba(250, 250, 250, 0.95) 50%, 
        rgba(255, 255, 255, 0.98) 75%, 
        #ffffff 100%);
}

.lgbe-benefit-number {
    font-size: 68px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(245,117,136,0.18), rgba(205,163,92,0.12));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 0 25px rgba(245,114,135,0.25);
    position: relative;
    display: inline-block;
}

.lgbe-benefit-item:hover .lgbe-benefit-number {
    animation: lgbe-number-glow 1.2s ease-in-out infinite;
}

@keyframes lgbe-number-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.25); }
}

.lgbe-benefit-item h3 {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--lgbe-primary), var(--lgbe-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 17px;
}

.lgbe-benefit-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 2px;
    background: linear-gradient(90deg, var(--lgbe-gold), var(--lgbe-gold-light), transparent);
    border-radius: 2px;
}

.lgbe-benefit-item p {
    font-size: 15px;
    color: var(--lgbe-text-light);
    line-height: 1.75;
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

/* Scroll Progress Indicator */
.lgbe-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--lgbe-gold) 0%, 
        var(--lgbe-gold-light) 25%, 
        var(--lgbe-gold) 50%, 
        var(--lgbe-gold-light) 75%, 
        var(--lgbe-gold) 100%);
    z-index: 9999;
    transition: width 0.15s ease-out;
    box-shadow: 
        0 0 12px rgba(245,120,127,0.5),
        0 0 24px rgba(245,110,134,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-size: 200% 100%;
    animation: lgbe-progress-shine 2s linear infinite;
}

@keyframes lgbe-progress-shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .lgbe-ticker-track {
        gap: 19px;
        font-size: 16px;
    }

    .lgbe-ticker-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .lgbe-ticker-separator {
        display: none;
    }

    .lgbe-table {
        font-size: 13px;
    }

    .lgbe-table th,
    .lgbe-table td {
        padding: 15px;
    }

    .lgbe-benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 22px;
    }

    .lgbe-benefits-header h2 {
        font-size: 30px;
    }
    
    .lgbe-menu-toggle {
        display: flex;
    }

    .lgbe-nav {
        display: none;
    }

    .lgbe-hero-title {
        font-size: 38px;
    }

    .lgbe-hero-subtitle {
        font-size: 17px;
    }

    .lgbe-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lgbe-btn {
        width: 100%;
        justify-content: center;
    }

    .lgbe-article h2 {
        font-size: 30px;
    }

    .lgbe-features-grid {
        grid-template-columns: 1fr;
        padding: 0 21px;
    }

    .lgbe-features-title,
    .lgbe-faq-title {
        font-size: 30px;
    }

    .lgbe-faq-question {
        padding: 23px;
    }

    .lgbe-faq-answer-content {
        padding: 0 22px 25px;
    }

    .lgbe-fact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .lgbe-fact-value {
        text-align: left;
    }

    .lgbe-phone-cta {
        flex-direction: column;
        text-align: center;
    }

    .lgbe-trust-badges {
        gap: 22px;
    }
}

/* ============================================ */
/* Companies Table Styles */
/* ============================================ */

.lgbe-companies-table-wrapper {
    overflow-x: auto;
    margin: 33px 0;
    border-radius: 15px;
    box-shadow: 0 6px 31px rgba(0, 0, 0, 0.08);
}

.lgbe-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.lgbe-companies-table thead {
    background: linear-gradient(135deg, var(--lgbe-primary) 0%, #2f2525 100%);
}

.lgbe-companies-table th {
    padding: 18px 19px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #fff;
    border-bottom: 3px solid var(--lgbe-gold);
}

.lgbe-companies-table td {
    padding: 19px 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--lgbe-border);
}

.lgbe-company-row {
    transition: all 0.3s ease;
}

.lgbe-company-row:hover {
    background: linear-gradient(135deg, rgba(245,113,125,0.08) 0%, rgba(200,176,104,0.05) 100%);
}

.lgbe-rank-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-dark) 100%);
    color: var(--lgbe-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(245,110,132,0.3);
}

.lgbe-company-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.lgbe-company-badge {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(135deg, rgba(245,116,139,0.15) 0%, rgba(203,163,95,0.1) 100%);
    color: var(--lgbe-gold-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 17px;
    border: 2px solid rgba(245,113,138,0.3);
}

.lgbe-rating-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

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

.lgbe-star {
    font-size: 17px;
}

.lgbe-star-full {
    color: var(--lgbe-gold);
    text-shadow: 0 0 6px rgba(245,119,130,0.4);
}

.lgbe-star-half {
    color: var(--lgbe-gold);
    opacity: 0.6;
}

.lgbe-star-empty {
    color: #e3d5de;
}

.lgbe-rating-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--lgbe-text);
}

.lgbe-bbb-badge {
    display: inline-block;
    padding: 7px 9px;
    background: linear-gradient(135deg, #22ae4d 0%, #22843f 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 5px;
    box-shadow: 0 1px 7px rgba(41,163,73,0.3);
}

.lgbe-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.lgbe-features-list li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    color: var(--lgbe-text);
}

.lgbe-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lgbe-gold);
    font-weight: 700;
}

.lgbe-btn-review {
    display: inline-block;
    padding: 9px 27px;
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-dark) 100%);
    color: var(--lgbe-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245,116,136,0.3);
    white-space: nowrap;
}

.lgbe-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245,106,128,0.4);
}

/* Review Page Styles */
.lgbe-review-page {
    max-width: 900px;
    margin: 0 auto;
}

.lgbe-review-header {
    text-align: center;
    margin-bottom: 39px;
}

.lgbe-review-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: var(--lgbe-primary);
    margin-bottom: 21px;
}

.lgbe-review-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lgbe-review-rating-large .lgbe-stars {
    font-size: 24px;
}

.lgbe-review-badge {
    padding: 10px 13px;
    background: linear-gradient(135deg, #21a242 0%, #1c8243 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 23px;
}

.lgbe-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin: 41px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(245,112,135,0.08) 0%, rgba(206,175,91,0.05) 100%);
    border-radius: 19px;
    border: 2px solid rgba(245,109,134,0.2);
}

.lgbe-fact-item {
    text-align: center;
}

.lgbe-fact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lgbe-text-light);
    margin-bottom: 5px;
}

.lgbe-fact-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--lgbe-primary);
}

.lgbe-review-content {
    margin-top: 41px;
}

.lgbe-review-section {
    margin-bottom: 40px;
}

.lgbe-review-intro .lgbe-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--lgbe-text);
}

.lgbe-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin: 27px 0;
}

.lgbe-pros, .lgbe-cons {
    padding: 27px;
    border-radius: 11px;
}

.lgbe-pros {
    background: linear-gradient(135deg, rgba(35,169,62,0.1) 0%, rgba(32,160,69,0.05) 100%);
    border: 1px solid rgba(33,166,61,0.2);
}

.lgbe-cons {
    background: linear-gradient(135deg, rgba(218,58,76,0.1) 0%, rgba(219,49,68,0.05) 100%);
    border: 1px solid rgba(216,55,75,0.2);
}

.lgbe-pros h3, .lgbe-cons h3 {
    margin-bottom: 16px;
    font-size: 21px;
}

.lgbe-pros h3 { color: #2ea046; }
.lgbe-cons h3 { color: #d73c41; }

.lgbe-pros ul, .lgbe-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lgbe-pros li, .lgbe-cons li {
    padding: 10px 0;
    padding-left: 21px;
    position: relative;
}

.lgbe-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2da83c;
    font-weight: 700;
}

.lgbe-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #da304a;
    font-weight: 700;
}

.lgbe-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 23px 0;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 1px 9px rgba(0, 0, 0, 0.06);
}

.lgbe-fee-table th,
.lgbe-fee-table td {
    padding: 14px 23px;
    text-align: left;
    border-bottom: 1px solid var(--lgbe-border);
}

.lgbe-fee-table th {
    background: var(--lgbe-primary);
    color: #fff;
    font-weight: 600;
}

.lgbe-verdict {
    padding: 27px;
    background: linear-gradient(135deg, rgba(245,111,138,0.12) 0%, rgba(204,174,94,0.08) 100%);
    border-radius: 19px;
    border-left: 3px solid var(--lgbe-gold);
}

.lgbe-verdict h2 {
    color: var(--lgbe-primary);
    margin-bottom: 14px;
}

.lgbe-cta-box {
    text-align: center;
    padding: 41px;
    background: linear-gradient(135deg, var(--lgbe-primary) 0%, #352b2c 100%);
    color: #fff;
    border-radius: 16px;
    margin: 43px 0;
}

.lgbe-cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 9px;
}

.lgbe-cta-box p {
    margin-bottom: 23px;
    opacity: 0.9;
}

.lgbe-cta-box .lgbe-btn-primary {
    background: linear-gradient(135deg, var(--lgbe-gold) 0%, var(--lgbe-gold-dark) 100%);
    color: var(--lgbe-primary);
    padding: 15px 30px;
    font-size: 17px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
}

.lgbe-cta-box .lgbe-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245,108,137,0.4);
}

.lgbe-other-companies {
    margin-top: 63px;
    padding-top: 39px;
    border-top: 1px solid var(--lgbe-border);
}

.lgbe-other-companies h3 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--lgbe-primary);
}

.lgbe-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.lgbe-other-card {
    padding: 21px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid var(--lgbe-border);
    transition: all 0.3s ease;
}

.lgbe-other-card:hover {
    border-color: var(--lgbe-gold);
    box-shadow: 0 8px 24px rgba(245,114,129,0.15);
    transform: translateY(-4px);
}

.lgbe-other-card h4 {
    font-size: 18px;
    color: var(--lgbe-primary);
    margin-bottom: 10px;
}

.lgbe-other-card p {
    font-size: 11px;
    color: var(--lgbe-text-light);
    margin-bottom: 15px;
}

.lgbe-other-card a {
    color: var(--lgbe-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.lgbe-other-card a:hover {
    color: var(--lgbe-gold);
}

/* Responsive Tables */
@media (max-width: 768px) {
    .lgbe-companies-table-wrapper {
        margin: 21px -16px;
        border-radius: 0;
    }

    .lgbe-companies-table th,
    .lgbe-companies-table td {
        padding: 15px 12px;
        font-size: 10px;
    }

    .lgbe-th-features,
    .lgbe-td-features {
        display: none;
    }

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

    .lgbe-review-title {
        font-size: 28px;
    }
}


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

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

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

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

    .lgbe-companies-section .lgbe-companies-table tbody tr.lgbe-company-row {
        background: #fff !important;
        margin-bottom: 18px !important;
        border-radius: 17px !important;
        box-shadow: 0 4px 27px rgba(98,22,42,0.1) !important;
        padding: 22px !important;
        border: 1px solid rgba(99,28,50,0.08);
    }

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

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

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

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

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

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

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

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

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

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

/* Company Logo Styles */
.lgbe-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) {
    .lgbe-company-logo {
        display: block !important;
        margin: 0 auto 17px auto !important;
    }

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


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

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


/* Mobile Navigation Hidden by Default */
.lgbe-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 19px 23px;
    border-top: 1px solid #eee;
}

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

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

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

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


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

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

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

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

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

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

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


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

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