/* LG Linen Style - Auto-themed */
:root {
    --goof-primary: #221231;
    --goof-secondary: #2d527e;
    --goof-accent: #9e86f1;
    --goof-gold: #a78af5;
    --goof-gold-light: #a59292;
    --goof-gold-dark: #837260;
    --goof-bg: #FAF3EB;
    --goof-bg-linen: #f8f6f1;
    --goof-bg-cream: #faf9f6;
    --goof-text: #200a2e;
    --goof-text-muted: #89745d;
    --goof-border: #dccccf;
    --goof-border-light: #ebefe6;
    --goof-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --goof-shadow-md: rgba(37,38,41,0.12);
    --goof-success: #527957;
    --goof-danger: #b73133;
    --goof-warning: #ae91f5;
    --goof-radius-sm: 10px;
    --goof-radius: 5px;
    --goof-radius-lg: 23px;
    --goof-radius-xl: 15px;
    --goof-space-xs: 6px;
    --goof-space-sm: 12px;
    --goof-space-md: 16px;
    --goof-space-lg: 24px;
    --goof-space-xl: 32px;
    --goof-space-2xl: 48px;
    --goof-space-3xl: 64px;
    --goof-transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body,
.goof-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--goof-text);
    background: var(--goof-bg-linen);
}

.goof-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--goof-space-lg);
}

/* Alert Banner */
.goof-alert-banner {
    background: linear-gradient(90deg, var(--goof-accent) 0%, #c21a39 100%);
    color: #ffffff;
    padding: var(--goof-space-sm) var(--goof-space-lg);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
}

.goof-alert-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.goof-alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--goof-space-sm);
    flex-wrap: wrap;
}

.goof-alert-icon {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.goof-alert-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity var(--goof-transition);
}

.goof-alert-link:hover {
    opacity: 0.85;
}

/* Price Ticker */
.goof-ticker {
    background: var(--goof-primary);
    padding: var(--goof-space-md) 0;
    border-bottom: 1px solid rgba(195,161,82,0.3);
}

.goof-ticker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--goof-space-xl);
    flex-wrap: wrap;
}

.goof-ticker-item {
    display: flex;
    align-items: center;
    gap: var(--goof-space-sm);
    padding: var(--goof-space-xs) var(--goof-space-md);
    border-radius: var(--goof-radius);
    transition: background var(--goof-transition);
}

.goof-ticker-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.goof-ticker-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.goof-ticker-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--goof-gold-light);
}

.goof-ticker-delta {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.goof-ticker-delta--up {
    color: var(--goof-success);
}

.goof-ticker-delta--down {
    color: var(--goof-danger);
}

.goof-ticker-delta svg {
    width: 10px;
    height: 10px;
}

.goof-ticker-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

.goof-ticker-status {
    display: flex;
    align-items: center;
    gap: var(--goof-space-xs);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--goof-space-xs);
    justify-content: center;
}

.goof-ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--goof-success);
    border-radius: 50%;
    animation: goof-blink 2s infinite;
}

@keyframes goof-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Header */
.goof-header {
    background: var(--goof-bg);
    border-bottom: 1px solid var(--goof-border);
    position: sticky;
    top: 0;
    z-index: 900;
}

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

.goof-logo {
    display: flex;
    align-items: center;
    gap: var(--goof-space-sm);
    text-decoration: none;
    color: var(--goof-primary);
}

.goof-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--goof-gold) 0%, var(--goof-gold-dark) 100%);
    border-radius: var(--goof-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--goof-primary);
}

.goof-logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.goof-nav {
    display: flex;
    align-items: center;
    gap: var(--goof-space-lg);
}

.goof-nav-link {
    color: var(--goof-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: var(--goof-space-xs) 0;
    position: relative;
    transition: color var(--goof-transition);
}

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

.goof-nav-link:hover,
.goof-nav-link--active {
    color: var(--goof-primary);
}

.goof-nav-link:hover::after,
.goof-nav-link--active::after {
    width: 100%;
}

.goof-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--goof-space-xs);
}

.goof-burger-line {
    width: 22px;
    height: 2px;
    background: var(--goof-primary);
    transition: all var(--goof-transition);
}

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

