/* Nikon Modern Style - Auto-themed */
/* Precision-focused design with clean lines and professional aesthetics */

:root {
    --fngc-black: #221618;
    --fngc-charcoal: #2c2e25;
    --fngc-silver: #bfbbbf;
    --fngc-gold: #616ff5;
    --fngc-gold-hover: #eeb469;
    --fngc-gold-dark: #4b4db9;
    --fngc-white: #ffffff;
    --fngc-offwhite: #f7f7f7;
    --fngc-gray: #6d7365;
    --fngc-lightgray: #dfdbdb;
    --fngc-success: #3f9576;
    --fngc-danger: #c5494d;
    --fngc-font-main: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --fngc-font-heading: 'Inter', sans-serif;
    --fngc-radius-sm: 5px;
    --fngc-radius-md: 10px;
    --fngc-radius-lg: 11px;
    --fngc-shadow-subtle: 0 3px 7px rgba(0, 0, 0, 0.08);
    --fngc-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --fngc-shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.16);
    --fngc-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fngc-font-main);
    font-size: 16px;
    line-height: 1.65;
    color: var(--fngc-charcoal);
    background: var(--fngc-white);
    -webkit-font-smoothing: antialiased;
}

.fngc-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 31px;
}

/* Header Navigation */
.fngc-masthead {
    background: var(--fngc-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--fngc-gold);
}

.fngc-masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 29px;
    max-width: 1180px;
    margin: 0 auto;
}

.fngc-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--fngc-white);
}

.fngc-brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--fngc-gold), var(--fngc-gold-dark));
    border-radius: var(--fngc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--fngc-black);
}

.fngc-brand-name {
    font-family: var(--fngc-font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.fngc-brand-name span {
    color: var(--fngc-gold);
}

.fngc-navigation {
    display: flex;
    align-items: center;
    gap: 9px;
}

.fngc-nav-item {
    color: var(--fngc-silver);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 20px;
    border-radius: var(--fngc-radius-sm);
    transition: var(--fngc-transition);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.fngc-nav-item:hover,
.fngc-nav-item.active {
    color: var(--fngc-white);
    background: rgba(214,171,89,0.15);
}

.fngc-nav-cta {
    background: var(--fngc-gold);
    color: var(--fngc-black);
    font-weight: 600;
    margin-left: 15px;
}

.fngc-nav-cta:hover {
    background: var(--fngc-gold-hover);
    color: var(--fngc-black);
}

/* Mobile Menu */
.fngc-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.fngc-burger-line {
    width: 27px;
    height: 2px;
    background: var(--fngc-white);
    transition: var(--fngc-transition);
}

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

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

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

.fngc-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--fngc-charcoal);
    padding: 15px 26px 25px;
}

.fngc-mobile-menu.open {
    display: flex;
}

.fngc-mobile-link {
    color: var(--fngc-silver);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.fngc-mobile-link:hover {
    color: var(--fngc-gold);
}

/* Hero Section */
.fngc-hero {
    background: linear-gradient(135deg, var(--fngc-black) 0%, var(--fngc-charcoal) 100%);
    color: var(--fngc-white);
    padding: 82px 0 67px;
    position: relative;
    overflow: hidden;
}

.fngc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(212,167,88,0.05) 100%);
}

.fngc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.fngc-hero-label {
    display: inline-block;
    background: rgba(213,176,80,0.2);
    color: var(--fngc-gold);
    padding: 7px 18px;
    border-radius: 51px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 26px;
    border: 1px solid rgba(210,162,83,0.3);
}

.fngc-hero-heading {
    font-family: var(--fngc-font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 19px;
    letter-spacing: -1px;
}

.fngc-hero-heading span {
    color: var(--fngc-gold);
}

.fngc-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.fngc-hero-actions {
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
}

/* Buttons */
.fngc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 31px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--fngc-radius-sm);
    transition: var(--fngc-transition);
    border: none;
    cursor: pointer;
}

.fngc-btn-gold {
    background: var(--fngc-gold);
    color: var(--fngc-black);
}

