@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #f3f5f9;
    color: #24324a;
}

/* Auth Page */
.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(243, 180, 78, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(77, 124, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #f7f8fc 0%, #eef3fb 100%);
    padding-bottom: 5rem;
}

.auth-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    max-width: 1180px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.auth-left {
    background: linear-gradient(160deg, #0f2740 0%, #274f7d 100%);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-brand h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-brand p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.auth-right {
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 430px;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #718096;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Manrope', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.landing-nav,
.landing-hero,
.landing-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.landing-nav {
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
}

.landing-hero,
.landing-section,
.landing-final-card,
.hero-panel-card,
.landing-benefit-card,
.landing-seg-card,
.landing-price-card,
.landing-process-step {
    animation: landingFadeUp 0.7s ease both;
}

.landing-benefit-card:nth-child(2),
.landing-process-step:nth-child(2),
.landing-price-card:nth-child(2) {
    animation-delay: 0.08s;
}

.landing-benefit-card:nth-child(3),
.landing-process-step:nth-child(3),
.landing-price-card:nth-child(3) {
    animation-delay: 0.16s;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: #10203a;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.landing-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16324f 0%, #325b88 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(22, 50, 79, 0.22);
}

.landing-nav-actions,
.landing-hero-actions,
.landing-proof-row,
.hero-filter-cloud,
.landing-chip-list {
    display: flex;
    flex-wrap: wrap;
}

.landing-nav-actions {
    gap: 0.85rem;
}

.landing-nav-link,
.landing-nav-cta,
.landing-primary-btn,
.landing-secondary-btn {
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    font-family: 'Manrope', sans-serif;
}

.landing-nav-link {
    background: rgba(255, 255, 255, 0.7);
    color: #16324f;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
}

.landing-nav-cta,
.landing-primary-btn {
    background: linear-gradient(135deg, #ff8a3d 0%, #f15d2a 100%);
    color: #fff;
    box-shadow: 0 18px 35px rgba(241, 93, 42, 0.22);
}

.landing-nav-cta,
.landing-primary-btn,
.landing-secondary-btn {
    padding: 0.95rem 1.25rem;
    border-radius: 18px;
    font-weight: 800;
}

.landing-nav-cta,
.landing-nav-link {
    border-radius: 999px;
}

.landing-secondary-btn {
    background: rgba(255, 255, 255, 0.72);
    color: #16324f;
    box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.1);
}

.landing-nav-cta:hover,
.landing-primary-btn:hover,
.landing-secondary-btn:hover,
.landing-nav-link:hover {
    transform: translateY(-2px);
}

.landing-hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 0 2rem;
}

.landing-kicker,
.landing-section-heading span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(22, 50, 79, 0.07);
    color: #33506f;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 800;
}

.landing-hero-copy h1,
.landing-section-heading h2 {
    font-family: 'Sora', sans-serif;
    color: #10203a;
    line-height: 1.08;
}

.landing-hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    margin: 1.25rem 0 1rem;
    max-width: 11ch;
}

.landing-hero-copy p,
.landing-section-heading p {
    font-size: 1.08rem;
    color: #56657b;
    line-height: 1.75;
    max-width: 62ch;
}

.landing-hero-actions {
    gap: 1rem;
    margin-top: 2rem;
}

.landing-primary-btn,
.landing-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.landing-proof-row {
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.landing-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #29415f;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(44, 62, 80, 0.08);
}

.hero-panel-card {
    width: 100%;
    max-width: 480px;
    padding: 1.6rem;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(13, 31, 55, 0.95), rgba(35, 69, 110, 0.92));
    color: #fff;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.28);
}

.hero-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.hero-panel-header strong {
    color: #ffd479;
    font-family: 'Sora', sans-serif;
}

.hero-filter-cloud {
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.hero-filter-cloud span,
.landing-chip-list span {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
}

.hero-filter-cloud span {
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
}

.hero-panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.hero-panel-metrics div {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-panel-metrics strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.hero-panel-metrics span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
}

.landing-section {
    padding: 2rem 0;
}

.landing-section-heading {
    margin-bottom: 1.5rem;
}

.landing-section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 1rem 0 0.85rem;
    max-width: 14ch;
}

