/**
 * LinkGX Theme Main Styles
 * Based on the original landing page design
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

/* WordPress Admin Bar Offset */
.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* Body offset when admin bar is present */
body.admin-bar {
    padding-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: 46px;
    }
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 30px;
    width: auto;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #ff6600;
}

/* WordPress Menu Link Overrides */
.nav-links a,
.nav-links .menu-item a,
.nav-links .menu a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links .menu-item a:hover,
.nav-links .menu a:hover {
    color: #ff6600 !important;
}

.nav-links a:visited,
.nav-links .menu-item a:visited,
.nav-links .menu a:visited {
    color: #e0e0e0 !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    padding: 8px 16px;
    background: transparent;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.btn-login:hover {
    background: #1a1a1a;
    border-color: #555;
    color: #fff;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #333;
    color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: #1a1a1a;
    border-color: #555;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #e0e0e0;
    text-decoration: none;
    transition: background 0.3s ease;
}

.language-option:hover {
    background: #2a2a2a;
}

.language-option.current {
    background: #333;
    color: #ff6600;
}

.lang-code {
    font-weight: 600;
    font-size: 12px;
}

.lang-name {
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #e0e0e0;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 2001;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: #e0e0e0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #1a1a1a;
    border-left: 1px solid #333;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #333;
}

/* Compact Language Switcher in Mobile Menu Header */
.mobile-language-switcher-compact {
    position: relative;
}

.mobile-language-btn-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-language-btn-compact:hover {
    background: #333;
    border-color: #ff6600;
    color: #ff6600;
}

.mobile-lang-arrow-compact {
    transition: transform 0.3s ease;
}

.mobile-language-btn-compact.active .mobile-lang-arrow-compact {
    transform: rotate(180deg);
}

.mobile-language-dropdown-compact {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 4px;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    min-width: 140px;
}

.mobile-language-dropdown-compact.active {
    display: block;
}

.mobile-language-option-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
    font-size: 0.8rem;
}

.mobile-language-option-compact:last-child {
    border-bottom: none;
}

.mobile-language-option-compact:hover {
    background: #333;
    color: #ff6600;
}

.mobile-language-option-compact.current {
    background: #333;
    color: #ff6600;
    font-weight: 600;
}

.mobile-language-option-compact .lang-code {
    font-weight: 600;
    font-size: 0.75rem;
}

.mobile-language-option-compact .lang-name {
    font-size: 0.75rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #e0e0e0;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    padding: 20px;
}

.mobile-nav-links ul,
.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li,
.mobile-nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links .nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

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

.mobile-nav-links .nav-link:hover {
    color: #ff6600;
}

/* WordPress Mobile Menu Link Overrides */
.mobile-nav-links a,
.mobile-nav-links .menu-item a,
.mobile-nav-links .menu a,
.mobile-nav-menu a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
    display: block;
}

.mobile-nav-links a:hover,
.mobile-nav-links .menu-item a:hover,
.mobile-nav-links .menu a:hover,
.mobile-nav-menu a:hover {
    color: #ff6600 !important;
}

.mobile-nav-links a:visited,
.mobile-nav-links .menu-item a:visited,
.mobile-nav-links .menu a:visited,
.mobile-nav-menu a:visited {
    color: #e0e0e0 !important;
}