.fngc-btn-gold:hover {
    background: var(--fngc-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208,173,82,0.35);
}

.fngc-btn-outline {
    background: transparent;
    color: var(--fngc-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.fngc-btn-outline:hover {
    border-color: var(--fngc-gold);
    color: var(--fngc-gold);
}

/* Phone CTA Component */
.fngc-phone-cta {
    background: linear-gradient(135deg, var(--fngc-gold-dark), var(--fngc-gold));
    padding: 26px 29px;
    border-radius: var(--fngc-radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 23px;
    margin: 39px 0;
}

.fngc-phone-cta-text {
    color: var(--fngc-black);
}

.fngc-phone-cta-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fngc-phone-cta-text p {
    font-size: 14px;
    opacity: 0.8;
}

.fngc-phone-cta-number {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--fngc-black);
    color: var(--fngc-white);
    padding: 16px 21px;
    border-radius: var(--fngc-radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--fngc-transition);
}

.fngc-phone-cta-number:hover {
    background: var(--fngc-charcoal);
    transform: scale(1.02);
}

/* Companies Section */
.fngc-companies-section {
    padding: 79px 0;
    background: var(--fngc-offwhite);
}

.fngc-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.fngc-section-tag {
    display: inline-block;
    background: var(--fngc-gold);
    color: var(--fngc-black);
    padding: 7px 16px;
    border-radius: 53px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 19px;
}

.fngc-section-title {
    font-family: var(--fngc-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--fngc-black);
    margin-bottom: 10px;
    letter-spacing: -0.6px;
}

.fngc-section-subtitle {
    font-size: 17px;
    color: var(--fngc-gray);
}

/* Company Cards */
.fngc-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.fngc-company-card {
    background: var(--fngc-white);
    border-radius: var(--fngc-radius-md);
    padding: 29px;
    box-shadow: var(--fngc-shadow-subtle);
    transition: var(--fngc-transition);
    border: 1px solid var(--fngc-lightgray);
    position: relative;
}

.fngc-company-card:hover {
    box-shadow: var(--fngc-shadow-medium);
    transform: translateY(-4px);
    border-color: var(--fngc-gold);
}

.fngc-company-card.featured {
    border: 2px solid var(--fngc-gold);
}

.fngc-company-card.featured::before {
    content: 'Top Pick';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--fngc-gold);
    color: var(--fngc-black);
    padding: 5px 16px;
    border-radius: 47px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.fngc-company-rank {
    width: 34px;
    height: 36px;
    background: var(--fngc-black);
    color: var(--fngc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 23px;
}

.fngc-company-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 13px;
}

.fngc-company-name {
    font-size: 23px;
    font-weight: 700;
    color: var(--fngc-black);
    margin-bottom: 5px;
}

.fngc-company-tagline {
    font-size: 14px;
    color: var(--fngc-gray);
    margin-bottom: 17px;
}

.fngc-company-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
}

.fngc-stars {
    color: var(--fngc-gold);
    font-size: 16px;
    letter-spacing: 1px;
}

.fngc-rating-value {
    font-weight: 700;
    color: var(--fngc-black);
}

.fngc-company-meta {
    display: flex;
    gap: 19px;
    font-size: 12px;
    color: var(--fngc-gray);
    margin-bottom: 18px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--fngc-lightgray);
}

.fngc-company-buttons {
    display: flex;
    gap: 13px;
}

.fngc-company-buttons .fngc-btn {
    flex: 1;
    justify-content: center;
    padding: 14px 13px;
    font-size: 16px;
}

/* Pros Cons List Component */
.fngc-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin: 41px 0;
}

.fngc-pros-box,
.fngc-cons-box {
    background: var(--fngc-white);
    border-radius: var(--fngc-radius-md);
    padding: 28px;
    box-shadow: var(--fngc-shadow-subtle);
}

.fngc-pros-box {
    border-top: 4px solid var(--fngc-success);
}

.fngc-cons-box {
    border-top: 4px solid var(--fngc-danger);
}

