:root {
    --bg-dark: #0b0c10;
    --bg-panel: #1f2833;
    --text-main: #c5c6c7;
    --text-light: #ffffff;
    --accent-cyan: #66fcf1;
    --accent-teal: #45a29e;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { color: var(--text-light); font-weight: 700; letter-spacing: 1px; }
a { text-decoration: none; color: var(--text-light); transition: var(--transition); }

/* Header & Logo */
header { background-color: rgba(11, 12, 16, 0.95); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--accent-cyan); text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; }
.logo span { color: var(--text-light); }
.nav-links { list-style: none; display: flex; gap: 30px; transition: var(--transition); }
.nav-links li a { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.nav-links li a:hover, .nav-links li a.active { color: var(--accent-cyan); }
.hamburger { display: none; cursor: pointer; background: none; border: none; z-index: 1001; }
.hamburger-line { width: 30px; height: 3px; background-color: var(--text-light); margin: 6px 0; transition: var(--transition); }

/* Dynamic Hero Fader Engine */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; position: relative; background-color: var(--bg-dark); overflow: hidden; }
.hero-bg-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-bg-slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(31, 40, 51, 0.7) 0%, rgba(11, 12, 16, 0.95) 100%); }
.hero-bg-slide.active { opacity: 1; z-index: 2; }
.hero-content { max-width: 900px; position: relative; z-index: 3; }
.hero h1 { font-size: 4rem; margin-bottom: 20px; line-height: 1.1; }
.hero h1 span { color: var(--accent-cyan); }
.hero p { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-main); }

/* Mini About Section */
.mini-about { background-color: var(--bg-panel); border-top: 1px solid rgba(102, 252, 241, 0.1); border-bottom: 1px solid rgba(102, 252, 241, 0.1); }
.mini-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1400px; margin: 0 auto; padding: 80px 20px; }
.mini-about-img { width: 100%; height: 400px; background-color: var(--bg-dark); border-radius: 8px; border: 1px solid rgba(102, 252, 241, 0.2); object-fit: cover; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.mini-about-content h2 { font-size: 2.2rem; color: var(--accent-cyan); margin-bottom: 20px; }
.mini-about-content p { margin-bottom: 20px; font-size: 1.1rem; }

/* Buttons */
.btn { display: inline-block; padding: 15px 40px; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; background-color: transparent; color: var(--accent-cyan); border: 1px solid var(--accent-cyan); border-radius: 4px; cursor: pointer; transition: var(--transition); }
.btn:hover { background-color: var(--accent-cyan); color: var(--bg-dark); box-shadow: 0 0 20px rgba(102, 252, 241, 0.3); }
.btn-solid { background-color: var(--accent-cyan); color: var(--bg-dark); }
.btn-solid:hover { background-color: transparent; color: var(--accent-cyan); }
.btn-block { display: block; width: 100%; text-align: center; margin-top: 20px; }

/* Pricing Grid */
.section-padding { padding: 100px 20px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: var(--accent-cyan); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background-color: rgba(31, 40, 51, 0.6); backdrop-filter: blur(10px); border-radius: 8px; padding: 40px; position: relative; border: 1px solid rgba(102, 252, 241, 0.1); transition: var(--transition); display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(102, 252, 241, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.pricing-card.premium { border-top: 3px solid var(--accent-cyan); }
.pricing-header { text-align: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
.pricing-header h3 { font-size: 1.8rem; color: var(--text-light); }
.price { font-size: 3rem; font-weight: 800; color: var(--accent-cyan); margin: 15px 0; }
.price span { font-size: 1rem; color: var(--text-main); font-weight: 400; }
.pricing-features { list-style: none; flex-grow: 1; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; }
.pricing-features li::before { content: '✓'; color: var(--accent-teal); margin-right: 15px; font-weight: bold; }
.admin-fee-notice { background-color: rgba(69, 162, 158, 0.05); border: 1px solid rgba(69, 162, 158, 0.3); padding: 15px; border-radius: 4px; margin-top: 20px; font-size: 0.9rem; text-align: center; }
.admin-fee-notice strong { color: var(--accent-cyan); }

/* Package Pages & Forms */
.package-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 150px auto 100px; padding: 0 20px; }
.package-illustration { background: linear-gradient(145deg, rgba(31, 40, 51, 0.8), rgba(11, 12, 16, 0.9)); border: 1px solid rgba(102, 252, 241, 0.15); border-radius: 8px; padding: 40px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); }
.package-illustration h2 { font-size: 2.5rem; margin-bottom: 20px; }
.package-illustration .price-tag { font-size: 2.5rem; color: var(--accent-cyan); font-weight: bold; margin-bottom: 30px; }
.package-illustration ul { list-style: none; margin-bottom: 30px; }
.package-illustration ul li { padding: 10px 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.application-form { background-color: rgba(31, 40, 51, 0.6); backdrop-filter: blur(10px); padding: 40px; border-radius: 8px; border-top: 3px solid var(--accent-teal); }
.application-form h3 { margin-bottom: 25px; color: var(--text-light); font-size: 1.8rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; }
.form-group input { width: 100%; padding: 15px; background-color: rgba(11, 12, 16, 0.8); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-light); border-radius: 4px; font-size: 1rem; transition: var(--transition); }
.form-group input:focus { outline: none; border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(102, 252, 241, 0.1); }
.alert { padding: 15px; margin-bottom: 20px; border-radius: 4px; }
.alert.success { background-color: rgba(69, 162, 158, 0.1); border: 1px solid var(--accent-teal); color: var(--accent-cyan); }
.alert.error { background-color: rgba(255, 0, 0, 0.05); border: 1px solid rgba(255, 0, 0, 0.3); color: #ff6b6b; }

/* Client Trust Slider */
.client-slider-container { background-color: rgba(31, 40, 51, 0.3); padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; position: relative; }
.client-slider-container::before, .client-slider-container::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; }
.client-slider-container::before { left: 0; background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%); }
.client-slider-container::after { right: 0; background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%); }
.client-track { display: flex; width: calc(250px * 10); animation: scroll 20s linear infinite; align-items: center; }
.client-logo { width: 250px; text-align: center; color: var(--text-main); font-size: 1.2rem; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; opacity: 0.3; transition: var(--transition); }
.client-logo:hover { opacity: 0.8; color: var(--accent-cyan); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 5)); } }

