/* Gucci Smooth Style - Premium Gold IRA Site */
/* Fix horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    --gc-primary: #24121a;
    --gc-accent: #0d572b;
    --gc-gold: #ddb03f;
    --gc-gold-light: #f4e2bf;
    --gc-gold-dark: #ae8e1e;
    --gc-bg: #FAFAFA;
    --gc-bg-dark: #132221;
    --gc-text: #2e2e2c;
    --gc-text-light: #646966;
    --gc-border: #e8dfdb;
    --gc-shadow: rgba(0, 0, 0, 0.08);
    --gc-shadow-hover: rgba(0, 0, 0, 0.15);
    --gc-success: #0a4738;
    --gc-danger: #e13b46;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--gc-text);
    background: var(--gc-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(10,86,47,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(208,173,61,0.02) 0%, transparent 50%),
        linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    background-attachment: fixed;
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(12,73,48,0.008) 2px, rgba(13,83,57,0.008) 4px);
    pointer-events: none;
    z-index: 0;
}

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

.gc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 27px;
}

/* Price Ticker */
.gc-ticker {
    background: linear-gradient(135deg, #18171e 0%, #164730 50%, #1a2215 100%);
    background-size: 200% 100%;
    animation: gc-ticker-gradient 8s ease infinite;
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 3px solid rgba(211,170,54,0.25);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

@keyframes gc-ticker-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gc-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); visibility: hidden; }
}

.gc-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 33px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.gc-ticker-item {
    display: flex;
    align-items: center;
    gap: 13px;
    white-space: nowrap;
}

.gc-ticker-metal {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.gc-ticker-price {
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gc-gold) 0%, var(--gc-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(214,167,56,0.4);
    position: relative;
    transition: all 0.3s ease;
}

.gc-ticker-item:hover .gc-ticker-price {
    transform: scale(1.05);
}

.gc-ticker-change {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.gc-ticker-change--up {
    color: #27a548;
}

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

.gc-ticker-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.gc-ticker-update {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.gc-ticker-live {
    width: 5px;
    height: 7px;
    background: #1ea244;
    border-radius: 50%;
    display: inline-block;
    animation: gc-pulse 2s infinite;
}

@keyframes gc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.gc-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--gc-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.gc-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gc-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--gc-primary);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.6px;
}

.gc-logo-icon {
    width: 36px;
    height: 38px;
    background: linear-gradient(135deg, var(--gc-accent) 0%, var(--gc-gold) 50%, var(--gc-accent) 100%);
    background-size: 200% 100%;
    animation: gc-logo-gradient 3s ease infinite;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(22,74,45,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

@keyframes gc-logo-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.gc-logo:hover .gc-logo-icon {
    transform: rotate(5deg) scale(1.05);
}

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

.gc-nav {
    display: flex;
    gap: 31px;
    align-items: center;
}

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

.gc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gc-accent), var(--gc-gold), var(--gc-accent));
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(10,87,47,0.4);
}

.gc-nav-link:hover {
    color: var(--gc-accent);
}

.gc-nav-link:hover::after {
    width: 100%;
}

.gc-nav-link--active {
    color: var(--gc-accent);
}

.gc-nav-link--active::after {
    width: 100%;
}

.gc-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

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

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

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

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

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

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

/* CTA Menu Bar */
.gc-cta-menu-bar {
    text-align: center;
    padding: 15px 19px;
    background: #fff;
    border-bottom: 1px solid #dcebea;
}

.gc-cta-menu-link {
    color: #8c0a0a;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.gc-cta-menu-link:hover {
    color: #540a0a;
    text-decoration: underline;
}

/* Hero Section */
.gc-hero {
    background: linear-gradient(135deg, #1f1712 0%, #0a4838 30%, #20231d 50%, #0a542e 70%, #211b13 100%);
    background-size: 200% 200%;
    animation: gc-hero-gradient 10s ease infinite;
    color: #ffffff;
    padding: 27px 0 7px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(207,175,60,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(11,74,48,0.1) 0%, transparent 50%);
    animation: gc-hero-pulse 4s ease-in-out infinite;
}

.gc-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(209,178,62,0.02) 100px,
        rgba(210,172,54,0.02) 200px
    );
    animation: gc-hero-drift 20s linear infinite;
}

@keyframes gc-hero-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

.gc-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 27px;
    position: relative;
    z-index: 2;
}