.fngc-pros-box h3,
.fngc-cons-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.fngc-pros-box h3::before {
    content: '+';
    width: 28px;
    height: 28px;
    background: var(--fngc-success);
    color: var(--fngc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.fngc-cons-box h3::before {
    content: '-';
    width: 28px;
    height: 28px;
    background: var(--fngc-danger);
    color: var(--fngc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.fngc-pros-box ul,
.fngc-cons-box ul {
    list-style: none;
}

.fngc-pros-box li,
.fngc-cons-box li {
    padding: 14px 0;
    border-bottom: 1px solid var(--fngc-lightgray);
    font-size: 15px;
    padding-left: 27px;
    position: relative;
}

.fngc-pros-box li:last-child,
.fngc-cons-box li:last-child {
    border-bottom: none;
}

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

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

/* Comparison Table Component */
.fngc-comparison-section {
    margin: 48px 0;
}

.fngc-comparison-table {
    width: 100%;
    overflow-x: auto;
}

.fngc-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--fngc-white);
    border-radius: var(--fngc-radius-md);
    overflow: hidden;
    box-shadow: var(--fngc-shadow-subtle);
}

.fngc-table thead {
    background: var(--fngc-black);
    color: var(--fngc-white);
}

.fngc-table th {
    padding: 19px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.fngc-table tbody tr {
    border-bottom: 1px solid var(--fngc-lightgray);
    transition: var(--fngc-transition);
}

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

.fngc-table tbody tr:hover {
    background: rgba(206,169,85,0.05);
}

.fngc-table td {
    padding: 21px 19px;
    font-size: 12px;
}

.fngc-table td:first-child {
    font-weight: 600;
    color: var(--fngc-black);
}

.fngc-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 53px;
    font-size: 14px;
    font-weight: 600;
}

.fngc-badge-success {
    background: rgba(56,146,107,0.15);
    color: var(--fngc-success);
}

.fngc-badge-danger {
    background: rgba(196,79,78,0.15);
    color: var(--fngc-danger);
}

/* Content Section */
.fngc-content-section {
    padding: 67px 0;
}

.fngc-article {
    max-width: 800px;
    margin: 0 auto;
}

.fngc-article h1 {
    font-family: var(--fngc-font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--fngc-black);
    margin-bottom: 22px;
    line-height: 1.2;
}

.fngc-article h2 {
    font-family: var(--fngc-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--fngc-black);
    margin: 48px 0 23px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--fngc-gold);
}

.fngc-article h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--fngc-charcoal);
    margin: 35px 0 14px;
}

.fngc-article p {
    margin-bottom: 21px;
    color: var(--fngc-charcoal);
    line-height: 1.75;
}

.fngc-article ul {
    margin: 24px 0;
    padding-left: 27px;
}

.fngc-article li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.fngc-article-image {
    width: 100%;
    height: auto;
    border-radius: var(--fngc-radius-md);
    margin: 33px 0;
    box-shadow: var(--fngc-shadow-medium);
}

.fngc-intro-box {
    background: linear-gradient(135deg, var(--fngc-offwhite), var(--fngc-white));
    padding: 31px 31px;
    border-radius: var(--fngc-radius-md);
    border-left: 3px solid var(--fngc-gold);
    margin-bottom: 41px;
}

.fngc-intro-box p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Accordion */
.fngc-faq-section {
    padding: 73px 0;
    background: var(--fngc-offwhite);
}

.fngc-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.fngc-faq-item {
    background: var(--fngc-white);
    border-radius: var(--fngc-radius-md);
    box-shadow: var(--fngc-shadow-subtle);
    overflow: hidden;
    border: 1px solid var(--fngc-lightgray);
    transition: var(--fngc-transition);
}

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

.fngc-faq-item.open {
    border-color: var(--fngc-gold);
    box-shadow: var(--fngc-shadow-medium);
}

.fngc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--fngc-black);
    transition: var(--fngc-transition);
}

.fngc-faq-question:hover {
    color: var(--fngc-gold);
}