.landing-benefit-grid,
.landing-segmentation-grid,
.landing-pricing-grid,
.landing-process-grid {
    display: grid;
    gap: 1.1rem;
}

.landing-benefit-grid,
.landing-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-segmentation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-benefit-card,
.landing-seg-card,
.landing-process-step,
.landing-price-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.landing-benefit-card i {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #16324f 0%, #325b88 100%);
    color: #fff;
}

.landing-benefit-card h3,
.landing-seg-card h3,
.landing-process-step h3,
.landing-price-card h3 {
    font-family: 'Sora', sans-serif;
    color: #10203a;
    margin-bottom: 0.65rem;
}

.landing-benefit-card p,
.landing-seg-card p,
.landing-process-step p {
    color: #5d6e82;
    line-height: 1.7;
}

.landing-chip-list {
    gap: 0.75rem;
    margin-top: 1rem;
}

.landing-chip-list span {
    background: #eef4ff;
    color: #24476d;
}

.landing-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-price-card {
    position: relative;
    overflow: hidden;
}

.landing-price-card.featured {
    background: linear-gradient(180deg, #fff7ea 0%, #ffffff 100%);
    border-color: rgba(241, 93, 42, 0.25);
}

.landing-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f15d2a;
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-records {
    font-family: 'Sora', sans-serif;
    font-size: 1.65rem;
    color: #10203a;
    margin-bottom: 0.45rem;
}

.landing-price {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #f15d2a;
}

.landing-price-per {
    color: #607086;
    margin: 0.4rem 0 1rem;
}

.landing-price-card ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: #495b71;
}

.landing-price-card li {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.landing-price-card li i {
    color: #f15d2a;
}

.landing-process-step span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    background: #16324f;
    color: #fff;
    margin-bottom: 1rem;
}

.landing-final-cta {
    padding-bottom: 1rem;
}

.landing-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f2740 0%, #264d79 100%);
    color: white;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.2);
}

.landing-final-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    max-width: 13ch;
    margin-top: 0.9rem;
}

.auth-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.auth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
}

.auth-modal-dialog {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    border-radius: 30px;
    animation: authModalIn 0.28s ease both;
}

.auth-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

/* Dashboard Layout with Sidebar */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-nav-item.active {
    background: rgba(102, 126, 234, 0.2);
    color: white;
    border-left-color: #667eea;
}

.sidebar-nav-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.user-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.btn-logout {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    min-height: 100vh;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #718096;
    font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-icon.blue { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.stat-icon.green { background: linear-gradient(135deg, #48bb78 0%, #38a169 100%); }
.stat-icon.orange { background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%); }
.stat-icon.purple { background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%); }
.stat-icon.red { background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%); }

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: #718096;
    font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-actions h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.action-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.action-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.action-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #718096;
    font-size: 0.9rem;
}

/* Suppliers Grid */
.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.supplier-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.supplier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.supplier-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.supplier-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.supplier-info p {
    font-size: 0.85rem;
    color: #718096;
}

.supplier-details {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.supplier-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.supplier-detail i {
    color: #667eea;
    width: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #2d3748;
}

.modal-content form {
    padding: 1.5rem;
}

/* Lead Type Cards */
.lead-type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.lead-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 3px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lead-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.lead-type-card:hover::before {
    transform: scaleX(1);
}

.lead-type-card:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.lead-type-card.active {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.lead-type-card.active::before {
    transform: scaleX(1);
}

.lead-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s;
}

.lead-type-card:hover .lead-type-icon {
    transform: scale(1.1) rotate(5deg);
}

.lead-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.lead-type-card p {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 0;
}

.lead-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f7fafc;
}

.filters-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filters-header h3 i {
    color: #667eea;
}

.btn-clear-filters {
    padding: 0.6rem 1.2rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #718096;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-clear-filters:hover {
    background: #fff5f5;
    border-color: #fc8181;
    color: #e53e3e;
}