.fb-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.gc-hero-badge {
    display: inline-block;
    padding: 10px 17px;
    background: rgba(211,181,55,0.15);
    border: 1px solid rgba(212,175,47,0.3);
    border-radius: 27px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gc-gold);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 18px;
}

.gc-hero-title {
    font-size: 41px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--gc-gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: gc-title-glow 3s ease-in-out infinite;
}

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

.gc-hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 24px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.gc-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 31px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gc-btn-primary {
    background: linear-gradient(135deg, var(--gc-accent) 0%, #17543a 50%, var(--gc-accent) 100%);
    background-size: 200% 100%;
    animation: gc-btn-gradient 3s ease infinite;
    color: #ffffff;
    box-shadow: 
        0 6px 20px rgba(18,78,52,0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

@keyframes gc-btn-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(21,75,45,0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

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

/* Rating Section */
.gc-rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 33px 0;
    border-top: 1px solid var(--gc-border);
    border-bottom: 1px solid var(--gc-border);
}

.gc-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
    max-width: 1200px;
    margin: 0 auto;
    padding: 21px 35px;
    border-radius: 42px;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border: 2px solid var(--gc-border);
    position: relative;
    backdrop-filter: blur(9px);
}

.gc-rating-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gc-accent), var(--gc-gold), var(--gc-accent));
    border-radius: 38px;
    z-index: -1;
    opacity: 0.1;
    animation: gc-rating-border 3s ease infinite;
}

@keyframes gc-rating-border {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.gc-rating-label {
    font-size: 13px;
    color: var(--gc-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

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

.gc-star {
    font-size: 20px;
    color: #dfd3de;
}

.gc-star--filled {
    color: var(--gc-gold);
    text-shadow: 0 0 10px rgba(212,170,55,0.4);
    animation: gc-star-twinkle 2s ease-in-out infinite;
}

@keyframes gc-star-twinkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.gc-rating-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--gc-primary);
}

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

/* Main Content */
.gc-main {
    padding: 48px 0;
}

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

.gc-intro {
    margin-bottom: 43px;
    padding: 27px;
    background: linear-gradient(135deg, rgba(16,86,43,0.05) 0%, rgba(214,174,57,0.03) 50%, rgba(18,73,44,0.05) 100%);
    background-size: 200% 100%;
    animation: gc-intro-gradient 5s ease infinite;
    border-radius: 14px;
    border-left: 3px solid var(--gc-accent);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.gc-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(21,86,46,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes gc-intro-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gc-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gc-text);
    margin-bottom: 22px;
    font-weight: 500;
}

.gc-article h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gc-primary);
    margin: 50px 0 27px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 14px;
}

.gc-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gc-accent), var(--gc-gold), var(--gc-accent));
    background-size: 200% 100%;
    animation: gc-h2-underline 3s ease infinite;
    border-radius: 1px;
    box-shadow: 0 3px 5px rgba(22,80,54,0.3);
}

@keyframes gc-h2-underline {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gc-article h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--gc-primary);
    margin: 39px 0 16px 0;
}

.gc-article p {
    margin-bottom: 21px;
    line-height: 1.8;
    color: var(--gc-text);
}

.gc-list,
.gc-list-ordered {
    margin: 27px 0;
    padding-left: 27px;
}

.gc-list li,
.gc-list-ordered li {
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--gc-text);
}

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

.gc-image-wrapper {
    margin: 37px auto;
    max-width: 50%;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 12px 40px var(--gc-shadow),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gc-border);
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.4s ease;
}

.gc-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gc-accent), var(--gc-gold), var(--gc-accent));
    border-radius: 13px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gc-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px var(--gc-shadow-hover),
        0 8px 25px rgba(10,77,48,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gc-image-wrapper:hover::before {
    opacity: 0.3;
}

.gc-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

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

.gc-image-wrapper:hover .gc-article-image {
    transform: scale(1.03);
}

/* Table of Contents */
.gc-toc {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border: 2px solid var(--gc-border);
    border-radius: 13px;
    padding: 31px;
    margin: 39px 0;
    box-shadow: 
        0 10px 22px var(--gc-shadow),
        0 2px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.gc-toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gc-accent), var(--gc-gold), var(--gc-accent));
    opacity: 0.6;
}

