/* ==================== PARTNER RECRUITER - LANDING MODE ==================== */

/* ==================== LANDING MODE ==================== */
.landing-mode {
    min-height: 100vh;
    background: var(--bg-body);
}

/* ===== LANDING NAV ===== */
.landing-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-logo-icon {
    font-size: 24px;
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-cta {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary);
    color: var(--text-white) !important;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* ===== LANDING HERO ===== */
.landing-hero {
    position: relative;
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-bg) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-bg) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-particles {
    display: none;
}

.hero-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge-extended {
    display: inline-flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.hero-badge-extended .badge-icon {
    font-size: 24px;
    margin-top: 2px;
}

.hero-badge-extended .badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-badge-extended .badge-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge-extended .badge-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-badge-extended .badge-contacts {
    display: flex;
    gap: 16px;
    margin-top: 6px;
}

.hero-badge-extended .badge-contact {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-badge-extended .badge-contact:hover {
    color: var(--primary);
}

.badge-icon {
    font-size: 16px;
}

.badge-text span {
    color: var(--primary);
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.hero-stat {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.hero-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--primary);
    color: var(--text-white) !important;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.hero-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-arrow {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

.hero-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* ===== HERO V2 - TWO COLUMN LAYOUT ===== */
.landing-hero-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0f4f8 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.landing-hero-v2::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.landing-hero-v2::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.hero-v2-left {
    padding-top: 20px;
}

.hero-v2-title {
    font-size: 52px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-v2-title span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2-subtitle {
    font-size: 20px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 520px;
}

.hero-v2-subtitle strong {
    color: #1e293b;
    font-weight: 700;
}

/* Stats Row */
.hero-v2-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-v2-stat {
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-v2-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
}

.hero-v2-stat .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.hero-v2-stat .stat-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* CTA Button */
.hero-v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
    transition: all 0.2s ease;
}

.hero-v2-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.45);
}

.hero-v2-cta svg {
    transition: transform 0.2s ease;
}

.hero-v2-cta:hover svg {
    transform: translateX(4px);
}

/* Right Column - Cards */
.hero-v2-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Inviter Card */
.hero-inviter-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.hic-header {
    margin-bottom: 16px;
}

.hic-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #667eea;
}

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

.hic-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.hic-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hic-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.hic-role {
    font-size: 14px;
    color: #64748b;
}

.hic-contacts {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.hic-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
}

.hic-contact:hover {
    background: #f0f4ff;
    color: #667eea;
}

.hic-contact-icon {
    font-size: 16px;
}

/* Partner Card */
.hero-partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.hpc-header {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    padding: 14px 24px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.hpc-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c3aed;
}

.hpc-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.hpc-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #7c3aed;
}

.hpc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hpc-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.hpc-company {
    font-size: 14px;
    color: #64748b;
}

.hpc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f1f5f9;
    border-top: 1px solid #f1f5f9;
}

.hpc-detail {
    background: white;
    padding: 14px 24px;
    text-align: center;
}

.hpc-detail-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.hpc-detail-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* Full width details */
.hpc-detail:nth-child(n+3) {
    grid-column: span 2;
}

/* ===== DESKTOP PARTNER CARD ===== */
.desktop-partner-card {
    margin-top: var(--spacing-xl);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.dpc-header {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.dpc-header-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c3aed;
}

.dpc-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dpc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #6d28d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(109, 40, 217, 0.2);
}

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

.dpc-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.dpc-company {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.dpc-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.dpc-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    background: white;
}

.dpc-detail .dpc-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    opacity: 0.7;
}

.dpc-detail .dpc-value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    word-break: break-word;
    line-height: 1.3;
}

/* Email & Address - full width */
.dpc-detail#desktopPartnerEmailRow,
.dpc-detail#desktopPartnerAddressRow {
    grid-column: span 2;
}

/* ===== PARTNER INFO CARD ===== */
.partner-info-card {
    margin-top: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.partner-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--spacing-md);
}