.goof-burger.active .goof-burger-line:nth-child(2) {
    opacity: 0;
}

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

.goof-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--goof-bg);
    border-bottom: 1px solid var(--goof-border);
    padding: var(--goof-space-md) var(--goof-space-lg);
}

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

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

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

/* Hero */
.goof-hero {
    background: var(--goof-bg);
    padding: var(--goof-space-3xl) var(--goof-space-lg);
    text-align: center;
    border-bottom: 1px solid var(--goof-border);
}

.goof-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.goof-hero-tag {
    display: inline-block;
    padding: var(--goof-space-xs) var(--goof-space-md);
    background: var(--goof-bg-linen);
    color: var(--goof-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--goof-radius-sm);
    margin-bottom: var(--goof-space-lg);
}

.goof-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--goof-primary);
    margin-bottom: var(--goof-space-lg);
}

.goof-hero-desc {
    font-size: 18px;
    color: var(--goof-text-muted);
    line-height: 1.7;
    margin-bottom: var(--goof-space-xl);
}

.goof-hero-btns {
    display: flex;
    gap: var(--goof-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.goof-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--goof-space-sm) var(--goof-space-xl);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--goof-radius);
    transition: all var(--goof-transition);
    cursor: pointer;
    border: none;
}

.goof-btn--primary {
    background: var(--goof-gold);
    color: var(--goof-primary);
}

.goof-btn--primary:hover {
    background: var(--goof-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196,161,97,0.3);
}

.goof-btn--outline {
    background: transparent;
    border: 2px solid var(--goof-border);
    color: var(--goof-text);
}

.goof-btn--outline:hover {
    border-color: var(--goof-text-muted);
    background: var(--goof-bg-linen);
}

/* Main Content */
.goof-main {
    padding: var(--goof-space-3xl) var(--goof-space-lg);
    background: var(--goof-bg-cream);
}

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

.goof-lead {
    font-size: 22px;
    line-height: 1.8;
    color: var(--goof-text);
    margin-bottom: var(--goof-space-xl);
    padding: var(--goof-space-lg);
    background: var(--goof-bg);
    border-left: 3px solid var(--goof-gold);
    border-radius: 0 var(--goof-radius) var(--goof-radius) 0;
}

.goof-article h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--goof-primary);
    margin: var(--goof-space-2xl) 0 var(--goof-space-lg) 0;
    padding-bottom: var(--goof-space-sm);
    border-bottom: 2px solid var(--goof-border);
}

.goof-article h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--goof-primary);
    margin: var(--goof-space-xl) 0 var(--goof-space-md) 0;
}

.goof-article p {
    margin-bottom: var(--goof-space-lg);
    color: var(--goof-text);
}

.goof-list {
    margin: var(--goof-space-lg) 0;
    padding-left: var(--goof-space-lg);
}

.goof-list li {
    margin-bottom: var(--goof-space-sm);
    color: var(--goof-text);
    line-height: 1.7;
}

.goof-list li::marker {
    color: var(--goof-gold);
}

.goof-list-numbered {
    list-style: decimal;
}

/* Checklist Component */
.goof-checklist {
    background: var(--goof-bg);
    border: 1px solid var(--goof-border);
    border-radius: var(--goof-radius-lg);
    padding: var(--goof-space-xl);
    margin: var(--goof-space-xl) 0;
}

.goof-checklist-header {
    display: flex;
    align-items: center;
    gap: var(--goof-space-sm);
    margin-bottom: var(--goof-space-lg);
    padding-bottom: var(--goof-space-md);
    border-bottom: 2px solid var(--goof-border-light);
}

.goof-checklist-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--goof-gold-light) 0%, var(--goof-gold) 100%);
    border-radius: var(--goof-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.goof-checklist-icon svg {
    width: 20px;
    height: 20px;
    color: var(--goof-primary);
}

.goof-checklist-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--goof-primary);
}

.goof-checklist-items {
    list-style: none;
    padding: 0;
}

.goof-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: var(--goof-space-sm);
    padding: var(--goof-space-sm) 0;
    border-bottom: 1px solid var(--goof-border-light);
}

.goof-checklist-item:last-child {
    border-bottom: none;
}