.fngc-faq-icon {
    width: 32px;
    height: 32px;
    background: var(--fngc-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--fngc-gray);
    transition: var(--fngc-transition);
    flex-shrink: 0;
}

.fngc-faq-item.open .fngc-faq-icon {
    background: var(--fngc-gold);
    color: var(--fngc-black);
    transform: rotate(180deg);
}

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

.fngc-faq-item.open .fngc-faq-answer {
    max-height: 500px;
}

.fngc-faq-answer-content {
    padding: 0 31px 23px;
    color: var(--fngc-gray);
    line-height: 1.75;
}

/* Footer */
.fngc-footer {
    background: var(--fngc-black);
    color: var(--fngc-silver);
    padding: 68px 0 31px;
}

.fngc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 53px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fngc-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.fngc-footer-title {
    color: var(--fngc-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.fngc-footer-links li {
    margin-bottom: 15px;
}

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

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

.fngc-footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 17px 27px;
    border-radius: var(--fngc-radius-sm);
    margin-bottom: 29px;
}

.fngc-footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.fngc-footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Contact Form */
.fngc-contact-section {
    padding: 70px 0;
}

.fngc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 53px;
    margin-top: 42px;
}

.fngc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fngc-contact-card {
    display: flex;
    gap: 21px;
    align-items: flex-start;
}

.fngc-contact-icon {
    width: 52px;
    height: 52px;
    background: var(--fngc-gold);
    border-radius: var(--fngc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fngc-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--fngc-black);
}

.fngc-contact-details h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--fngc-black);
    margin-bottom: 7px;
}

.fngc-contact-details p {
    font-size: 14px;
    color: var(--fngc-gray);
    margin: 0;
}

.fngc-form-wrapper {
    background: var(--fngc-offwhite);
    padding: 39px;
    border-radius: var(--fngc-radius-md);
}

.fngc-form-group {
    margin-bottom: 21px;
}

.fngc-form-label {
    display: block;
    font-weight: 600;
    color: var(--fngc-black);
    margin-bottom: 6px;
    font-size: 15px;
}

.fngc-form-input,
.fngc-form-textarea,
.fngc-form-select {
    width: 100%;
    padding: 14px 21px;
    border: 2px solid var(--fngc-lightgray);
    border-radius: var(--fngc-radius-sm);
    font-family: inherit;
    font-size: 12px;
    transition: var(--fngc-transition);
    background: var(--fngc-white);
}

.fngc-form-input:focus,
.fngc-form-textarea:focus,
.fngc-form-select:focus {
    outline: none;
    border-color: var(--fngc-gold);
    box-shadow: 0 0 0 3px rgba(215,168,88,0.15);
}

.fngc-form-textarea {
    resize: vertical;
    min-height: 130px;
}

.fngc-form-submit {
    width: 100%;
    padding: 14px;
    background: var(--fngc-gold);
    color: var(--fngc-black);
    border: none;
    border-radius: var(--fngc-radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--fngc-transition);
}

.fngc-form-submit:hover {
    background: var(--fngc-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,170,80,0.35);
}

.fngc-form-success {
    display: none;
    padding: 21px;
    background: rgba(62,147,113,0.1);
    border: 1px solid var(--fngc-success);
    border-radius: var(--fngc-radius-sm);
    color: var(--fngc-success);
    text-align: center;
    margin-top: 19px;
}

.fngc-form-success.show {
    display: block;
}

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

@media (max-width: 768px) {
    .fngc-burger {
        display: flex;
    }

    .fngc-navigation {
        display: none;
    }

    .fngc-hero-heading {
        font-size: 34px;
    }

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

    .fngc-hero-actions {
        flex-direction: column;
    }

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

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

    .fngc-article h1 {
        font-size: 30px;
    }

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

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

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

    .fngc-footer-grid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .fngc-table {
        font-size: 11px;
    }

    .fngc-table th,
    .fngc-table td {
        padding: 13px 14px;
    }
}

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

.fngc-companies-table-wrapper {
    overflow-x: auto;
    margin: 33px 0;
    border-radius: var(--fngc-radius-md);
    box-shadow: var(--fngc-shadow-medium);
    background: var(--fngc-white);
}

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