.partner-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-icon {
    font-size: 28px;
    filter: brightness(0) invert(1);
}

.partner-card-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.partner-card-title p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.partner-card-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.partner-detail-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-body);
    border-radius: var(--radius-md);
    font-size: 13px;
}

.partner-detail-row .detail-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.partner-detail-row .detail-label {
    color: var(--text-muted);
    flex-shrink: 0;
}

.partner-detail-row .detail-value {
    color: var(--text-primary);
    font-weight: 500;
    word-break: break-word;
}

.partner-card-footer {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.card-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--success-bg) 0%, #dcfce7 100%);
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--success-border);
}

/* ===== SECTION STYLES ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* ===== PROBLEM SECTION ===== */
.landing-problem {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-card);
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
}

.problem-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.problem-lead {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 15px;
    color: var(--text-primary);
    padding: var(--spacing-md);
    background: var(--danger-bg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--danger);
}

.problem-icon {
    font-size: 16px;
}

.problem-summary {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, var(--danger-bg) 0%, var(--warning-bg) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--danger);
}

.problem-summary .summary-icon {
    font-size: 32px;
}

.problem-summary .summary-text {
    font-size: 16px;
    color: var(--text-primary);
}

.problem-summary .summary-text strong {
    color: var(--danger);
    font-size: 20px;
}

/* ===== SOLUTION SECTION ===== */
.landing-solution {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-body);
}

.solution-header,
.how-header,
.commission-header,
.calculator-header,
.transparency-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.solution-badge,
.how-badge,
.commission-badge,
.calculator-badge,
.transparency-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.solution-header h2,
.how-header h2,
.commission-header h2,
.calculator-header h2,
.transparency-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.transparency-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin: 0;
}

.solution-header p,
.how-header p,
.commission-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--primary-bg) 100%);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.service-icon {
    font-size: 36px;
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.service-commission {
    font-size: 13px;
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--success-bg);
    border-radius: var(--radius-md);
    display: inline-block;
}

.service-commission strong {
    color: var(--success);
}

/* ===== HOW IT WORKS SECTION ===== */
.landing-how {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-card);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--spacing-md);
}

.step-card {
    flex: 1;
    max-width: 280px;
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-light);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    font-size: 36px;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.step-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 12px;
    color: var(--text-muted);
    padding: var(--spacing-sm);
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.time-icon {
    font-size: 14px;
}

.step-connector {
    font-size: 24px;
    color: var(--primary);
    padding-top: var(--spacing-2xl);
}

/* ===== COMMISSION SECTION ===== */
.landing-commission {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-body);
}

.commission-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
}

.commission-table-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

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

.commission-table thead {
    background: var(--bg-body);
}

.commission-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.commission-table td {
    padding: var(--spacing-md);
    font-size: 14px;
    color: var(--text-primary);
    border-top: 1px solid var(--border-light);
}

.commission-table tbody tr:hover {
    background: var(--bg-hover);
}

.commission-value {
    font-weight: 600;
    color: var(--success);
}