.goof-checklist-mark {
    width: 20px;
    height: 20px;
    background: var(--goof-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.goof-checklist-mark svg {
    width: 15px;
    height: 12px;
    color: #ffffff;
}

.goof-checklist-text {
    font-size: 15px;
    color: var(--goof-text);
    line-height: 1.6;
}

/* Image */
.goof-image-block {
    margin: var(--goof-space-xl) 0;
    border-radius: var(--goof-radius-lg);
    overflow: hidden;
    border: 2px solid var(--goof-border);
}

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

/* Company Cards */
.goof-companies {
    margin: var(--goof-space-xl) 0;
}

.goof-company-card {
    background: var(--goof-bg);
    border: 1px solid var(--goof-border);
    border-radius: var(--goof-radius-lg);
    padding: var(--goof-space-xl);
    margin-bottom: var(--goof-space-lg);
    transition: box-shadow var(--goof-transition);
}

.goof-company-card:hover {
    box-shadow: 0 4px 16px var(--goof-shadow-md);
}

.goof-company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--goof-primary);
    margin-bottom: var(--goof-space-sm);
}

.goof-company-desc {
    font-size: 15px;
    color: var(--goof-text-muted);
    line-height: 1.7;
}

/* Table */
.goof-table-wrap {
    overflow-x: auto;
    margin: var(--goof-space-xl) 0;
}

.goof-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--goof-bg);
    border-radius: var(--goof-radius-lg);
    overflow: hidden;
    border: 2px solid var(--goof-border);
}

.goof-table th {
    background: var(--goof-primary);
    color: #ffffff;
    padding: var(--goof-space-md);
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.goof-table td {
    padding: var(--goof-space-md);
    border-bottom: 1px solid var(--goof-border-light);
    font-size: 14px;
}

.goof-table tr:last-child td {
    border-bottom: none;
}

.goof-table tr:hover td {
    background: var(--goof-bg-linen);
}

.goof-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 23px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.goof-badge--yes {
    background: rgba(75,128,88,0.12);
    color: var(--goof-success);
}

.goof-badge--no {
    background: rgba(190,52,62,0.12);
    color: var(--goof-danger);
}

/* FAQ Accordion */
.goof-faq {
    margin: var(--goof-space-2xl) 0;
}

.goof-faq-header {
    text-align: center;
    margin-bottom: var(--goof-space-xl);
}

.goof-faq-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--goof-primary);
    margin-bottom: var(--goof-space-xs);
}

.goof-faq-subtitle {
    font-size: 15px;
    color: var(--goof-text-muted);
}

.goof-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--goof-space-sm);
}

.goof-faq-item {
    background: var(--goof-bg);
    border: 1px solid var(--goof-border);
    border-radius: var(--goof-radius);
    overflow: hidden;
    transition: border-color var(--goof-transition);
}

.goof-faq-item:hover {
    border-color: var(--goof-gold);
}

.goof-faq-item.active {
    border-color: var(--goof-gold);
}

.goof-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--goof-space-md);
    padding: var(--goof-space-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

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

.goof-faq-arrow {
    width: 28px;
    height: 28px;
    background: var(--goof-bg-linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--goof-transition);
}

.goof-faq-arrow svg {
    width: 14px;
    height: 14px;
    color: var(--goof-text-muted);
    transition: transform var(--goof-transition);
}

.goof-faq-item.active .goof-faq-arrow {
    background: var(--goof-gold);
}

.goof-faq-item.active .goof-faq-arrow svg {
    color: var(--goof-primary);
    transform: rotate(180deg);
}

.goof-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.goof-faq-item.active .goof-faq-body {
    max-height: 600px;
}

.goof-faq-answer {
    padding: 0 var(--goof-space-lg) var(--goof-space-lg);
    font-size: 15px;
    color: var(--goof-text-muted);
    line-height: 1.7;
}

/* Footer */
.goof-footer {
    background: var(--goof-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--goof-space-3xl) var(--goof-space-lg) var(--goof-space-xl);
}

.goof-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.goof-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--goof-space-2xl);
    padding-bottom: var(--goof-space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.goof-footer-brand {
    display: flex;
    align-items: center;
    gap: var(--goof-space-sm);
    margin-bottom: var(--goof-space-md);
}

.goof-footer-brand .goof-logo-mark {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.goof-footer-brand .goof-logo-text {
    font-size: 16px;
    color: #ffffff;
}

.goof-footer-tagline {
    font-size: 14px;
    line-height: 1.6;
}

.goof-footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--goof-space-md);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

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

.goof-footer-links li {
    margin-bottom: var(--goof-space-xs);
}

.goof-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--goof-transition);
}

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