.gc-toc-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gc-primary);
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gc-toc-list {
    list-style: none;
    padding: 0;
}

.gc-toc-item {
    margin-bottom: 7px;
}

.gc-toc-link {
    color: var(--gc-text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 11px;
}

.gc-toc-link::before {
    content: '→';
    color: var(--gc-accent);
    font-size: 14px;
}

.gc-toc-link:hover {
    color: var(--gc-accent);
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(13,84,42,0.2);
}

.gc-toc-link:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* CTA Banner */
.gc-cta-banner {
    background: linear-gradient(135deg, var(--gc-accent) 0%, #0a552e 50%, var(--gc-accent) 100%);
    background-size: 200% 100%;
    animation: gc-cta-gradient 5s ease infinite;
    color: #ffffff;
    padding: 39px;
    border-radius: 14px;
    text-align: center;
    margin: 47px 0;
    box-shadow: 
        0 12px 43px rgba(14,78,50,0.25),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214,169,49,0.2);
}

.gc-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(215,178,57,0.1) 0%, transparent 70%);
    animation: gc-cta-pulse 4s ease-in-out infinite;
}

@keyframes gc-cta-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gc-cta-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.gc-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 11px;
    color: #ffffff !important;
}

.gc-cta-text,
.gc-article .gc-cta-banner p,
.gc-cta-banner p {
    font-size: 20px;
    margin-bottom: 27px;
    color: #ffffff !important;
    opacity: 0.95;
}

.gc-cta-button {
    display: inline-block;
    padding: 12px 33px;
    background: var(--gc-gold);
    color: var(--gc-primary);
    text-decoration: none;
    border-radius: 7px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.gc-cta-button:hover {
    background: linear-gradient(135deg, var(--gc-gold-light) 0%, var(--gc-gold) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(216,172,50,0.4),
        0 4px 15px rgba(217,182,51,0.2);
}

/* Guarantee Badge */
.gc-guarantee {
    background: linear-gradient(135deg, rgba(218,175,59,0.12) 0%, rgba(22,75,47,0.06) 50%, rgba(204,179,60,0.12) 100%);
    background-size: 200% 100%;
    animation: gc-guarantee-gradient 4s ease infinite;
    border: 2px solid var(--gc-gold);
    border-radius: 15px;
    padding: 27px;
    margin: 42px 0;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(205,172,53,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.gc-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
    animation: gc-guarantee-shine 3s infinite;
}

@keyframes gc-guarantee-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gc-guarantee-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); visibility: hidden; }
}

.gc-guarantee-icon {
    font-size: 48px;
    margin-bottom: 17px;
    display: inline-block;
    animation: gc-guarantee-icon-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(207,176,54,0.3));
}

@keyframes gc-guarantee-icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.gc-guarantee-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gc-primary);
    margin-bottom: 13px;
}

.gc-guarantee-text {
    font-size: 13px;
    color: var(--gc-text-light);
    line-height: 1.6;
}

/* Info Table Cards */
.gc-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid var(--gc-border);
    border-radius: 15px;
    overflow: hidden;
    margin: 39px 0;
    box-shadow: 0 10px 22px var(--gc-shadow), 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gc-info-card:hover {
    border-color: rgba(12,85,42,0.3);
    box-shadow: 0 12px 35px var(--gc-shadow-hover), 0 4px 15px rgba(13,79,50,0.1);
}

.gc-info-card-header {
    background: linear-gradient(135deg, var(--gc-accent) 0%, #0d5135 50%, var(--gc-accent) 100%);
    background-size: 200% 100%;
    animation: gc-info-header-gradient 4s ease infinite;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.gc-info-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(211,167,48,0.4), transparent);
}

@keyframes gc-info-header-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gc-info-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.gc-info-card-title,
.gc-article .gc-info-card-header h2.gc-info-card-title,
.gc-info-card-header .gc-info-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    padding-bottom: 0 !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.gc-article .gc-info-card-header h2.gc-info-card-title::after {
    display: none !important;
}

.gc-info-card-body {
    padding: 21px 28px;
}

.gc-info-card-body p {
    margin-bottom: 19px;
    line-height: 1.7;
    color: var(--gc-text);
    font-size: 15px;
}

.gc-info-card-body p:last-child {
    margin-bottom: 0;
}

.gc-info-card-body .gc-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 17px 0;
}