/* Commission Tiers */
.commission-tiers {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.commission-tiers h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.tier-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.tier-item {
    display: grid;
    grid-template-columns: 80px 50px 1fr;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-body);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.tier-item.featured {
    background: var(--primary-bg);
    border-color: var(--primary);
}

.tier-level {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.tier-percent {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.tier-item.featured .tier-percent {
    color: var(--primary-hover);
}

.tier-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== CALCULATOR COMBINED SECTION (DESKTOP) ===== */
.landing-calculator-combined {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.landing-calculator-combined .calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.landing-calculator-combined .calculator-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-calculator-combined h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.landing-calculator-combined .calculator-header p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

.calc-combined-desktop {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.calc-inputs-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calc-group-desktop {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-group-desktop label {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
}

.desktop-range {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    background: #e2e8f0;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.desktop-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.35);
    transition: transform 0.15s ease;
}

.desktop-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.desktop-range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    cursor: pointer;
}

.calc-value-display {
    font-size: 22px;
    font-weight: 700;
    color: #667eea;
    text-align: right;
}

/* Tier selector desktop */
.tier-selector-desktop {
    margin-top: 12px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.tier-selector-desktop > label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 16px;
}

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

.tier-btn-desktop {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 10px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tier-btn-desktop:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tier-btn-desktop.active {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25);
}

.tbd-percent {
    font-size: 22px;
    font-weight: 700;
    color: #334155;
}

.tier-btn-desktop.active .tbd-percent {
    color: #667eea;
}

.tbd-name {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.tier-btn-desktop.active .tbd-name {
    color: #667eea;
}

.tbd-req {
    font-size: 11px;
    color: #94a3b8;
}

/* Results side */
.calc-results-side {
    display: flex;
    align-items: center;
}

.results-card {
    width: 100%;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.result-row.featured {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-row .result-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.result-row .result-value {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.result-row.featured .result-value {
    font-size: 30px;
}

/* ===== OLD CALCULATOR SECTION (legacy) ===== */
.landing-calculator {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-card);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    background: var(--bg-body);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-light);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.calc-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.calc-group input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.calc-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.calc-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--primary-bg);
    border-radius: var(--radius-md);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
}

.calc-result {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--border-light);
}

.calc-result.featured {
    background: var(--primary);
    border-color: var(--primary);
}

.result-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.calc-result.featured .result-label {
    color: rgba(255, 255, 255, 0.8);
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.calc-result.featured .result-value {
    color: var(--text-white);
    font-size: 28px;
}

/* ===== TRANSPARENCY SECTION ===== */
.landing-transparency {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-body);
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.transparency-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

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

.trans-icon {
    font-size: 28px;
    display: block;
    margin-bottom: var(--spacing-md);
}

.transparency-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.transparency-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== INVITER CARD (Landing Page) ===== */
.inviter-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.inviter-card-photo {
    flex-shrink: 0;
}

.inviter-photo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.inviter-card-info {
    flex: 1;
    text-align: left;
}

.inviter-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}

.inviter-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 4px 0;
}

.inviter-card-role {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.inviter-card-contacts {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.inviter-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.inviter-contact-item:hover {
    color: var(--primary);
}

.inviter-contact-item .contact-icon {
    font-size: 14px;
}

.inviter-card-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ===== PROJECTION CHART SECTION ===== */
.landing-projection {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, #e8f0f8 100%);
}

.projection-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.projection-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.projection-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.projection-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.projection-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

/* Growth Options */
.projection-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
}

.growth-toggle,
.tier-progression-toggle {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
}

.toggle-label input {
    display: none;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--border-medium);
    border-radius: var(--radius-full);
    transition: background var(--transition-normal);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition-normal);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-label input:checked + .toggle-switch {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.toggle-label input:checked + .toggle-switch::after {
    transform: translateX(20px);
}

.growth-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding-left: 52px;
}

.growth-info .info-icon {
    font-size: 12px;
}

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

/* Main Chart */
.projection-chart {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    padding-left: 60px;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    min-height: 350px;
}

.chart-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
    height: 280px;
    position: relative;
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 0 0 120px;
}

.bar-label-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: 50px;
}

.bar-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.bar-growth {
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    background: var(--success-bg);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.bar-container {
    position: relative;
    width: 80px;
    height: 200px;
    background: var(--border-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar-wrapper.featured .bar-fill {
    background: linear-gradient(180deg, #8b5cf6 0%, #6366f1 100%);
}

.bar-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30%;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(10px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.chart-bar-wrapper:hover .bar-glow {
    opacity: 1;
}

.bar-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--spacing-sm);
}

.bar-clients {
    font-size: 12px;
    color: var(--text-muted);
}

/* Y-axis */
.chart-y-axis {
    position: absolute;
    left: 10px;
    top: var(--spacing-xl);
    bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0;
}

.y-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Breakdown Cards */
.projection-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.breakdown-card {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

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

.breakdown-card.featured {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
}

.breakdown-card.featured .breakdown-header,
.breakdown-card.featured .breakdown-title,
.breakdown-card.featured .breakdown-label,
.breakdown-card.featured .breakdown-value {
    color: white !important;
}

.breakdown-card.featured .breakdown-row.total {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.breakdown-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-light);
}

.breakdown-card.featured .breakdown-header {
    border-color: rgba(255, 255, 255, 0.2);
}

.breakdown-icon {
    font-size: 20px;
}

.breakdown-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.breakdown-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.breakdown-row.total {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-border);
}

.breakdown-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.breakdown-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.breakdown-row.total .breakdown-value {
    color: var(--primary);
    font-size: 15px;
}

.breakdown-card.featured .breakdown-row.total .breakdown-value {
    color: white;
}

/* Summary Stats */
.projection-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #f0f9ff 0%, #eff6ff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-border);
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
}

.summary-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.summary-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Disclaimer */
.projection-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--warning-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning);
}

.disclaimer-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.projection-disclaimer p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ===============================================
   MOBILE APP EXPERIENCE - LANDING PAGE
   =============================================== */

/* Hide old desktop sections on landing mode - only direct children, not those in .desktop-layout */
.landing-mode > .landing-nav,
.landing-mode > .landing-hero,
.landing-mode > .landing-problem,
.landing-mode > .landing-solution,
.landing-mode > .landing-how,
.landing-mode > .landing-commission,
.landing-mode > .landing-calculator,
.landing-mode > .landing-projection,
.landing-mode > .landing-transparency,
.landing-mode > .landing-cta,
.landing-mode > .landing-footer {
    display: none !important;
}

/* ===== APP HEADER ===== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    padding-top: max(12px, env(safe-area-inset-top));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.app-header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.app-header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.app-logo {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.app-title {
    display: flex;
    flex-direction: column;
}

.app-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.app-tagline {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-header-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.app-header-btn:hover {
    background: var(--primary);
    color: white;
}

.app-header-btn:active {
    transform: scale(0.95);
}

/* Call button - red for visibility */
#btnCallInviter {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

#btnCallInviter span {
    filter: grayscale(1) brightness(10);
}

