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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f5fa;
    color: #1f2937;
    min-height: 100vh;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* HEADER */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-icon {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 16px;
}

.logo-text {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 20px;
}

.nav {
    display: flex;
    gap: 2px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link, .nav a {
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav a:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-link.active {
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.btn-login {
    background: transparent;
    color: #4b5563;
    border: none;
    padding: 9px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-login:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.btn-register {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.35);
}

/* MAIN */
.main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}

/* HERO */
.hero {
    background: radial-gradient(ellipse at top right, #4c1d95 0%, #1e1b4b 40%, #0f0a2e 100%);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(76, 29, 149, 0.3);
}

.hero::before {
    content: '🚀';
    position: absolute;
    top: 50%;
    right: -10px;
    font-size: 32px;
    transform: rotate(-30deg);
}

.hero::after {
    content: '⚙️';
    position: absolute;
    bottom: 20px;
    left: 50%;
    font-size: 28px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-logo-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 40px;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.hero-title {
    color: #f59e0b;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.hero-subtitle {
    color: #d1d5db;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #e5e7eb;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* CODE EDITOR */
.code-editor {
    background: #0c0a1e;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.editor-header {
    background: #1a1735;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.editor-title {
    color: #9ca3af;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    margin-left: 12px;
}

.editor-body {
    padding: 20px;
    color: #e5e7eb;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.7;
    overflow-x: auto;
}

.code-keyword { color: #c084fc; }
.code-var { color: #60a5fa; }
.code-fn { color: #fbbf24; }
.code-key { color: #34d399; }
.code-string { color: #fb923c; }
.code-number { color: #f472b6; }

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.service-card {
    border-radius: 16px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    min-height: 140px;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-red {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    box-shadow: 0 8px 24px rgba(127, 29, 29, 0.4);
}

.service-green {
    background: linear-gradient(135deg, #14532d 0%, #166534 100%);
    box-shadow: 0 8px 24px rgba(20, 83, 45, 0.4);
}

.service-blue {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

.service-orange {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    box-shadow: 0 8px 24px rgba(180, 83, 9, 0.4);
}

.service-ribbon {
    position: absolute;
    top: 12px;
    right: -30px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 4px 36px;
    font-size: 10px;
    font-weight: 800;
    transform: rotate(35deg);
    letter-spacing: 0.5px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-tag {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.service-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.service-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.service-desc {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.service-tech {
    background: rgba(0, 0, 0, 0.3);
    color: #fbbf24;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* NEWS TICKER */
.news-ticker {
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.ticker-label {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ticker-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    font-size: 13px;
    color: #4b5563;
    mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.ticker-track {
    display: inline-flex;
    gap: 32px;
    white-space: nowrap;
    width: max-content;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FEATURED SECTION */
.featured-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.featured-card {
    background: radial-gradient(ellipse at top left, #5b21b6 0%, #2e1065 50%, #1e1b4b 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.featured-card::before {
    content: '🌐';
    position: absolute;
    top: 30px;
    right: 60px;
    font-size: 48px;
    opacity: 0.15;
}

.featured-card::after {
    content: '📱';
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 40px;
    opacity: 0.15;
}

.featured-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.featured-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-desc {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 600px;
}

.featured-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
    max-width: 600px;
}

.featured-list li {
    color: #e5e7eb;
    font-size: 14px;
}

.featured-buttons {
    display: flex;
    gap: 12px;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* LEADERBOARD */
.leaderboard {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.leaderboard-header {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 16px 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.leader-list {
    padding: 8px;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s;
}

.leader-item:hover {
    background: #f9fafb;
}

.leader-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.avatar-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.avatar-blue { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.avatar-green { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.avatar-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }

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

.leader-name {
    font-weight: 700;
    font-size: 14px;
    color: #1f2937;
}

.leader-meta {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

.leader-tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.tag-blue { background: #dbeafe; color: #1e40af; }
.tag-violet { background: #ede9fe; color: #6d28d9; }
.tag-red { background: #fee2e2; color: #b91c1c; }
.tag-yellow { background: #fef3c7; color: #b45309; }
.tag-green { background: #d1fae5; color: #047857; }

/* SEARCH SECTION */
.search-section {
    margin-bottom: 80px;
}

.search-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
}

.search-bar {
    background: white;
    border-radius: 14px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.search-filter {
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
    cursor: pointer;
}

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

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: translateY(-1px);
}


/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 46, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal {
    background: white;
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(76, 29, 149, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ede9fe, #fce7f3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.15);
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    pointer-events: none;
    opacity: 0.65;
}

.form-input {
    width: 100%;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #1f2937;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.form-input.has-icon { padding-left: 42px; }
.form-input.has-toggle { padding-right: 42px; }

.form-input:focus {
    border-color: #a855f7;
    background: white;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-input.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input::placeholder { color: #9ca3af; }

.pw-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.55;
    transition: all 0.15s;
}

.pw-toggle:hover { opacity: 1; background: #f3f4f6; }
.pw-toggle.active { opacity: 1; }

.form-hint {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}

.form-error {
    display: none;
    font-size: 12px;
    color: #ef4444;
    font-weight: 500;
    margin-top: 2px;
}

.form-error.visible { display: block; }

.pw-meter {
    height: 4px;
    background: #f3f4f6;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 6px;
}

.pw-meter span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 100px;
    transition: all 0.3s;
    background: #ef4444;
}

.pw-meter.weak span { width: 33%; background: #ef4444; }
.pw-meter.medium span { width: 66%; background: #f59e0b; }
.pw-meter.strong span { width: 100%; background: #10b981; }

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    cursor: pointer;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #a855f7;
    cursor: pointer;
}

.form-terms {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.5;
}

.form-terms a {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
}

.form-link {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.3);
    transition: transform 0.2s;
    margin-top: 4px;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 8px 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.form-divider span {
    background: white;
    padding: 0 12px;
    position: relative;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-social {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 11px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    color: #1f2937;
    transition: all 0.2s;
}

.btn-social:hover {
    border-color: #a855f7;
    background: #faf5ff;
}

.form-footer {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.switch-modal {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
}

.switch-modal:hover {
    text-decoration: underline;
}

/* PRICING SECTION */
.pricing-section {
    margin-bottom: 80px;
    padding: 20px 0;
}

.pricing-head {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-tag {
    display: inline-block;
    background: #ede9fe;
    color: #7c3aed;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.pricing-sub {
    color: #6b7280;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-table-wrap {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    max-height: 560px;
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
}

/* Custom scrollbar */
.pricing-table-wrap::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.pricing-table-wrap::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 0 20px 20px 0;
}

.pricing-table-wrap::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c4b5fd, #a78bfa);
    border-radius: 100px;
    border: 2px solid #f9fafb;
}

.pricing-table-wrap::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a78bfa, #8b5cf6);
}

.pricing-table-wrap {
    scrollbar-width: thin;
    scrollbar-color: #a78bfa #f9fafb;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.pricing-table th {
    background: #f9fafb;
    text-align: left;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 5;
    box-shadow: 0 1px 0 #e5e7eb;
}

.pricing-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #374151;
    vertical-align: middle;
}

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

.pricing-table tbody tr:hover td {
    background: #f9fafb;
}

.td-bank {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0f172a;
}

.bank-mini {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
}

.bg-green { background: linear-gradient(135deg, #10b981, #059669); }
.bg-blue { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.bg-red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.bg-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.bg-navy { background: linear-gradient(135deg, #1e3a8a, #1e293b); }
.bg-violet { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.bg-orange { background: linear-gradient(135deg, #f97316, #c2410c); }
.bg-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.bg-pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.bg-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bg-rose { background: linear-gradient(135deg, #f43f5e, #be123c); }
.bg-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-emerald { background: linear-gradient(135deg, #059669, #047857); }
.bg-sky { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.bg-lime { background: linear-gradient(135deg, #84cc16, #4d7c0f); }
.bg-fuchsia { background: linear-gradient(135deg, #d946ef, #a21caf); }
.bg-slate { background: linear-gradient(135deg, #64748b, #334155); }
.bg-indigo { background: linear-gradient(135deg, #6366f1, #4338ca); }
.bg-stone { background: linear-gradient(135deg, #78716c, #44403c); }
.bg-zinc { background: linear-gradient(135deg, #71717a, #3f3f46); }
.bg-coral { background: linear-gradient(135deg, #fb7185, #e11d48); }

.hot-row {
    background: linear-gradient(90deg, #fef3c7 0%, transparent 100%);
}

.hot-row td {
    font-weight: 600;
}

.hot-badge {
    background: #f43f5e;
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    margin-left: 6px;
    letter-spacing: 0.5px;
}

.btn-mini {
    background: #0f172a;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-mini:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; }
    .services { grid-template-columns: repeat(2, 1fr); }
    .featured-section { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .nav { display: none; }
}

@media (max-width: 640px) {
    .btn-login { display: none; }
    .btn-register { padding: 8px 14px; font-size: 13px; }
    .services { grid-template-columns: 1fr; }
    .hero { padding: 24px; }
    .hero-title { font-size: 36px; }
    .featured-card { padding: 24px; }
    .featured-title { font-size: 24px; }
    .featured-list { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .main { padding: 12px; }
    .modal { padding: 24px 20px; border-radius: 20px; }
    .modal-title { font-size: 20px; }
    .pricing-title { font-size: 26px; }
}