.fngc-companies-table thead {
    background: var(--fngc-black);
    color: var(--fngc-white);
}

.fngc-companies-table thead th {
    padding: 15px 19px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.fngc-companies-table tbody tr {
    border-bottom: 1px solid var(--fngc-lightgray);
    transition: var(--fngc-transition);
}

.fngc-companies-table tbody tr:hover {
    background: rgba(210,165,75,0.05);
}

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

.fngc-companies-table td {
    padding: 20px 19px;
    vertical-align: middle;
}

.fngc-company-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fngc-rank-badge {
    width: 33px;
    height: 36px;
    background: var(--fngc-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--fngc-white);
    font-size: 14px;
    flex-shrink: 0;
}

.fngc-company-name {
    font-weight: 700;
    color: var(--fngc-black);
    font-size: 16px;
}

.fngc-company-highlight {
    font-size: 13px;
    color: var(--fngc-gray);
    margin-top: 3px;
}

.fngc-rating-stars {
    display: flex;
    align-items: center;
    gap: 7px;
}

.fngc-stars {
    display: flex;
    gap: 3px;
}

.fngc-star {
    color: var(--fngc-gold);
    font-size: 16px;
}

.fngc-star.empty {
    color: var(--fngc-lightgray);
}

.fngc-rating-score {
    font-weight: 700;
    color: var(--fngc-black);
    font-size: 15px;
}

.fngc-bbb-badge {
    display: inline-flex;
    padding: 4px 10px;
    background: var(--fngc-offwhite);
    border: 1px solid var(--fngc-lightgray);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: var(--fngc-black);
}

.fngc-minimum-amount {
    font-weight: 600;
    color: var(--fngc-charcoal);
}

.fngc-table-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.fngc-feature-tag {
    display: inline-block;
    padding: 3px 13px;
    background: var(--fngc-offwhite);
    border-radius: var(--fngc-radius-sm);
    font-size: 11px;
    color: var(--fngc-gray);
    white-space: nowrap;
}

.fngc-table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fngc-btn-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: var(--fngc-gold);
    color: var(--fngc-black);
    text-decoration: none;
    border-radius: var(--fngc-radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: var(--fngc-transition);
    white-space: nowrap;
}

.fngc-btn-visit:hover {
    background: var(--fngc-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211,175,82,0.35);
}

.fngc-btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    background: transparent;
    color: var(--fngc-charcoal);
    text-decoration: none;
    border-radius: var(--fngc-radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--fngc-transition);
    border: 1px solid var(--fngc-lightgray);
    white-space: nowrap;
}

.fngc-btn-review:hover {
    border-color: var(--fngc-gold);
    color: var(--fngc-gold);
}

/* Mobile Table Card Layout */
@media (max-width: 900px) {
    .fngc-companies-table thead {
        display: none;
    }

    .fngc-companies-table tbody tr {
        display: block;
        padding: 26px;
        margin-bottom: 13px;
        border: 2px solid var(--fngc-lightgray);
        border-radius: var(--fngc-radius-md);
        background: var(--fngc-white);
    }

    .fngc-companies-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 0;
        border-bottom: 1px solid var(--fngc-lightgray);
    }

    .fngc-companies-table td:last-child {
        border-bottom: none;
        padding-top: 17px;
    }

    .fngc-companies-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 12px;
        color: var(--fngc-gray);
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    .fngc-company-info {
        flex-direction: row-reverse;
    }

    .fngc-table-actions {
        width: 100%;
        justify-content: stretch;
    }

    .fngc-btn-visit,
    .fngc-btn-review {
        flex: 1;
        text-align: center;
    }
}

/* =============================================
   REVIEW PAGE STYLES
   ============================================= */

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

.fngc-review-title {
    font-family: var(--fngc-font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--fngc-black);
    margin-bottom: 17px;
    letter-spacing: -0.5px;
}

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

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