#btnCallInviter:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: scale(1.05);
}

#btnCallInviter:active {
    transform: scale(0.95);
}

/* ===== APP CONTENT ===== */
.app-content {
    padding-top: calc(70px + env(safe-area-inset-top, 0px));
    padding-bottom: 90px;
    min-height: 100vh;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef4 100%);
}

/* ===== APP CARDS ===== */
.app-card {
    margin: 12px 16px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.app-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 8px 0 12px 0;
    line-height: 1.3;
}

.card-header-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.card-icon {
    font-size: 16px;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}

/* ===== UNIFIED INVITATION CARD ===== */
.unified-invitation-card {
    margin: 0 16px 16px 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(102, 126, 234, 0.08);
}

/* Hero Section - Clean & Professional */
.invitation-hero {
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
}

.invitation-greeting h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: white;
}

.invitation-greeting p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

.invitation-greeting .greeting-subtext {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 2px;
    font-weight: 300;
}

.invitation-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.inv-stat {
    flex: 1;
    text-align: center;
}

.inv-stat-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 1px;
    letter-spacing: -0.3px;
}

.inv-stat-label {
    font-size: 9px;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Inviter Section */
.invitation-from {
    background: white;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.from-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.from-header-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.from-header-text {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    white-space: nowrap;
}

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

.from-avatar-wrapper {
    position: relative;
}

.from-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
    object-fit: cover;
}

.from-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid white;
    border-radius: 50%;
}

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

.from-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.from-role-line {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 1px;
}

.from-role {
    font-size: 12px;
    color: #64748b;
}

.from-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    color: #64748b;
    text-decoration: none;
}

.from-phone-link:hover {
    color: var(--primary);
}

.from-email-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    color: #94a3b8;
    text-decoration: none;
    margin-top: 1px;
}

.from-email-link:hover {
    color: var(--primary);
}

/* Partner "For" Section */
.invitation-for {
    background: #fafbfc;
    padding: 14px 16px 16px;
}

