/* 
 * Clean & Modular CSS
 * Zero Dependencies
 */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --accent-color: #f59e0b;
    --container-width: 1200px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background-color: #1e293b;
    color: #cbd5e1;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
}

.top-nav-left a,
.top-nav-right a {
    margin-right: 15px;
    color: #cbd5e1;
}

.top-nav-left a:hover,
.top-nav-right a:hover {
    color: var(--white);
}

.top-nav-right a:last-child {
    margin-right: 0;
}

.main-header {
    padding: 15px 0;
}

.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.site-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.search-area {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    background: var(--bg-color);
    transition: border-color 0.2s;
}

.search-form:focus-within {
    border-color: var(--primary-color);
    background: var(--white);
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.search-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cart-icon-wrapper {
    position: relative;
    color: var(--text-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* File Sections (Recent/Top) */
.file-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.file-list {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
    transition: background-color 0.1s;
}

.file-item:last-child {
    border-bottom: none;
}

.file-item:hover {
    background-color: #f1f5f9;
}

.file-link {
    color: var(--text-color);
    font-weight: 500;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-link svg {
    color: var(--secondary-color);
    width: 16px;
    height: 16px;
}

.badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.meta-info {
    color: var(--text-light);
    font-size: 12px;
}

/* Folder Grid */
.folders-section {
    padding: 40px 0;
}

.folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.folder-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.folder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.folder-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

/* CSS-only Folder Icon */
.folder-icon {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 0 4px 4px 4px;
    position: relative;
}

.folder-icon::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 20px;
    height: 8px;
    background: #fbbf24;
    border-radius: 4px 4px 0 0;
}

.folder-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.folder-desc {
    font-size: 13px;
    color: var(--text-light);
}

.ribbon {
    position: absolute;
    top: 10px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    font-weight: bold;
    border-radius: 3px;
}

/* =============================================
   NAVIGATION MENU BAR 
============================================= */
.nav-menu-bar {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #7c3aed 100%);
    padding: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.nav-menu-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.25s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-bottom-color: #fbbf24;
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =============================================
   SCROLLING NEWS TICKERS
============================================= */
.news-ticker-section {
    background: linear-gradient(180deg, #312e81 0%, #3730a3 100%);
    overflow: hidden;
    border-bottom: 2px solid #4338ca;
}

.ticker-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

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

.ticker-label {
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 140px;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.ticker-label svg {
    opacity: 0.8;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track::before,
.ticker-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 1;
    pointer-events: none;
}

.ticker-track::before {
    left: 0;
    background: linear-gradient(to right, #3730a3, transparent);
}

.ticker-track::after {
    right: 0;
    background: linear-gradient(to left, #3730a3, transparent);
}

.ticker-content {
    display: flex;
    align-items: center;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    transition: color 0.2s;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-item:hover {
    color: #ffffff;
}

.ticker-title {
    font-weight: 500;
    max-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.badge-featured {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

.badge-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

.ticker-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    flex-shrink: 0;
}

/* =============================================
   HOMEPAGE SLIDER
============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #1e1b4b;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.slide-active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px 40px;
    max-width: 700px;
}

.slide-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #4f46e5;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.slide-btn:hover {
    background: #eef2ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 6px;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot-active {
    background: #fff;
    transform: scale(1.2);
}

/* =============================================
   PAGE HERO HEADERS
============================================= */
.page-hero {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #6366f1 100%);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   PRICING CARDS
============================================= */
.pricing-section {
    padding-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border-color: #4f46e5;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}

.plan-ribbon {
    position: absolute;
    top: 16px;
    right: -8px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 14px 4px 10px;
    letter-spacing: 0.8px;
    border-radius: 4px 0 0 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.plan-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #047857;
    border-bottom: 8px solid transparent;
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.pricing-header-starter {
    background: linear-gradient(135deg, #475569, #64748b);
}

.pricing-header-silver {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.pricing-header-gold {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.pricing-header-diamond {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.plan-original-price {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 4px;
}

.plan-duration {
    font-size: 13px;
    opacity: 0.85;
}

.plan-discount-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.pricing-body {
    padding: 24px 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--text-color);
    border-bottom: 1px solid #f1f5f9;
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: #059669;
    flex-shrink: 0;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.plan-btn:hover {
    background: linear-gradient(135deg, #047857, #059669);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.plan-btn-featured {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.plan-btn-featured:hover {
    background: linear-gradient(135deg, #4338ca, #6d28d9);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* FAQ */
.pricing-info {
    margin-top: 20px;
}

.pricing-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.faq-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.faq-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   RECENT FILES LISTING
============================================= */
.recent-listing {
    padding-bottom: 40px;
}

.recent-file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-file-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px 22px;
    transition: all 0.2s;
}

.recent-file-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.rfc-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.rfc-info {
    flex: 1;
    min-width: 0;
}

.rfc-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.rfc-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
}

.rfc-title:hover {
    color: var(--primary-color);
}

.rfc-badges {
    display: flex;
    gap: 6px;
}

.rfc-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rfc-badge-new {
    background: #fef3c7;
    color: #d97706;
}

.rfc-badge-free {
    background: #d1fae5;
    color: #059669;
}

.rfc-badge-paid {
    background: #ede9fe;
    color: #7c3aed;
}

.rfc-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rfc-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rfc-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-light);
}

.rfc-price {
    color: #dc2626;
    font-weight: 600;
}

.rfc-action {
    flex-shrink: 0;
}

.rfc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.rfc-download-btn:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state h3 {
    margin-bottom: 6px;
    color: var(--text-color);
}

/* =============================================
   FORM STYLES (Request File, Contact)
============================================= */
.form-section,
.contact-main {
    padding-bottom: 50px;
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.form-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.form-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.form-group-header:first-of-type {
    margin-top: 0;
}

.form-step-dot {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.form-group-header h3 {
    margin: 0;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.required {
    color: #dc2626;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    background: #f8fafc;
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 16px;
    margin-top: 6px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.radio-label input {
    display: none;
}

.radio-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    transition: all 0.2s;
    position: relative;
}

.radio-label input:checked~.radio-dot {
    border-color: var(--primary-color);
}

.radio-label input:checked~.radio-dot::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-low input:checked~.radio-dot {
    border-color: #059669;
}

.radio-low input:checked~.radio-dot::after {
    background: #059669;
}

.radio-medium input:checked~.radio-dot {
    border-color: #d97706;
}

.radio-medium input:checked~.radio-dot::after {
    background: #d97706;
}

.radio-high input:checked~.radio-dot {
    border-color: #dc2626;
}

.radio-high input:checked~.radio-dot::after {
    background: #dc2626;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-family);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13.5px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-features {
    padding-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.feature-fast .feature-icon {
    background: #dbeafe;
    color: #2563eb;
}

.feature-expert .feature-icon {
    background: #d1fae5;
    color: #059669;
}

.feature-secure .feature-icon {
    background: #ede9fe;
    color: #7c3aed;
}

.feature-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.ci-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon-whatsapp {
    background: #d1fae5;
    color: #059669;
}

.contact-info-item h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--text-light);
}

.contact-hours {
    margin-top: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-hours h4 {
    font-size: 13px;
    margin-bottom: 8px;
}

.contact-hours p {
    font-size: 12.5px;
    color: var(--text-light);
    margin-bottom: 2px;
}

/* =============================================
   AGENTS PAGE
============================================= */
.agent-stats {
    padding-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

.agents-listing {
    padding-bottom: 50px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.agent-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.agent-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.agent-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.agent-role-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.agent-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.agent-contacts {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.agent-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.agent-wa-btn {
    background: #d1fae5;
    color: #059669;
}

.agent-wa-btn:hover {
    background: #059669;
    color: #fff;
}

.agent-phone-btn {
    background: #dbeafe;
    color: #2563eb;
}

.agent-phone-btn:hover {
    background: #2563eb;
    color: #fff;
}

.agent-email-btn {
    background: #fef3c7;
    color: #d97706;
}

.agent-email-btn:hover {
    background: #d97706;
    color: #fff;
}

/* =============================================
   TEAMS PAGE
============================================= */
.team-section {
    padding-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.team-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}

.team-spec-badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10.5px;
    font-weight: 600;
}

.team-contact-info {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.team-ci {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
    justify-content: center;
}

/* =============================================
   TOOL FINDER
============================================= */
.tool-finder-section {
    padding-bottom: 50px;
}

.tf-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.tf-search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.tf-search-box svg {
    color: var(--text-light);
    flex-shrink: 0;
}

.tf-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: var(--font-family);
    background: transparent;
}

.tf-results-count {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.tf-table-wrapper {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.tf-table {
    width: 100%;
    border-collapse: collapse;
}

.tf-table thead {
    background: #f8fafc;
}

.tf-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.tf-table td {
    padding: 14px 16px;
    font-size: 13.5px;
    border-bottom: 1px solid #f1f5f9;
}

.tf-table tbody tr:hover {
    background: #fafbff;
}

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

.tf-model {
    font-weight: 600;
    color: var(--text-color);
}

.tf-device {
    font-family: monospace;
    font-size: 13px;
    color: var(--text-light);
}

.tf-chipset {
    font-size: 12.5px;
    color: var(--text-light);
}

.tf-tool-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.tf-functions {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tf-fn-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

/* =============================================
   FILE PASSWORD PAGE
============================================= */
.password-section {
    padding-bottom: 50px;
}

.password-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
}

.password-locked .password-lock-icon {
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.4;
}

.password-unlocked .password-unlock-icon {
    color: #059669;
    margin-bottom: 20px;
}

.password-card h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.password-card>p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.password-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.password-info-box {
    text-align: left;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.password-info-box h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.password-info-box ol {
    padding-left: 18px;
}

.password-info-box li {
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 0;
    line-height: 1.6;
}

.password-info-box a {
    color: var(--primary-color);
    font-weight: 500;
}

.password-help {
    font-size: 13px;
    color: var(--text-light);
}

.password-help a {
    color: var(--primary-color);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-heading {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.footer-links a {
    color: var(--text-light);
}

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

.social-icons {
    display: flex;
    gap: 10px;
}

.social-link {
    color: var(--white);
    background: var(--secondary-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .search-area {
        max-width: 100%;
        order: 2;
    }

    .logo-area {
        text-align: center;
    }

    .cart-area {
        position: absolute;
        top: 60px;
        right: 15px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
        padding: 12px 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, #4f46e5, #7c3aed);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-left: 3px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        border-left-color: #fbbf24;
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    /* Mobile Tickers */
    .ticker-label {
        min-width: 100px;
        padding: 8px 10px;
        font-size: 10px;
    }

    .ticker-title {
        max-width: 200px;
    }

    /* Page Hero */
    .page-hero {
        padding: 30px 0;
    }

    .page-title {
        font-size: 22px;
    }

    .page-subtitle {
        font-size: 13px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Recent Files */
    .recent-file-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .rfc-action {
        width: 100%;
    }

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

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 20px;
    }

    .radio-group {
        flex-direction: column;
        gap: 8px;
    }

    /* Contact */
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    /* Agents / Teams */
    .agents-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tool Finder */
    .tf-table-wrapper {
        overflow-x: auto;
    }

    .tf-table {
        min-width: 700px;
    }

    /* File Password */
    .password-card {
        padding: 30px 20px;
    }
}