.gc-info-table tr {
    border-bottom: 2px solid var(--gc-border);
    transition: background 0.2s ease;
}

.gc-info-table tr:last-child {
    border-bottom: none;
}

.gc-info-table tr:hover {
    background: rgba(16,76,44,0.03);
}

.gc-info-table td {
    padding: 13px 18px;
    vertical-align: top;
    line-height: 1.6;
    font-size: 15px;
    color: var(--gc-text);
}

.gc-info-table td:first-child {
    font-weight: 700;
    color: var(--gc-primary);
    white-space: nowrap;
    width: 1%;
    padding-right: 24px;
    position: relative;
}

.gc-info-table td:first-child::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(180deg, var(--gc-accent), var(--gc-gold));
    border-radius: 1px;
    opacity: 0.4;
}

.gc-info-card-note {
    margin-top: 18px;
    padding: 11px 18px;
    background: rgba(17,86,52,0.05);
    border-left: 3px solid var(--gc-accent);
    border-radius: 0 5px 7px 0;
    font-size: 17px;
    color: var(--gc-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gc-info-card-body {
        padding: 20px 13px;
    }

    .gc-info-card-header {
        padding: 16px 19px;
    }

    .gc-info-table td:first-child {
        white-space: normal;
    }

    .gc-info-table td {
        padding: 8px 13px;
        font-size: 17px;
    }

    .gc-info-card-title {
        font-size: 17px;
    }

    .gc-image-wrapper {
        max-width: 100%;
    }
}

/* Feature Grid */
.gc-features {
    margin: 62px 0;
    padding: 47px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
}

.gc-features-header {
    text-align: center;
    margin-bottom: 53px;
}

.gc-features-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--gc-primary);
    margin-bottom: 13px;
}

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

.gc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    padding: 0 21px;
}

.gc-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 32px 31px;
    border-radius: 8px;
    box-shadow: 
        0 7px 23px var(--gc-shadow),
        0 2px 8px 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);
    border: 1px solid var(--gc-border);
    position: relative;
    overflow: hidden;
}

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

.gc-feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 40px var(--gc-shadow-hover),
        0 8px 25px rgba(20,83,54,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(22,86,55,0.3);
}

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

.gc-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gc-accent) 0%, var(--gc-gold) 50%, var(--gc-accent) 100%);
    background-size: 200% 100%;
    animation: gc-icon-gradient 3s ease infinite;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    color: #ffffff;
    box-shadow: 
        0 6px 20px rgba(10,80,47,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

@keyframes gc-icon-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.gc-feature-card:hover .gc-feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(10,77,57,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.gc-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gc-primary);
    margin-bottom: 11px;
}

.gc-feature-desc {
    font-size: 16px;
    color: var(--gc-text-light);
    line-height: 1.6;
}

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

.gc-facts-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid var(--gc-accent);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 10px 35px var(--gc-shadow),
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.gc-facts-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(14,84,51,0.02) 20px, rgba(15,77,44,0.02) 21px);
    pointer-events: none;
}

.gc-facts-header {
    background: linear-gradient(135deg, var(--gc-accent) 0%, #135229 50%, var(--gc-accent) 100%);
    background-size: 200% 100%;
    animation: gc-facts-header-gradient 4s ease infinite;
    padding: 22px 31px;
    display: flex;
    align-items: center;
    gap: 17px;
    box-shadow: 0 3px 17px rgba(16,87,52,0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

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

@keyframes gc-facts-header-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gc-facts-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.gc-facts-title,
.gc-article h3.gc-facts-title,
.gc-article .gc-facts-header h3.gc-facts-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0;
    -webkit-text-fill-color: #ffffff !important;
}

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

.gc-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 32px;
    border-bottom: 1px solid var(--gc-border);
}

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

.gc-fact-label {
    font-size: 14px;
    color: var(--gc-text-light);
    font-weight: 500;
}

.gc-fact-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gc-primary);
}

/* FAQ Section */
.gc-faq-section {
    margin: 48px 0;
}

.gc-faq-header {
    text-align: center;
    margin-bottom: 51px;
}

.gc-faq-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--gc-primary);
    margin-bottom: 11px;
}

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