.mobile-nav-links .menu-item:last-child a,
.mobile-nav-links .menu li:last-child a {
    border-bottom: none;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.mobile-auth-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    display: block;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-auth-buttons .btn-login {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #333;
}

.mobile-auth-buttons .btn-login:hover {
    background: #333;
    border-color: #ff6600;
    color: #ff6600;
}

.mobile-auth-buttons .btn-primary {
    background: #ff6600;
    color: #ffffff;
    border: 1px solid #ff6600;
}

.mobile-auth-buttons .btn-primary:hover {
    background: #ff8533;
    border-color: #ff8533;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    margin-bottom: 20px;
    padding: 0 20px;
    position: relative;
}

.mobile-language-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-language-btn:hover {
    background: #333;
    border-color: #ff6600;
}

.mobile-lang-arrow {
    transition: transform 0.3s ease;
}

.mobile-language-btn.active .mobile-lang-arrow {
    transform: rotate(180deg);
}

.mobile-language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 6px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.mobile-language-dropdown.active {
    display: block;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.mobile-language-option:last-child {
    border-bottom: none;
}

.mobile-language-option:hover {
    background: #333;
    color: #ff6600;
}

.mobile-language-option.current {
    background: #333;
    color: #ff6600;
    font-weight: 600;
}

.mobile-language-option .lang-code {
    font-weight: 600;
    font-size: 0.9rem;
}

.mobile-language-option .lang-name {
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff6600, #ff8833);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #333;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    border-color: #555;
    color: #fff;
}

.btn-register {
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff6600, #ff8833);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #ff7700, #ff9944);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: #ff6600;
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.price-highlight {
    display: inline-block;
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #ff6600;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6600;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 5px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #111;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section - Flow Design */
.flow-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 25px;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateX(5px);
    border-color: #ff6600;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
}

.flow-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600, #ff8833);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-right: 25px;
    flex-shrink: 0;
}

.flow-step-content {
    flex: 1;
}

.flow-step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.flow-step-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Responsive Design for How It Works */
@media (max-width: 768px) {
    .flow-vertical {
        padding: 0 20px;
        gap: 15px;
    }
    
    .flow-step {
        padding: 15px;
        border-radius: 12px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .flow-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .flow-step-content {
        flex: 1;
    }
    
    .flow-step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .flow-step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .flow-vertical {
        gap: 12px;
        padding: 0 10px;
    }
    
    .flow-step {
        padding: 12px;
    }
    
    .flow-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .flow-step-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .flow-step-content p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

/* Features/Benefits Section - SpyRanking Style */
.features-container-spy {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.features-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.feature-tab {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-tab:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
}

.feature-tab.active {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: #ffffff;
}

.feature-tab-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tab-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-tab.active .feature-tab-icon img {
    filter: brightness(0) invert(1);
}

.feature-tab-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.features-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.feature-content {
    display: none;
}

.feature-content.active {
    display: block;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6600;
    display: flex;
    align-items: center;
}

.feature-content h3 .feature-header-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    color: #ff6600;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.feature-content h3 .feature-header-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-content p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .features-container-spy {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-sidebar {
        order: 1;
    }

    .features-content {
        order: 2;
    }

    .feature-tab {
        justify-content: center;
        text-align: center;
    }

    .feature-tab-text {
        font-size: 0.9rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }
}

/* Pricing Section */
.pricing-container {
    max-width: 500px;
    margin: 40px auto 0;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ff8833);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600, #ff8833);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 8px;
}

.pricing-unit {
    font-size: 1rem;
    color: #888;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: #4ade80;
    font-weight: bold;
    font-size: 14px;
}

/* Comparison Section */
.comparison-table {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    min-height: 60px;
}

.table-header div {
    padding: 20px 15px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    border-right: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.table-header div:first-child {
    justify-content: flex-start;
    padding-left: 25px;
}

.table-header div:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #333;
    min-height: 70px;
}

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

.table-cell {
    padding: 20px 15px;
    color: #e0e0e0;
    border-right: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    min-height: 70px;
    text-align: center;
}

.table-cell:first-child {
    font-weight: 500;
    justify-content: flex-start;
    padding-left: 25px;
    text-align: left;
}

.table-cell:last-child {
    border-right: none;
}

.check-mark {
    color: #4ade80;
    font-size: 20px;
    font-weight: bold;
    margin-right: 5px;
}

.cross-mark {
    color: #ef4444;
    font-size: 20px;
    font-weight: bold;
    margin-right: 5px;
}

.linkgx-highlight {
    background: rgba(255, 102, 0, 0.1);
}

/* Comparison Table Logo */
.linkgx-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-logo {
    height: 20px;
    width: auto;
    max-width: 80px;
}

.comparison-logo g[fill="#b3b3b3"] {
    fill: #ffffff;
}

.comparison-logo path[fill="#f60"] {
    fill: #ff6600;
}

/* Mobile Responsive Styles for Comparison Table */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .table-header {
        grid-template-columns: 1.8fr 1fr 1fr;
    }
    
    .table-row {
        grid-template-columns: 1.8fr 1fr 1fr;
    }
    
    .table-header div,
    .table-cell {
        padding: 15px 8px;
        font-size: 0.8rem;
    }
    
    .table-header div:first-child,
    .table-cell:first-child {
        padding-left: 15px;
        font-size: 0.85rem;
    }
    
    .check-mark,
    .cross-mark {
        font-size: 16px;
    }
    
    .comparison-logo {
        height: 16px;
        max-width: 60px;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        font-size: 0.8rem;
        margin: 20px -10px 0;
    }
    
    .table-header {
        grid-template-columns: 1.5fr 1fr 1fr;
        min-height: 50px;
    }
    
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        min-height: 60px;
    }
    
    .table-header div,
    .table-cell {
        padding: 12px 6px;
        font-size: 0.75rem;
        min-height: auto;
    }
    
    .table-header div:first-child,
    .table-cell:first-child {
        padding-left: 10px;
        font-size: 0.8rem;
    }
    
    .check-mark,
    .cross-mark {
        font-size: 14px;
    }
    
    .comparison-logo {
        height: 14px;
        max-width: 50px;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #ff6600;
    font-weight: bold;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-answer {
    padding: 20px 25px;
    background: #111;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-section .btn-primary {
    font-size: 1.1rem;
    padding: 16px 35px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
    border-color: #ff6600;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating .star {
    color: #ff6600;
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.author-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

/* Target Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
    border-color: #ff6600;
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.audience-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.audience-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Mobile responsive for testimonials and audience */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .audience-card {
        padding: 30px 20px;
    }
    
    .audience-title {
        font-size: 1.2rem;
    }
}

/* Legal Page Template Styles */
.legal-template {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page .page-header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.legal-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.legal-page .last-updated {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.legal-page .page-content {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-page .page-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    border-left: 4px solid #ff6600;
    padding-left: 20px;
}

.legal-page .page-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.legal-page .page-content p {
    margin-bottom: 20px;
}

.legal-page .page-content ul,
.legal-page .page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page .page-content li {
    margin-bottom: 10px;
}

.legal-page .page-content a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page .page-content a:hover {
    color: #ff8833;
    text-decoration: underline;
}

.legal-page .page-links {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
    .legal-template {
        padding: 100px 0 60px;
    }
    
    .legal-page .page-title {
        font-size: 2rem;
    }
    
    .legal-page .page-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
        padding-left: 15px;
    }
    
    .legal-page .page-content h3 {
        font-size: 1.2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    background: #0a0a0a;
    color: #888;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* WordPress footer menu styles */
.footer-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a,
.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-link:hover {
    color: #ff6600;
}

.footer p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Legal Page Hero Section */
.legal-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.legal-last-updated {
    font-size: 1.1rem;
    color: #ff6600;
    margin: 0;
    font-weight: 500;
}

.legal-last-updated time {
    color: #ff6600;
    font-weight: 600;
}

/* Legal Page Content */
.legal-template {
    padding: 60px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page .page-content {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.legal-page .page-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page .page-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page .page-content p {
    margin-bottom: 20px;
}

.legal-page .page-content ul,
.legal-page .page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page .page-content li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.legal-page .page-content a {
    color: #ff6600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-page .page-content a:hover {
    color: #ff8533;
}

/* Responsive Legal Page */
@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0 40px;
    }
    
    .legal-title {
        font-size: 2.2rem;
    }
    
    .legal-last-updated {
        font-size: 1rem;
    }
    
    .legal-template {
        padding: 40px 0;
    }
    
    .legal-page .page-content {
        font-size: 1rem;
    }
    
    .legal-page .page-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-page .page-content h3 {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 20px 0;
    }
    
    .nav-menu,
    .auth-buttons,
    .language-switcher {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        gap: 20px;
        flex-direction: column;
    }
}

/* 404 Error Page Styles */
.error-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-icon {
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.error-404-title {
    font-size: 8rem;
    font-weight: 900;
    color: #ff6600;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
    line-height: 1;
}

.error-404-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.error-404-description {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-404-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}



/* 404 Page Mobile Styles */
@media (max-width: 768px) {
    .error-404-title {
        font-size: 5rem;
    }
    
    .error-404-subtitle {
        font-size: 2rem;
    }
    
    .error-404-description {
        font-size: 1.1rem;
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }
}
