/* Override for hero section to allow styles.css to handle it */
.hero {
    padding: 6rem 2rem 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 52.4vh;
    width: 1238px;
    box-sizing: border-box;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    /* Overrides from pricing.css */
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 47vh;
}

body {
    background-color: #0f0f0f;
    color: #ffffff;
    background-image: 
        linear-gradient(rgba(15, 15, 15, 0.97), rgba(15, 15, 15, 0.97)),
        url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='50' height='50' fill='none' stroke='rgba(255, 255, 255, 0.05)' stroke-width='0.5' stroke-dasharray='2 2' stroke-dashoffset='0' /%3E%3C/svg%3E");
    background-size: 50px 50px;
    background-position: 0 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0; /* Adding margin 0 to ensure consistency */
    padding: 0; /* Adding padding 0 to ensure consistency */
    box-sizing: border-box; /* Adding box-sizing to ensure consistency */
}

/* To ensure all elements inherit box-sizing if not already globally set */
*,
*::before,
*::after {
    box-sizing: inherit;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 3.2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1400px;
    width: 1238px;
    margin: 0 auto;
    padding: 0rem 0 0rem;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-right: 3rem;
}

.logo-img {
    height: 28px;
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: stretch;
    height: 100%;
    margin-right: auto;
}

.nav-link {
    font-size: 0.95rem;
    color: #e0e0e0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    line-height: 1;
    height: 100%;
    position: relative;
    padding: 0 0.6rem;
    text-align: center;
}

.nav-link i {
    font-size: 0.55rem;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 6.5rem;
    transition: background 0.3s ease;
}

.dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #b0b0b0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown:hover {
    background: linear-gradient(to top, rgba(176, 176, 176, 0.15), transparent 90%);
}

.dropdown:hover::after {
    opacity: 1;
}

/* Specific rotation for Products dropdown chevron */
.dropdown:hover .products-nav-link i.product-chevron {
    transform: rotate(180deg);
}

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

.nav-buttons {
    margin-left: auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    height: 100%;
}

.btn {
    padding: 0;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 450;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

.btn-login {
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0 1rem;
}

.btn-login:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-signup {
    background-color: #136A9F;
    color: white;
    height: 2rem;
    border: 1px solid #7ACEFF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0 1rem;
    border-radius: 6px;
}

.btn-signup:hover {
    background-color: #1E88C9;
}

.nav-link-plain {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 6.5rem;
    transition: background 0.3s ease;
}

.nav-link-plain a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.nav-link-plain::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #b0b0b0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link-plain:hover {
    background: linear-gradient(to top, rgba(176, 176, 176, 0.15), transparent 90%);
}

.nav-link-plain:hover::after {
    opacity: 1;
}

/* New Products Dropdown Menu Styles */
.products-dropdown-main-container {
    position: relative; /* For positioning the dropdown menu */
}

.products-dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below the "Products" link */
    left: 0;
    background-color: #0D0D0F; /* Dark background for the dropdown */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.1rem;
    min-width: 320px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1100;
}

.products-dropdown-menu.resources-specific-menu {
    min-width: 260px;
}

.products-dropdown-main-container:hover .products-dropdown-menu {
    display: block;
}

.dropdown-menu-item {
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 0 1rem 0; 
    text-decoration: none;
    color: #E0E0E0;
    position: static; 
    left: auto; 
}

.dropdown-menu-item:last-child {
    margin-bottom: 0; 
}

.menu-item-icon-container {
    flex: 0 0 38px; 
    height: 38px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0D0D0F; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 4px; 
    padding: 0; 
    margin-right: 1rem; 
}

.menu-item-svg-icon {
    width: 20px;
    height: 20px;
    object-fit: contain; 
    filter: grayscale(100%) brightness(80%); 
    transition: filter 0.3s ease;
}