.gc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.gc-faq-item {
    background: #ffffff;
    border: 1px solid var(--gc-border);
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gc-faq-item:hover {
    border-color: var(--gc-accent);
    box-shadow: 0 4px 15px var(--gc-shadow);
}

.gc-faq-item.active {
    border-color: var(--gc-accent);
    box-shadow: 
        0 10px 30px var(--gc-shadow),
        0 4px 15px rgba(20,78,46,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

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

.gc-faq-question:hover {
    background: rgba(22,81,47,0.03);
}

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

.gc-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,75,56,0.1);
    border-radius: 50%;
    color: var(--gc-accent);
    transition: all 0.3s ease;
}

.gc-faq-item.active .gc-faq-icon {
    transform: rotate(180deg);
    background: var(--gc-accent);
    color: #ffffff;
}

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

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

.gc-faq-answer-content {
    padding: 0 24px 23px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--gc-text);
}

/* Footer */
.gc-footer {
    background: linear-gradient(135deg, #252525 0%, #0f5632 50%, #121d17 100%);
    background-size: 200% 100%;
    animation: gc-footer-gradient 10s ease infinite;
    color: rgba(255, 255, 255, 0.8);
    padding: 61px 0 33px;
    margin-top: 79px;
    position: relative;
    overflow: hidden;
}

.gc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
}

.gc-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(206,172,62,0.02) 100px, rgba(207,182,54,0.02) 101px);
    animation: gc-footer-drift 30s linear infinite;
}

@keyframes gc-footer-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.gc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 39px;
    max-width: 1200px;
    margin: 0 auto 37px;
    padding: 0 24px 43px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 17px;
}

.gc-footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

.gc-footer-links a:hover {
    color: var(--gc-gold);
    transform: translateX(3px);
    text-shadow: 0 0 8px rgba(211,173,49,0.3);
}

.gc-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 23px 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

/* Additional Detail Enhancements */
.gc-article p strong {
    color: var(--gc-accent);
    font-weight: 600;
    position: relative;
}

.gc-list li strong,
.gc-list-ordered li strong {
    color: var(--gc-primary);
    font-weight: 600;
}

.gc-hero-badge {
    position: relative;
    overflow: hidden;
}

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

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

.gc-fact-row {
    transition: all 0.3s ease;
    position: relative;
}

.gc-fact-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gc-accent), var(--gc-gold));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.gc-fact-row:hover {
    background: linear-gradient(90deg, rgba(18,85,54,0.05) 0%, transparent 100%);
    padding-left: 36px;
}

.gc-fact-row:hover::before {
    transform: scaleY(1);
}

.gc-toc-link {
    position: relative;
    padding-left: 11px;
}

.gc-toc-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gc-accent);
    transition: width 0.3s ease;
}

.gc-toc-link:hover::after {
    width: 4px;
}

.gc-cta-button {
    position: relative;
    overflow: hidden;
}

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

.gc-cta-button:hover::before {
    left: 100%;
}

.gc-guarantee-icon {
    position: relative;
}

.gc-guarantee-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--gc-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: gc-guarantee-ring 2s ease-in-out infinite;
}

@keyframes gc-guarantee-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .gc-header { position: relative !important; }
    .gc-menu-toggle {
        display: flex;
    }

    .gc-nav {
        display: none;
    }

    .gc-hero-title {
        font-size: 36px;
    }

    .gc-hero-subtitle {
        font-size: 16px;
    }

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

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

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

    .gc-features-grid {
        grid-template-columns: 1fr;
        padding: 0 22px;
    }

    .gc-faq-title,
    .gc-features-title {
        font-size: 26px;
    }

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

    .gc-fact-value {
        text-align: left;
    }
    
    .gc-hero-title {
        font-size: 26px;
    }
    
    .gc-article h2 {
        font-size: 24px;
    }
    
    .gc-features-title,
    .gc-faq-title {
        font-size: 24px;
    }
    
    .gc-toc {
        padding: 23px;
    }
    
    .gc-cta-banner {
        padding: 29px 22px;
    }
    
    .gc-guarantee {
        padding: 21px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


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

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

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

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

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

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

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

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

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

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

/* Critical overflow fix */
*, *::before, *::after {
    max-width: 100vw;
}
.gc-ticker::before {
    max-width: 100%;
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* CRITICAL: Fix gc-hero overflow issue */
.gc-hero {
    max-width: 100vw !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.gc-hero::before,
.gc-hero::after {
    max-width: 100vw !important;
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
}
section, header, footer, main, article, aside, nav {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}


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

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