.filters-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.filter-card {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.filter-card:hover {
    border-color: #667eea;
    background: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.filter-card label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.filter-card label i {
    color: #667eea;
    font-size: 1.1rem;
}

.modern-select,
.modern-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: white;
    color: #2d3748;
    transition: all 0.3s;
    cursor: pointer;
}

.modern-select:focus,
.modern-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modern-select:hover,
.modern-input:hover {
    border-color: #cbd5e0;
}

/* Active Filters */
.active-filters {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-tag i {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.filter-tag i:hover {
    opacity: 1;
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.pricing-header h3 i {
    color: #667eea;
}

.pricing-header p {
    color: #718096;
    font-size: 1rem;
}

.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.price-card-modern {
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.price-card-modern:hover::before {
    opacity: 1;
}

.price-card-modern:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.price-card-modern.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}

.price-card-modern.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.price-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.price-card-modern .records {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.price-card-modern .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-card-modern .per-lead {
    font-size: 0.9rem;
    color: #718096;
}

.price-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f7fafc;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.price-feature i {
    color: #48bb78;
}

/* Purchase Summary */
.purchase-summary {
    position: fixed;
    bottom: 0;
    left: 280px;
    right: 0;
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 50;
    animation: slideUp 0.4s;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.summary-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.summary-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.summary-info p {
    color: #718096;
    font-size: 0.95rem;
}

.btn-purchase {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.4);
}

.btn-purchase i {
    font-size: 1.2rem;
}

/* Lead Type Selector (old - keep for compatibility) */
.lead-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.type-btn {
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.type-btn:hover {
    border-color: #667eea;
}

.type-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.type-btn i {
    font-size: 1.2rem;
}

/* Filters */
.filters-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Pricing */
.pricing-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.price-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.price-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.price-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.price-card .records {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.price-card .per-lead {
    font-size: 0.85rem;
    color: #718096;
}

.btn-large {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

/* Orders */
.orders-list {
    display: grid;
    gap: 1.75rem;
}

.order-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.order-id {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
}

.order-status {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.order-detail label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
    margin-bottom: 0.25rem;
}

.order-detail span {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 500;
}

.download-section {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0fff4;
    border-radius: 8px;
    border: 1px solid #9ae6b4;
}

.download-section p {
    color: #2f855a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.btn-download {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.orders-empty-state {
    background:
        radial-gradient(circle at top left, rgba(102, 126, 234, 0.14), transparent 35%),
        linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.orders-empty-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.25rem;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #4f46e5;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(59, 130, 246, 0.1));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.orders-empty-state h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.orders-empty-state p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.order-card-premium,
.order-card-compact {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 24%),
        linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.order-card-glow {
    position: absolute;
    inset: 0 auto auto 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.22), transparent 70%);
    pointer-events: none;
}

.order-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.order-card-compact .order-id {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.order-card-premium .order-header,
.order-card-compact .order-header {
    position: relative;
    z-index: 1;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.order-card-premium .order-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.order-status-paid {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.order-status-processing {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #fff;
}

.order-status-delivered {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: #fff;
}

.order-status-neutral {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #fff;
}

.compact-header {
    align-items: center;
}

.order-square-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.order-square {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.order-square-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.order-square strong {
    font-size: 1.05rem;
    color: #0f172a;
}

.order-highlight-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.order-highlight-card {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(8px);
}

.order-highlight-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.order-highlight-card strong {
    font-size: 1.2rem;
    line-height: 1.3;
    color: #0f172a;
}

.order-details-premium {
    position: relative;
    z-index: 1;
    gap: 1rem;
}

.order-detail-wide {
    grid-column: 1 / -1;
}

.order-card-premium .order-detail {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.order-card-premium .order-detail label {
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.order-card-premium .order-detail span {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #1e293b;
}

.order-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.order-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.07);
    border: 1px solid rgba(99, 102, 241, 0.1);
    color: #334155;
    font-size: 0.93rem;
}

.order-filter-chip strong {
    color: #475569;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-filter-chip em {
    font-style: normal;
    color: #0f172a;
}

.order-filter-chip.empty {
    background: rgba(148, 163, 184, 0.1);
    border-color: rgba(148, 163, 184, 0.14);
}

.compact-detail {
    position: relative;
    z-index: 1;
    margin-top: 0.2rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.order-timeline-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(59, 130, 246, 0.06));
    border: 1px solid rgba(99, 102, 241, 0.12);
    color: #4c5d7a;
    font-style: normal;
}

.order-timeline-note i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.14);
    color: #4f46e5;
    flex-shrink: 0;
}

.compact-note {
    margin-top: 1rem;
}

.order-card-premium .download-section {
    position: relative;
    z-index: 1;
    margin-top: 1.2rem;
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(34, 197, 94, 0.18);
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.95), rgba(236, 253, 245, 0.8));
}

.order-card-compact .download-section {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
}

.delivery-ready {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.delivery-ready-copy {
    display: flex;
    flex-direction: column;
}

.delivery-ready-copy span {
    color: #3f6212;
    line-height: 1.6;
}

.order-card-premium .download-section p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.order-card-premium .btn-download {
    margin-top: 0.35rem;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .order-card-premium {
        padding: 1.35rem;
        border-radius: 22px;
    }

    .order-card-compact {
        padding: 1.35rem;
        border-radius: 22px;
    }

    .order-card-premium .order-header {
        align-items: flex-start;
        gap: 1rem;
    }

    .order-card-premium .order-id {
        font-size: 1.5rem;
    }

    .order-card-compact .order-id {
        font-size: 1.45rem;
    }

    .order-highlight-row {
        grid-template-columns: 1fr 1fr;
    }

    .delivery-ready {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Admin Styles */
.admin-order-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.admin-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.admin-order-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
    flex-wrap: wrap;
}

.btn-upload {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.3);
}

.file-input {
    display: none;
}

.customer-info {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.customer-info h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.customer-info p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.admin-customers-grid {
    display: grid;
    gap: 1.25rem;
}

.admin-customer-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.admin-customer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-customer-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.2rem;
}

.admin-customer-header p {
    margin: 0.35rem 0 0;
    color: #64748b;
    font-size: 0.92rem;
}

.admin-customer-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-customer-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.btn-delete-customer {
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-delete-customer:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.22);
}

.admin-customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.admin-customer-item {
    padding: 1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.admin-customer-item label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.admin-customer-item strong {
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.45;
    word-break: break-word;
}

.admin-customer-highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-color: #86efac;
}

/* Admin Setup */
.admin-setup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-setup-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .landing-nav {
        padding: 1rem 0;
    }

    .landing-hero,
    .landing-benefit-grid,
    .landing-segmentation-grid,
    .landing-pricing-grid,
    .landing-process-grid,
    .auth-container {
        grid-template-columns: 1fr;
    }

    .landing-hero-copy h1 {
        max-width: none;
    }

    .landing-section-heading h2 {
        max-width: none;
    }

    .hero-panel-metrics {
        grid-template-columns: 1fr;
    }

    .landing-nav-actions {
        display: none;
    }

    .landing-final-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-final-card h2 {
        max-width: none;
    }

    .auth-container {
        width: min(1180px, calc(100% - 24px));
    }
    
    .auth-left {
        padding: 2rem;
    }
    
    .sidebar {
        width: 70px;
    }
    
    .sidebar-header h2 span {
        display: none;
    }
    
    .sidebar-nav-item span {
        display: none;
    }
    
    .user-details {
        display: none;
    }
    
    .main-content {
        margin-left: 70px;
    }
}

@media (max-width: 640px) {
    .landing-hero {
        padding-top: 1.5rem;
    }

    .landing-primary-btn,
    .landing-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .landing-proof-row {
        flex-direction: column;
    }

    .auth-right,
    .auth-left {
        padding: 1.5rem;
    }

    .auth-modal-dialog {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
    }
}

@keyframes landingFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes authModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.payment-modal {
    max-width: 600px;
    width: 90%;
}

.modal-body {
    padding: 2rem;
}

.payment-info {
    text-align: center;
}

.payment-description {
    color: #718096;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.qr-code-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code-container img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.pix-code-container {
    margin-bottom: 2rem;
}

.pix-code-container label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.pix-code-box {
    display: flex;
    gap: 0.75rem;
}

.pix-code-box input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    background: #f7fafc;
}

.btn-copy {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.payment-status {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.status-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 0.75rem;
}

.payment-status p {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.payment-details {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.detail-row:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.detail-row span {
    color: #718096;
    font-size: 0.95rem;
}

.detail-row strong {
    color: #2d3748;
    font-size: 1.1rem;
}