.menu-item-text-content {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-title {
    font-size: 0.8rem; 
    font-weight: 500;
    color: #D0D0D0; 
    line-height: 1.4;
    margin-bottom: 0.1rem;
    transition: color 0.3s ease; 
}

.menu-item-subtitle {
    font-size: 0.7rem; 
    color: #808080; 
    line-height: 1.4;
    transition: color 0.3s ease; 
}

.dropdown-menu-item:hover .menu-item-svg-icon {
    filter: grayscale(100%) brightness(220%); 
}

.dropdown-menu-item:hover .menu-item-title {
    color: #FFFFFF; 
}

.dropdown-menu-item:hover .menu-item-subtitle {
    color: #A0A0A0; 
}

/* Ensure a elements in nav don't have default browser blue */
a {
    text-decoration: none;
    color: inherit;
}

/* Footer Section Styles */
.site-footer {
    background-color: #0f0f0f; /* Match main section background color */
    color: #a0aec0; /* Light gray for text, similar to image */
    padding: 0; /* More padding top, less bottom - CHANGED FROM 4rem 0 2rem */
    font-size: 0.875rem; /* Equivalent to 14px if base is 16px */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-main-content {
    width: 1238px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15rem;
    margin-bottom: 0;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    padding: 3rem 5rem 5rem 3rem;
}

.footer-brand-area {
    flex: 0 0 200px; /* Fixed width for the brand area */
}

.footer-logo-year {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px; /* Adjust as needed */
    margin-right: 0.75rem;
}

.footer-logo-text {
    font-size: 1.25rem; /* Prominent like a logo */
    font-weight: 600;
    color: #ffffff;
}

.footer-copyright-year {
    font-size: 0.9rem;
    color: #cbd5e0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem; /* Space between icons */
}

.footer-social-icons a {
    color: #84878d;
    font-size: 1.1rem; /* Slightly reduced from 1.25rem */
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #ffffff;
}

.footer-links-columns-container {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    gap: 2.5rem; /* Gap between columns - CHANGED from 0.5rem to match image */
}

.footer-column {
    /* flex: 1; Let content define width up to a point, then wrap if needed */
}

.footer-column h4 {
    font-size: 0.875rem; /* 14px */
    color: #ffffff;
    font-weight: 600; /* Bold like image */
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #84878d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-contact-email {
    margin-top: 1rem;
}

.footer-contact-email a {
    color: #84878d;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-email a:hover {
    color: #ffffff;
}

.footer-copyright-bottom {
    width: 1238px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.footer-copyright-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #84878d; /* Same color as footer links */
    text-align: left;
}

/* Pre-footer Section - UPDATED */
.pre-footer {
    /* Remove old hero-like styles */
    /* padding: 8rem 0; */ /* Removed, spacing handled by new separator divs */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    width: 1238px;
    margin: 0 auto; /* Center the section */
    /* border-left: 1px dashed rgba(255, 255, 255, 0.2); */ /* Dashed left border - REMOVED */
    /* border-right: 1px dashed rgba(255, 255, 255, 0.2); */ /* Dashed right border - REMOVED */
    position: relative; /* Keep if any pseudo-elements are re-added at this level */
}

/* Remove old pseudo-elements for hero background effects */
.pre-footer::before,
.pre-footer::after {
    content: none;
}

.pre-footer-upper-separator,
.pre-footer-lower-separator {
    height: 9.2rem; /* Doubled from 4rem */
    width: 100%; /* Span the width of .pre-footer */
    border-left: 1px dashed rgba(255, 255, 255, 0.2); /* Match pre-footer dashed border */
    border-right: 1px dashed rgba(255, 255, 255, 0.2); /* Match pre-footer dashed border */
}

.pre-footer-lower-separator {
    background-image: url("data:image/svg+xml,%3Csvg width=\'64\' height=\'64\' viewBox=\'0 0 64 64\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M0 63.5 L64 63.5 M63.5 0 L63.5 64\' fill=\'none\' stroke=\'rgba(255,255,255,0.1)\' stroke-width=\'1\' stroke-dasharray=\'4%204\'/%3E%3C/svg%3E");
    background-size: 49.5px 49.5px; /* Squares will be 4rem x 4rem - User updated this */
}

.pre-footer-content-box { 
    display: flex;
    position: relative; 
    border-top: 1px solid #38383D;
    border-bottom: 1px solid #38383D;
    border-left: 1px solid rgba(255, 255, 255, 0.2); 
    border-right: 1px solid rgba(255, 255, 255, 0.2); 
    width: 100%; 
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden; 
    box-shadow: 0 16px 25px rgba(15, 15, 15, 0.25); 
}



.pre-footer-left {
    flex: 0 0 60%; /* Takes up 60% of the space */
    padding: 3rem 3.5rem; /* Ample padding */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically if needed */
    position: relative;
    z-index: 10;
}

.pre-footer-title-new { /* Was .pre-footer-title */
    font-size: 3rem; /* Large title size */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-left: 0; /* Ensure no unintended left margin */
    padding-left: 0; /* Ensure no unintended left padding */
    /* Remove background gradient text effect */
}

.pre-footer-subtitle-new { /* Was .pre-footer-subtitle */
    font-size: 1.1rem;
    color: #A8A8B3; /* Subtitle color from image */
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 450px;
}

.pre-footer-button-container {
    margin-top: 1rem;
    position: relative;
    z-index: 5;  /* Ensure buttons are clickable */
}

.pre-footer-right {
    flex: 0 0 40%; /* Takes up 40% of the space */
    border-left: 1px solid #38383D; /* Vertical separator line */
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.pre-footer-right .pre-footer-item {
    background-color: #131313;
    flex-grow: 1;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.pre-footer-item-link-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.pre-footer-item-link-wrapper:hover .pre-footer-item {
    background-color: #161616;
}

.pre-footer-item {
    padding: 2rem 3rem; /* Removed bottom padding for full height */
    position: relative; /* For arrow icon positioning */
    flex: 1; /* Take full height within link wrapper */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pre-footer-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem; /* Increased from 0.5rem */
}

.pre-footer-item-header i {
    font-size: 1.3rem;
    color: #B8B8C0; /* New lighter color */
    margin-right: 1rem;
}

.pre-footer-item-header h3 {
    font-size: 1.6rem; /* Increased from 1.4rem */
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex-grow: 1;
    text-align: center; /* Horizontally center the title text */
    transition: background 0.5s ease, text-shadow 0.5s ease;
}

.pre-footer-item-link {
    color: #A8A8B3; /* Arrow icon color */
    font-size: 1.2rem;
    text-decoration: none;
}

.pre-footer-item-link:hover i {
    color: #ffffff;
}

.pre-footer-item p {
    font-size: 0.95rem;
    color: #B8B8C0; /* New lighter color */
    line-height: 1.6;
    margin: 0;
    padding-left: 0; /* Align with icon by removing specific padding */
}

/* Hide icon and subtext in the community section of pre-footer */
.pre-footer-right .pre-footer-item .pre-footer-item-header i.fas.fa-users {
    display: none;
}

.pre-footer-right .pre-footer-item p {
    display: block; /* Make paragraph visible again */
    text-align: center; /* Center the icon within the paragraph */
    margin-top: 0; /* Let parent flexbox and header margin control spacing */
    padding-bottom: 3rem; /* Added bottom padding to increase gap between bottom edge and Discord icon */
    line-height: 1; /* Reset line-height if it was affecting vertical alignment */
}

.pre-footer-right .pre-footer-item p i.fab.fa-discord {
    font-size: 5.5rem; /* Increased from 4.5rem */
    color: rgba(255, 255, 255, 0.6); /* Lighter gray, was Discord blue */
    transition: color 0.3s ease, background 0.5s ease, text-shadow 0.5s ease;
}

/* Blue wave animation for Discord icon when hovering on Discord icon */
.pre-footer-right .pre-footer-item p i.fab.fa-discord:hover {
    background: linear-gradient(-45deg, #4A90E2, #6BB6FF, #4A90E2, #87CEEB, #4A90E2);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blueWave 4s ease-in-out infinite;
    text-shadow: 0 0 80px rgba(106, 182, 255, 0.3), 0 0 160px rgba(74, 144, 226, 0.3);
}

/* Blue wave animation for text when hovering on Discord icon - using parent container */
.pre-footer-item:has(p i.fab.fa-discord:hover) .pre-footer-item-header h3 {
    background: linear-gradient(-45deg, #4A90E2, #6BB6FF, #4A90E2, #87CEEB, #4A90E2);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blueWave 4s ease-in-out infinite;
    text-shadow: 0 0 80px rgba(106, 182, 255, 0.3), 0 0 160px rgba(74, 144, 226, 0.3);
}

/* Blue wave animation for text when hovering on text */
.pre-footer-item-header h3:hover {
    background: linear-gradient(-45deg, #4A90E2, #6BB6FF, #4A90E2, #87CEEB, #4A90E2);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blueWave 4s ease-in-out infinite;
    text-shadow: 0 0 80px rgba(106, 182, 255, 0.3), 0 0 160px rgba(74, 144, 226, 0.3);
}

/* Blue wave animation for Discord icon when hovering on text - using parent container */
.pre-footer-item:has(.pre-footer-item-header h3:hover) p i.fab.fa-discord {
    background: linear-gradient(-45deg, #4A90E2, #6BB6FF, #4A90E2, #87CEEB, #4A90E2);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blueWave 4s ease-in-out infinite;
    text-shadow: 0 0 80px rgba(106, 182, 255, 0.3), 0 0 160px rgba(74, 144, 226, 0.3);
}

/* Keyframe animation for blue wave effect */
@keyframes blueWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Adjust margin for the header above the icon */
.pre-footer-right .pre-footer-item-header {
    margin-bottom: 1.5rem; /* Reset to default for proper centering */
}

/* Responsive adjustments if needed */
@media (max-width: 1440px) {
    .plans-section,
    .tables-section,
    .faq-section,
    .pre-footer,
    .footer-main-content,
    .footer-copyright-bottom {
        width: 1080px;
    }
}

@media (max-width: 992px) {
    .plans-section,
    .tables-section,
    .faq-section,
    .pre-footer,
    .footer-main-content,
    .footer-copyright-bottom {
        width: 843px;
    }
}

@media (max-width: 768px) {
    .plans-section,
    .tables-section,
    .faq-section,
    .pre-footer,
    .footer-main-content,
    .footer-copyright-bottom {
        width: 691px;
    }
}

@media (max-width: 576px) {
    .plans-section,
    .tables-section,
    .faq-section,
    .pre-footer,
    .footer-main-content,
    .footer-copyright-bottom {
        width: 547px;
    }
}

@media (max-width: 480px) {
    .plans-section,
    .tables-section,
    .faq-section,
    .pre-footer,
    .footer-main-content,
    .footer-copyright-bottom {
        width: 100%;
        border-left: none;
        border-right: none;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
    }
}

/* Button styles to match home page */
.btn-primary {
    background-color: #136A9F;
    color: white;
    padding: 0.8rem 1.7rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #7ACEFF;
    box-shadow: 0 4px 14px rgba(33, 161, 235, 0.4);
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1E88C9;
    transform: none;
    box-shadow: 0 4px 14px rgba(33, 161, 235, 0.4);
}

/* Custom width for pre-footer button */
.btn-primary.btn-pre-footer-narrow {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    max-width: 220px;
    width: auto;
}

/* Plans Section */
.plans-section {
    padding: 0rem 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 1238px;
    box-sizing: border-box;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background-color: #0f0f0f;
}

.plans-content {
    /* max-width: 1100px; REMOVED */
    /* margin: 0 auto; REMOVED - .plans-section handles centering of the whole block */
    width: 100%; /* Fill the .plans-section content box */
    display: flex;
    flex-grow: 1;
    align-items: stretch;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: none; /* Default to no border */
    padding: 1.5rem;
    box-sizing: border-box;
    flex: 1;
    text-align: left;
}

.plan-card:first-child,
.plan-card:nth-child(4) {
    background-color: #0f0f0f;
    border-top: 1px dashed rgba(255, 255, 255, 0.2); /* Updated color and style */
    border-right: none;
    border-bottom: none;
    border-left: none;
}

.plan-card:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Updated color */
    border-left: 1px solid rgba(255, 255, 255, 0.2); /* Updated color */
    border-right: none;
    border-bottom: none;
    /* background-color will be the default rgba(255,255,255,0.03) from the base .plan-card rule */
}

.plan-card:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Updated color */
    border-left: 1px solid rgba(255, 255, 255, 0.2); /* Updated color */
    border-right: 1px solid rgba(255, 255, 255, 0.2); /* Updated color */
    border-bottom: none; 
    /* background-color will be the default rgba(255,255,255,0.03) from the base .plan-card rule */
}

/* Styling for elements within plan cards */
.plan-card .plan-title {
    font-size: 1.75rem; /* Corresponds to h3 roughly */
    font-weight: 500; /* Reduced from 600 for thinner font */
    margin-bottom: 0.25rem;
}

.plan-card .plan-subtitle {
    font-size: 0.9rem;
    color: #bbbbbb; /* Lighter text for subtitle */
    margin-bottom: 1.5rem;
}

.plan-card .plan-price {
    font-size: 3.2rem; /* Reduced from 3.5rem for smaller font */
    font-weight: 600; /* Reduced from 700 */
    margin-bottom: 1rem; /* Increased from 0.5rem for more space */
    line-height: 1;
}

/* Accent colors for plan elements */
.plan-title-free, /* Title of Free plan */
.plan-title-paid { /* Title of PRO plan */
    color: #FFFFFF;
}

.plan-price-free, /* Price of Free plan */
.plan-price-paid { /* Price of PRO plan */
    color: #FFFFFF;
}

.plan-card .btn-plan {
    display: block; /* Make button full width of its container within card */
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0.5rem;
    border: none; /* Remove default button border if any */
    transition: background-color 0.3s ease;
}

/* Increased specificity for the free plan button's border */
.plan-card .btn-plan-free { /* Increased specificity */
    background-color: transparent; 
    color: #e0e0e0; 
    border: 1px solid rgba(255, 255, 255, 0.4); /* Explicitly set to match .btn-login border */
}
.plan-card .btn-plan-free:hover { /* Increased specificity */
    background-color: transparent; 
    color: #ffffff; 
    border: 1px solid rgba(255, 255, 255, 0.7); /* Explicitly set to match .btn-login hover border */
}

.plan-card .btn-plan-paid { /* Increased specificity */
    background-color: #1E88C9; /* Paid plan button to primary blue - LIGHTER */
    border: 1px solid #7ACEFF; /* Added to match .btn-signup */
}
.plan-card .btn-plan-paid:hover { /* Increased specificity */
    background-color: #29A4E8; /* Darker blue for hover - LIGHTER HOVER */
    border: 1px solid #7ACEFF; /* Ensure border remains on hover */
}

.plan-card .plan-price-meta {
    font-size: 0.8rem;
    color: #bbbbbb;
    margin-bottom: 1.5rem;
    text-align: center; /* Center 'per user' text */
}

.plan-card .plan-features-header {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff; /* White header */
    margin-top: 1.5rem; /* Space above features header */
    margin-bottom: 0.75rem;
}

.plan-card .plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-card .plan-features-list li {
    font-size: 0.9rem;
    color: #e0e0e0; /* Standard text color for features */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center; /* Align checkmark with text */
}

.plan-card .plan-features-list li .fas.fa-check {
    color: #29A4E8; /* Green checkmarks for all plans for consistency */
    margin-right: 0.5rem;
}

/* Tables Section */
.tables-section {
    padding: 0rem 0 0rem;
    width: 1238px;
    box-sizing: border-box;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background-color: #0f0f0f;
}

.tables-content {
    /* Styles for the content within the table section, e.g., actual table */
    width: 100%; /* Fill the .tables-section */
    padding: 0; /* REMOVED horizontal padding */
    box-sizing: border-box;
}

.tables-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0; /* REMOVED space above the table */
}

.tables-section th,
.tables-section td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    text-align: left;
    vertical-align: middle;
}

.tables-section th {
    color: #FFFFFF;
    padding-bottom: 1.5rem; /* More space below header text */ 
    text-align: center; /* Center plan names */
    vertical-align: top; /* Align content to the top for consistent button placement */
}

.table-plan-header-content {
    margin-bottom: 0.75rem; /* Space between title/price and button */
}

.table-plan-name {
    font-size: 1.6rem; /* Larger font for plan name */
    font-weight: 600; /* Bolder - Reduced from 700 */
    color: #FFFFFF;
    display: inline; /* Keep on same line as price */
    margin-right: 0.5rem;
}

.table-plan-cost {
    font-size: 1.2rem; /* Smaller font for price number */
    font-weight: 600; /* Reduced from 700 for a thinner font */
    color: #A8A8A8; /* Medium gray for price, like image */
    display: inline;
}

.table-plan-interval {
    font-size: 0.9rem; /* Smaller font for '/ month' - Reduced from 1rem */
    font-weight: 500; /* Normal weight for interval */
    color: #B8B8B8; /* Lighter gray for interval, less emphasized */
}

.tables-section th.feature-col-header {
    text-align: left; /* Align the empty header cell to the left */
}

.tables-section td.feature-name {
    font-weight: 600;
    color: #e0e0e0;
    width: 40%; /* Give more width to feature names */
}

.tables-section td.feature-value {
    text-align: center;
    color: #bbbbbb;
    width: 30%;
}

.tables-section td.feature-value .fas.fa-check {
    color: #29A4E8; /* Green checkmark */
    margin-right: 0.3rem;
}

/* USAGE divider row */
.tables-section .table-section-divider {
    font-weight: 700;
    font-size: 0.9rem;
    color: #a0aec0; /* Lighter gray */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.5rem 1rem 0.5rem; /* Adjust padding for this special row */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Stronger divider */
    text-align: left;
}

/* Buttons in table header */
.btn-table-header {
    display: block;
    width: 80%;
    margin: 0.75rem auto 0;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-table-header .fas {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.btn-table-free {
    background-color: #333333; /* Dark gray like PAYG */
    color: #e0e0e0;
    border: 1px solid #555555;
}

.btn-table-free:hover {
    background-color: #444444;
    border-color: #666666;
}

.btn-table-pro {
    background-color: #1E88C9; /* Using the lighter blue from PRO plan button */
    color: #ffffff;
    border: 1px solid #7ACEFF; /* Matching border */
}

.btn-table-pro:hover {
    background-color: #29A4E8; /* Lighter hover */
    border-color: #7ACEFF;
}

/* Remove bottom border from the last row of tbody */
.tables-section tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    width: 1238px;
    box-sizing: border-box;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background-color: #0f0f0f;
}

.faq-content {
    width: 100%;
    padding: 0 2rem; /* Padding for content inside */
    box-sizing: border-box;
}

.faq-title {
    font-size: 2.5rem; /* Large title */
    font-weight: 700; /* Bold */
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2.5rem; /* Space below title */
}

.faq-list {
    max-width: 800px; /* Limit width of FAQ list for better readability */
    margin: 0 auto; /* Center the list within .faq-content */
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Divider line */
}

.faq-item:last-child {
    border-bottom: none; /* No border for the last item */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0; /* Vertical padding */
    cursor: pointer;
    list-style: none; /* Remove default marker from summary */
    font-size: 1.1rem;
    font-weight: 500;
    color: #e0e0e0;
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide default arrow in Chrome/Safari */
}

.faq-question i {
    font-size: 0.9rem;
    color: #888888;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1.5rem 0; /* Padding for the answer */
    color: #bbbbbb;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* Button styles to match home page */
.btn-primary {
    background-color: #136A9F;
    color: white;
    padding: 0.8rem 1.7rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #7ACEFF;
    box-shadow: 0 4px 14px rgba(33, 161, 235, 0.4);
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1E88C9;
    transform: none;
    box-shadow: 0 4px 14px rgba(33, 161, 235, 0.4);
}

/* Custom width for pre-footer button */
.btn-primary.btn-pre-footer-narrow {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
    max-width: 220px;
    width: auto;
}

@media (max-width: 1440px) {
    .nav-container {
        width: 1080px;
    }
}

@media (max-width: 992px) {
    .nav-container {
        width: 843px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        width: 691px;
        justify-content: space-between;
        position: relative;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .nav-container {
        width: 547px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        width: 94%;
    }
} 