.fngc-review-badge {
    padding: 5px 19px;
    background: var(--fngc-gold);
    border-radius: 49px;
    font-weight: 700;
    font-size: 11px;
    color: var(--fngc-black);
}

.fngc-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 33px;
    background: var(--fngc-offwhite);
    border-radius: var(--fngc-radius-md);
    margin-bottom: 42px;
}

.fngc-fact-item {
    text-align: center;
    padding: 13px;
    background: var(--fngc-white);
    border-radius: var(--fngc-radius-sm);
    box-shadow: var(--fngc-shadow-subtle);
}

.fngc-fact-label {
    font-size: 12px;
    color: var(--fngc-gray);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}

.fngc-fact-value {
    font-size: 19px;
    font-weight: 700;
    color: var(--fngc-black);
}

.fngc-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 27px;
    margin: 42px 0;
}

.fngc-pros,
.fngc-cons {
    padding: 25px;
    border-radius: var(--fngc-radius-md);
    background: var(--fngc-white);
    box-shadow: var(--fngc-shadow-subtle);
}

.fngc-pros {
    border-top: 4px solid var(--fngc-success);
}

.fngc-cons {
    border-top: 4px solid var(--fngc-danger);
}

.fngc-pros h3 {
    color: var(--fngc-success);
    margin-bottom: 14px;
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fngc-cons h3 {
    color: var(--fngc-danger);
    margin-bottom: 19px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
}

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

.fngc-pros li,
.fngc-cons li {
    padding: 15px 0;
    padding-left: 27px;
    position: relative;
    border-bottom: 1px solid var(--fngc-lightgray);
}

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

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

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

.fngc-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: var(--fngc-radius-md);
    overflow: hidden;
    box-shadow: var(--fngc-shadow-subtle);
}

.fngc-fee-table thead {
    background: var(--fngc-black);
    color: var(--fngc-white);
}

.fngc-fee-table th,
.fngc-fee-table td {
    padding: 16px 23px;
    text-align: left;
}

.fngc-fee-table tbody tr {
    border-bottom: 1px solid var(--fngc-lightgray);
}

.fngc-fee-table tbody tr:nth-child(even) {
    background: var(--fngc-offwhite);
}

.fngc-cta-box {
    background: linear-gradient(135deg, var(--fngc-black), var(--fngc-charcoal));
    color: var(--fngc-white);
    padding: 37px;
    border-radius: var(--fngc-radius-md);
    text-align: center;
    margin: 51px 0;
    position: relative;
    overflow: hidden;
}

.fngc-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(208,168,74,0.08) 100%);
    pointer-events: none;
}

.fngc-cta-box h3 {
    font-family: var(--fngc-font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.fngc-cta-box p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.fngc-cta-box .fngc-btn {
    position: relative;
    z-index: 1;
}

.fngc-btn-primary {
    background: var(--fngc-gold);
    color: var(--fngc-black);
    padding: 16px 39px;
    border-radius: var(--fngc-radius-sm);
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
    transition: var(--fngc-transition);
}

.fngc-btn-primary:hover {
    background: var(--fngc-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206,164,77,0.35);
}

.fngc-other-companies {
    margin-top: 58px;
    padding-top: 41px;
    border-top: 1px solid var(--fngc-lightgray);
}

.fngc-other-companies h3 {
    font-family: var(--fngc-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--fngc-black);
    margin-bottom: 26px;
    text-align: center;
}

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

.fngc-other-card {
    padding: 23px;
    background: var(--fngc-white);
    border: 1px solid var(--fngc-lightgray);
    border-radius: var(--fngc-radius-md);
    transition: var(--fngc-transition);
}

.fngc-other-card:hover {
    box-shadow: var(--fngc-shadow-medium);
    transform: translateY(-4px);
    border-color: var(--fngc-gold);
}

.fngc-other-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--fngc-black);
    margin-bottom: 11px;
}

.fngc-other-card p {
    font-size: 16px;
    color: var(--fngc-gray);
    margin-bottom: 9px;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

.fngc-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


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

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


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

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

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

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

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


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

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

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

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

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

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

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


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

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