.for-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.for-header-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}

.for-header-text {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    white-space: nowrap;
}

.for-person {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.for-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.for-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1px 0;
}

.for-company {
    font-size: 12px;
    color: #64748b;
}

/* Partner Details Grid */
.for-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.for-detail {
    display: flex;
    flex-direction: column;
    padding: 6px 8px;
    background: white;
    border-radius: 6px;
}

.for-detail .detail-label {
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #94a3b8;
}

.for-detail .detail-value {
    font-size: 11px;
    color: var(--text-primary);
    font-weight: 500;
    word-break: break-word;
    line-height: 1.3;
}

/* Email & Address - full width */
.for-detail#partnerCardEmailRow,
.for-detail#partnerCardAddressRow {
    grid-column: span 2;
}

/* Legacy support */
.welcome-card { display: none; }
/* Ukryj partner-card tylko na landing page, nie w panelu */
#landingMode .partner-card:not(.invitation-partner) { display: none; }

/* ===== QUICK STATS BAR ===== */
.quick-stats-bar {
    display: none; /* Hidden - stats are now in hero section */
    align-items: center;
    justify-content: space-around;
    margin: 0 16px 12px;
    padding: 16px 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qs-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.qs-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.quick-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-light);
}

/* ===== PROBLEM CARD ===== */
.problem-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.problem-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-body);
    border-radius: 12px;
}

.problem-step.negative {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
}

.ps-num {
    width: 24px;
    height: 24px;
    background: var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
}

.problem-step.negative .ps-num {
    background: #dc2626;
    color: white;
}

.ps-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
}

.problem-step.negative .ps-text {
    font-weight: 600;
    color: #dc2626;
}

.ps-icon {
    font-size: 18px;
}

.problem-loss-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 1px solid #fcd34d;
}

.loss-icon {
    font-size: 20px;
}

.loss-text {
    font-size: 14px;
    color: #92400e;
}

/* ===== PROBLEM CARD V2 ===== */
.problem-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin: 0 16px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.problem-card-v2 .problem-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.problem-card-v2 .problem-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 16px 0;
}

.problem-card-v2 .problem-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.problem-card-v2 .problem-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #e2e8f0;
}

.problem-card-v2 .problem-item.highlight {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left-color: #ef4444;
}

.problem-card-v2 .problem-x {
    font-size: 12px;
    font-weight: 700;
    color: #ef4444;
    margin-top: 1px;
}

.problem-card-v2 .problem-text {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.4;
}

.problem-card-v2 .problem-item.highlight .problem-text {
    color: #dc2626;
}

.problem-card-v2 .problem-detail {
    color: #64748b;
    font-size: 12px;
}

.problem-card-v2 .problem-bottom-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 16px;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.problem-card-v2 .pbl-icon {
    font-size: 18px;
}

.problem-card-v2 .pbl-text {
    font-size: 13px;
    color: white;
}

.problem-card-v2 .pbl-text strong {
    font-weight: 700;
    color: white;
}

/* ===== SOLUTION CARD V2 ===== */
.solution-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin: 0 16px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solution-card-v2 h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 8px 0 4px;
}

.solution-card-v2 .solution-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.services-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #e2e8f0;
    transition: all 0.2s ease;
}

.service-item-v2.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-left-color: #667eea;
}

.siv2-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.siv2-content {
    flex: 1;
    min-width: 0;
}

.siv2-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px;
    line-height: 1.3;
}

.siv2-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

.siv2-commission {
    flex-shrink: 0;
    text-align: right;
}

.siv2-amount {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #667eea;
    white-space: nowrap;
}

/* ===== OLD SOLUTION CARD (legacy) ===== */
.solution-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* Services Carousel (legacy) */
.services-carousel-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
}

.services-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-slide {
    flex: 0 0 260px;
    scroll-snap-align: start;
    display: flex;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #ede9fe 100%);
    border-radius: 16px;
    border: 1px solid var(--primary-border);
}