.goof-footer-bottom {
    padding-top: var(--goof-space-lg);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Progress */
.goof-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--goof-gold), var(--goof-accent));
    z-index: 9999;
    transition: width 0.1s;
}

/* Contact Form */
.goof-contact-section {
    padding: var(--goof-space-2xl) 0;
}

.goof-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--goof-space-2xl);
    margin-top: var(--goof-space-xl);
}

.goof-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--goof-space-lg);
}

.goof-contact-item {
    display: flex;
    gap: var(--goof-space-md);
    align-items: flex-start;
}

.goof-contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--goof-gold-light), var(--goof-gold));
    border-radius: var(--goof-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goof-contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--goof-primary);
}

.goof-contact-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--goof-primary);
    margin-bottom: 3px;
}

.goof-contact-value {
    font-size: 15px;
    color: var(--goof-text-muted);
}

.goof-form-wrap {
    background: var(--goof-bg);
    border: 1px solid var(--goof-border);
    border-radius: var(--goof-radius-lg);
    padding: var(--goof-space-xl);
}

.goof-form-group {
    margin-bottom: var(--goof-space-lg);
}

.goof-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--goof-primary);
    margin-bottom: var(--goof-space-xs);
}

.goof-form-input,
.goof-form-select,
.goof-form-textarea {
    width: 100%;
    padding: var(--goof-space-sm) var(--goof-space-md);
    border: 1px solid var(--goof-border);
    border-radius: var(--goof-radius);
    font-family: inherit;
    font-size: 12px;
    transition: border-color var(--goof-transition), box-shadow var(--goof-transition);
    background: var(--goof-bg);
}

.goof-form-input:focus,
.goof-form-select:focus,
.goof-form-textarea:focus {
    outline: none;
    border-color: var(--goof-gold);
    box-shadow: 0 0 0 3px rgba(191,157,92,0.15);
}

.goof-form-textarea {
    resize: vertical;
    min-height: 110px;
}

.goof-form-submit {
    width: 100%;
    padding: var(--goof-space-md);
    background: var(--goof-gold);
    color: var(--goof-primary);
    border: none;
    border-radius: var(--goof-radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--goof-transition);
}

.goof-form-submit:hover {
    background: var(--goof-gold-dark);
    transform: translateY(-1px);
}

.goof-form-success {
    display: none;
    padding: var(--goof-space-md);
    background: rgba(66,124,84,0.1);
    border: 1px solid var(--goof-success);
    border-radius: var(--goof-radius);
    color: var(--goof-success);
    text-align: center;
    margin-top: var(--goof-space-md);
}

.goof-form-success.active {
    display: block;
}

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

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

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

    .goof-burger {
        display: flex;
    }

    .goof-hero-title {
        font-size: 32px;
    }

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

    .goof-article h2 {
        font-size: 24px;
    }

    .goof-ticker-inner {
        gap: var(--goof-space-md);
    }

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

    .goof-ticker-divider {
        display: none;
    }

    .goof-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--goof-space-xl);
    }

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

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

    .goof-table th,
    .goof-table td {
        padding: var(--goof-space-sm);
    }
}

@media (max-width: 480px) {
    .goof-hero {
        padding: var(--goof-space-2xl) var(--goof-space-md);
    }

    .goof-hero-title {
        font-size: 28px;
    }

    .goof-hero-btns {
        flex-direction: column;
    }

    .goof-btn {
        width: 100%;
    }

    .goof-main {
        padding: var(--goof-space-xl) var(--goof-space-md);
    }

    .goof-checklist {
        padding: var(--goof-space-lg);
    }

    .goof-companies-table-wrapper {
        overflow-x: auto;
    }

    .goof-companies-table th,
    .goof-companies-table td {
        padding: 7px 11px;
        font-size: 12px;
    }
}