/* Footer */
footer { background-color: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 40px 20px; text-align: center; }
.footer-links { margin-bottom: 20px; }
.footer-links a { margin: 0 15px; font-size: 0.9rem; color: var(--text-main); }
.footer-links a:hover { color: var(--accent-cyan); }
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(11, 12, 16, 0.98); border-top: 1px solid var(--accent-teal); padding: 20px; z-index: 9999; display: flex; justify-content: center; align-items: center; gap: 30px; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.cookie-banner.show { transform: translateY(0); }

/* Animations & Responsive */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 992px) { .package-wrapper, .mini-about-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hamburger { display: block; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 100vw; height: 100vh; background-color: rgba(11, 12, 16, 0.98); flex-direction: column; justify-content: center; align-items: center; transition: right 0.4s ease; }
    .nav-links.active { right: 0; }
    .hamburger.active .hamburger-line:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
    .hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
    .hamburger.active .hamburger-line:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; padding: 20px 10px; }
}

/* =========================================
   ENTERPRISE DIRECTORY STYLES
   ========================================= */

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.client-card {
    background: linear-gradient(160deg, rgba(31, 40, 51, 0.9) 0%, rgba(11, 12, 16, 0.95) 100%);
    border-radius: 8px;
    border: 1px solid rgba(102, 252, 241, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    opacity: 0.3;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 252, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(102, 252, 241, 0.05);
}

.client-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.client-card-inner {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.client-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.meta-industry, .meta-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.meta-industry {
    color: var(--accent-cyan);
}

.meta-location {
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.meta-location::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-teal);
    margin-right: 8px;
}

.client-name {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.client-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.client-action-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition);
}

.client-action-link svg {
    transition: transform 0.3s ease;
    stroke: var(--text-main);
}

.client-card:hover .client-action-link {
    color: var(--accent-cyan);
}

.client-card:hover .client-action-link svg {
    stroke: var(--accent-cyan);
    transform: translateX(5px);
}

/* Pagination Engine */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.page-link {
    padding: 10px 18px;
    background-color: rgba(31, 40, 51, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.page-link:hover, .page-link.active {
    background-color: transparent;
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.1);
}