.service-slide-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.service-slide-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.service-slide-content p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.service-slide-commission {
    display: flex;
    flex-direction: column;
}

.commission-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.commission-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--success);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-medium);
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    width: 20px;
    border-radius: 3px;
    background: var(--primary);
}

/* ===== HOW CARD ===== */
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.how-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-body);
    border-radius: 12px;
}

.how-step.featured {
    background: linear-gradient(135deg, var(--success-bg) 0%, #d1fae5 100%);
    border: 1px solid #86efac;
}

.how-step-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.how-step.featured .how-step-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.how-step-content {
    flex: 1;
}

.how-step-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: var(--text-primary);
}

.how-step-content p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.how-step-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: white;
    padding: 6px 10px;
    border-radius: 8px;
}

.how-step.featured .how-step-time {
    color: var(--success);
    font-size: 16px;
}

.how-step-arrow {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 2px 0;
    opacity: 0.5;
}

/* ===== CALCULATOR COMBINED CARD ===== */
.calc-combined-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin: 0 16px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.calc-combined-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 8px 0 16px;
}

.calc-sliders-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Tier Selector */
.tier-selector-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.tier-selector-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.tier-selector {
    display: flex;
    gap: 6px;
}

.tier-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 4px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tier-btn:hover {
    background: #f1f5f9;
}

.tier-btn.active {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: #667eea;
}

.tier-btn-percent {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.tier-btn.active .tier-btn-percent {
    color: #667eea;
}

.tier-btn-name {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tier-btn.active .tier-btn-name {
    color: #667eea;
}

.tier-info-bar {
    margin-top: 10px;
    padding: 8px 12px;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    text-align: center;
}

.tier-info-text {
    font-size: 12px;
    color: white;
}

.tier-info-text strong {
    font-weight: 700;
}

/* Results V2 */
.calc-results-v2 {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.calc-result-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 6px;
    background: #f8fafc;
    border-radius: 10px;
    text-align: center;
}

.calc-result-item.featured {
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
}

.cri-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.calc-result-item.featured .cri-label {
    color: rgba(255, 255, 255, 0.8);
}

.cri-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.calc-result-item.featured .cri-value {
    color: white;
    font-size: 15px;
}

/* ===== OLD CALCULATOR CARD (legacy) ===== */
.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 12px;
}

.calc-slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-slider-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.calc-slider-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.app-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, var(--border-light) 50%);
    border-radius: 4px;
    outline: none;
}

.app-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.app-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.calc-result-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    background: var(--bg-body);
    border-radius: 14px;
    text-align: center;
}

.calc-result-box.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: white;
}

.crb-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.calc-result-box.featured .crb-label {
    color: rgba(255, 255, 255, 0.8);
}

.crb-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.calc-result-box.featured .crb-value {
    color: white;
    font-size: 15px;
}

/* ===== TIERS CARD ===== */
.tiers-ladder {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.tier-rung {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-body);
    border-radius: 12px;
    border-left: 4px solid var(--border-light);
}

.tier-rung.featured {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.tier-rung-info {
    display: flex;
    flex-direction: column;
}

.tier-rung-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.tier-rung-req {
    font-size: 11px;
    color: var(--text-muted);
}

.tier-rung-percent {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.tier-rung.featured .tier-rung-percent {
    color: #b45309;
}

/* ===== TRUST CARD ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--bg-body);
    border-radius: 12px;
}

.trust-icon {
    font-size: 20px;
}

.trust-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ===== INVITER CONTACT CARD ===== */
.inviter-contact-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
}

.inviter-contact-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.inviter-contact-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.inviter-contact-info {
    display: flex;
    flex-direction: column;
}

.inviter-contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    font-weight: 600;
}

.inviter-contact-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2px 0;
}

.inviter-contact-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.inviter-contact-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.inviter-contact-buttons {
    display: flex;
    gap: 10px;
}

.inviter-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.inviter-btn-phone {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.inviter-btn-email {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary-border);
}

.inviter-btn:active {
    transform: scale(0.98);
}