/* ================================================
   Aliases for PHP template compatibility
   ================================================ */
.goof-container { max-width: 1180px; margin: 0 auto; padding: 0 25px; }
.goof-header-container { display: flex; align-items: center; justify-content: space-between; padding: 16px 27px; max-width: 1180px; margin: 0 auto; }
.goof-logo-icon { width: 33px; height: 39px; background: linear-gradient(135deg, var(--goof-gold) 0%, var(--goof-gold-dark) 100%); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--goof-primary); }
.goof-menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.goof-menu-line { width: 25px; height: 3px; background: var(--goof-primary); transition: all 0.25s ease; }
.goof-menu-toggle.active .goof-menu-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.goof-menu-toggle.active .goof-menu-line:nth-child(2) { opacity: 0; }
.goof-menu-toggle.active .goof-menu-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.goof-mobile-nav { display: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--goof-border); padding: 16px 27px; }
.goof-mobile-nav.active { display: flex; }
.goof-mobile-link { padding: 14px 0; color: var(--goof-text); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--goof-border-light); }
.goof-mobile-link:last-child { border-bottom: none; }
.goof-btn-primary { background: linear-gradient(135deg, var(--goof-gold) 0%, var(--goof-gold-dark) 100%); color: var(--goof-primary); padding: 15px 23px; font-weight: 600; border-radius: 6px; text-decoration: none; display: inline-block; transition: all 0.25s ease; }
.goof-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(189,169,93,0.3); }

/* ================================================
   Companies Table Styles
   ================================================ */
.goof-companies-table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 9px;
    box-shadow: 0 5px 15px var(--goof-shadow-md);
}

.goof-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.goof-companies-table thead {
    background: linear-gradient(135deg, var(--goof-primary) 0%, var(--goof-secondary) 100%);
    color: #fff;
}

.goof-companies-table th {
    padding: 17px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

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

.goof-companies-table tbody tr:hover {
    background: var(--goof-bg-linen);
}

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

.goof-companies-table td {
    padding: 15px 19px;
    vertical-align: middle;
}

/* Rank Badge */
.goof-rank-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--goof-gold) 0%, var(--goof-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

/* Company Info */
.goof-company-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.goof-company-badge {
    display: inline-block;
    padding: 5px 7px;
    background: linear-gradient(135deg, var(--goof-gold-light) 0%, var(--goof-gold) 100%);
    color: var(--goof-primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    width: fit-content;
}

/* Rating Box */
.goof-rating-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.goof-stars {
    display: flex;
    gap: 2px;
}

.goof-star {
    font-size: 19px;
}

.goof-star-full {
    color: var(--goof-gold);
}

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

.goof-star-empty {
    color: #d4d4dd;
}

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

/* BBB Badge */
.goof-bbb-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--goof-success);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 3px;
}

/* Features List */
.goof-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goof-features-list li {
    position: relative;
    padding-left: 17px;
    margin-bottom: 6px;
    font-size: 17px;
    color: var(--goof-text);
}

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

/* Action Button */
.goof-btn-review {
    display: inline-block;
    padding: 12px 17px;
    background: linear-gradient(135deg, var(--goof-primary) 0%, var(--goof-secondary) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.goof-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24,53,85,0.3);
}

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

.goof-review-header {
    text-align: center;
    padding: 42px 0;
    border-bottom: 1px solid var(--goof-border);
    margin-bottom: 43px;
}

.goof-review-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--goof-primary);
    margin-bottom: 19px;
}

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

.goof-review-rating-large {
    display: flex;
    align-items: center;
    gap: 11px;
}

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

.goof-review-badge {
    padding: 7px 16px;
    background: var(--goof-success);
    color: #fff;
    font-weight: 600;
    border-radius: 3px;
}

/* Quick Facts */
.goof-quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
    padding: 29px;
    background: var(--goof-bg-cream);
    border-radius: 10px;
    margin-bottom: 41px;
    border: 1px solid var(--goof-border);
}

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

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

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

/* Review Content */
.goof-review-content {
    line-height: 1.8;
}

.goof-review-section {
    margin-bottom: 39px;
}

.goof-review-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--goof-primary);
    margin-bottom: 18px;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--goof-gold);
}

.goof-review-intro .goof-lead {
    font-size: 1.15rem;
    color: var(--goof-text);
    line-height: 1.8;
}

/* Pros & Cons */
.goof-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 33px;
    margin: 42px 0;
}

.goof-pros, .goof-cons {
    padding: 22px;
    border-radius: 15px;
}

.goof-pros {
    background: linear-gradient(135deg, rgba(73,129,90,0.08) 0%, rgba(70,119,82,0.03) 100%);
    border: 1px solid rgba(71,124,95,0.2);
}

.goof-cons {
    background: linear-gradient(135deg, rgba(186,64,56,0.08) 0%, rgba(187,54,65,0.03) 100%);
    border: 1px solid rgba(184,63,57,0.2);
}

.goof-pros h3 {
    color: var(--goof-success);
    margin-bottom: 16px;
}

.goof-cons h3 {
    color: var(--goof-danger);
    margin-bottom: 15px;
}

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

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

.goof-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--goof-success);
    font-weight: 700;
}

.goof-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--goof-danger);
    font-weight: 700;
}

/* Fee Table */
.goof-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 23px 0;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid var(--goof-border);
}

.goof-fee-table th {
    background: var(--goof-primary);
    color: #fff;
    padding: 15px 16px;
    text-align: left;
    font-weight: 600;
}

.goof-fee-table td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--goof-border-light);
}

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

/* CTA Box */
.goof-cta-box {
    background: linear-gradient(135deg, var(--goof-primary) 0%, var(--goof-secondary) 100%);
    color: #fff;
    padding: 43px;
    border-radius: 11px;
    text-align: center;
    margin: 38px 0;
}

.goof-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 11px;
}

.goof-cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.goof-cta-box .goof-btn-primary {
    background: linear-gradient(135deg, var(--goof-gold) 0%, var(--goof-gold-dark) 100%);
    color: var(--goof-primary);
    padding: 17px 32px;
    font-size: 13px;
}

/* Other Companies Grid */
.goof-other-companies {
    margin-top: 63px;
    padding-top: 39px;
    border-top: 1px solid var(--goof-border);
}

.goof-other-companies h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--goof-primary);
    margin-bottom: 26px;
}

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

.goof-other-card {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--goof-border);
    border-radius: 13px;
    transition: all 0.25s ease;
}

.goof-other-card:hover {
    border-color: var(--goof-gold);
    box-shadow: 0 4px 16px var(--goof-shadow-md);
}

.goof-other-card h4 {
    font-size: 1.1rem;
    color: var(--goof-primary);
    margin-bottom: 9px;
}

.goof-other-card p {
    font-size: 14px;
    color: var(--goof-text-muted);
    margin-bottom: 15px;
}

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

.goof-other-card a:hover {
    text-decoration: underline;
}

/* Verdict Section */
.goof-verdict {
    background: linear-gradient(135deg, rgba(197,158,94,0.08) 0%, rgba(202,164,86,0.03) 100%);
    padding: 32px;
    border-radius: 9px;
    border-left: 5px solid var(--goof-gold);
}

.goof-verdict h2 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* List Styles */
.goof-list {
    list-style: none;
    padding: 0;
    margin: 19px 0;
}

.goof-list li {
    padding: 8px 0 11px 28px;
    position: relative;
    border-bottom: 1px solid var(--goof-border-light);
}

.goof-list li:last-child {
    border-bottom: none;
}

.goof-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--goof-gold);
    font-size: 20px;
    line-height: 1;
}

/* Responsive for Review & Mobile Menu */
@media (max-width: 768px) {
    .goof-menu-toggle {
        display: flex;
    }

    .goof-nav {
        display: none;
    }

    .goof-quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .goof-review-title {
        font-size: 1.8rem;
    }
}


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

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

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

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

    .goof-companies-section .goof-companies-table tbody tr.goof-company-row {
        background: #fff !important;
        margin-bottom: 18px !important;
        border-radius: 17px !important;
        box-shadow: 0 4px 27px rgba(99,37,52,0.1) !important;
        padding: 22px !important;
        border: 1px solid rgba(96,26,44,0.08);
    }

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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

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


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

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

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

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

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

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

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


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

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