/* ============================================
   SUBPAGE LAYOUT - Consistent for all pages
   ============================================ */

/* Subpage Hero Banner */
.subpage-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 50%, #1a73e8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.subpage-hero .container {
    position: relative;
    z-index: 2;
}

.subpage-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .subpage-title {
        font-size: 2.2rem;
    }
}

.subpage-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Subpage Content Sections */
.subpage-section {
    padding: 20px 0; /* Increased padding for better spacing */
}

.subpage-section:nth-child(even) {
    background-color: var(--light-gray);
}

.subpage-section:nth-child(odd) {
    background-color: white;
}

.subpage-section-header {
    margin-bottom: 3rem;
}

.subpage-section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.subpage-section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.text-center .subpage-section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.subpage-section-description {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
}

/* Content Cards */
.subpage-content-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 5px solid var(--primary-blue);
}

.subpage-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.subpage-content-card.card-red {
    border-top-color: var(--primary-red);
}

.subpage-content-card.card-purple {
    border-top-color: #6a11cb;
}

.subpage-content-card.card-green {
    border-top-color: #28a745;
}

.subpage-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 30px;
}

.subpage-card-icon.icon-red {
    background: var(--gradient-red);
}

.subpage-card-icon.icon-purple {
    background: var(--gradient-purple);
}

.subpage-card-icon.icon-green {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

/* Feature Lists */
.subpage-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.subpage-feature-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.subpage-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-feature-list.list-red li::before {
    color: var(--primary-red);
    background: rgba(232, 69, 69, 0.1);
}

.subpage-feature-list.list-purple li::before {
    color: #6a11cb;
    background: rgba(106, 17, 203, 0.1);
}

/* Highlight Cards */
.subpage-highlight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--primary-blue);
    margin: 2rem 0;
}

.subpage-highlight-card.red {
    border-left-color: var(--primary-red);
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
}

.subpage-highlight-card.purple {
    border-left-color: #6a11cb;
    background: linear-gradient(135deg, #f8f0ff 0%, #e9d7ff 100%);
}

.subpage-highlight-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subpage-highlight-title i {
    font-size: 1.2rem;
}

/* Badges */
.subpage-info-badge {
    display: inline-block;
    background: var(--gradient-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.subpage-info-badge.red {
    background: var(--gradient-red);
}

.subpage-info-badge.purple {
    background: var(--gradient-purple);
}

/* Two Column Layout */
.subpage-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .subpage-two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Key Points */
.subpage-key-points {
    display: grid;
    gap: 20px;
    margin-top: 2rem;
}

.subpage-key-point {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.subpage-key-point:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.subpage-key-point .point-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 22px;
}

/* Call to Action */
.subpage-cta {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
}

.subpage-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.subpage-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subpage-cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Back to Home Button */
.subpage-back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subpage-back-to-home:hover {
    color: var(--dark-blue);
    gap: 15px;
}

/* Additional helper classes for spacing */
.subpage-mt-5 {
    margin-top: 3rem !important;
}

.subpage-mb-4 {
    margin-bottom: 1.5rem !important;
}

.subpage-mb-3 {
    margin-bottom: 1rem !important;
}

.subpage-text-center {
    text-align: center !important;
}

/* ============================================
   TxCoin SPECIFIC STYLES
   ============================================ */

/* TxCoin Hero Variations */
.subpage-hero.txcoin-hero {
    background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
}

.subpage-hero.txcoin-hero::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Transaction Features Grid */
.txcoin-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 2.5rem 0;
}

.txcoin-feature {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.txcoin-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 30px rgba(195, 20, 50, 0.15);
}

.txcoin-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.txcoin-feature h5 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Revenue Metrics */
.revenue-metrics {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border-left: 5px solid var(--primary-red);
}

.metric-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
}

.metric-content h5 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.metric-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Credit Score System */
.credit-score-system {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border: 2px solid #e9ecef;
}

.score-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.score-level {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.score-level.bronze {
    border-top-color: #cd7f32;
}

.score-level.silver {
    border-top-color: #c0c0c0;
}

.score-level.gold {
    border-top-color: #ffd700;
}

.score-level.platinum {
    border-top-color: #e5e4e2;
}

.score-level:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.score-level h6 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.score-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.score-benefits li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

/* Usage Comparison */
.usage-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .usage-comparison {
        grid-template-columns: 1fr;
    }
}

.usage-column {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.usage-column h4 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.usage-column.ideal-usage {
    border-top: 5px solid var(--primary-red);
}

.usage-column.not-ideal {
    border-top: 5px solid #6c757d;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    width: 26px;
    height: 26px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-list li.not-recommended::before {
    content: '✗';
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* TxCoin CTA */
.subpage-cta.txcoin-cta {
    background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
}

/* Stats Counter */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   VGO COIN SPECIFIC STYLES
   ============================================ */

/* VGO Coin Hero Variations */
.subpage-hero.vgo-hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 70%, #1a73e8 100%);
}

.subpage-hero.vgo-hero::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Wealth Building Features */
.wealth-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 2.5rem 0;
}

.wealth-feature {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.wealth-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(26, 42, 108, 0.15);
}

.wealth-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.wealth-feature h5 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Daily Dividend System */
.daily-dividend-system {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border-left: 5px solid var(--primary-blue);
}

.dividend-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .dividend-process {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(50%);
    }
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 28px;
}

/* Distribution System */
.distribution-system {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border: 2px solid #e9ecef;
}

.distribution-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.distribution-channel {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.distribution-channel:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.channel-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 24px;
}

/* Growth Timeline */
.growth-timeline {
    position: relative;
    margin: 3rem 0;
    padding-left: 30px;
}

.growth-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-blue);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--light-blue);
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h5 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

/* Investment Calculator */
.investment-calculator {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border: 2px solid #e9ecef;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.calc-input-group {
    margin-bottom: 1.5rem;
}

.calc-input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 500;
}

.calc-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calc-input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
}

.calc-result {
    background: var(--gradient-blue);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.calc-result h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.calc-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

/* Comparison Table */
.vgo-comparison {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.comparison-table th {
    background: var(--gradient-blue);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--dark-blue);
}

.feature-check {
    color: #28a745;
    font-size: 1.2rem;
}

.feature-cross {
    color: #dc3545;
    font-size: 1.2rem;
}

/* VGO CTA */
.subpage-cta.vgo-cta {
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 70%, #1a73e8 100%);
}

/* Value Proposition */
.value-proposition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 22px;
}

/* ============================================
   CAREERS PAGE SPECIFIC STYLES
   ============================================ */

/* Careers Hero */
.subpage-hero.careers-hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 50%, #4a148c 100%);
}

.subpage-hero.careers-hero::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Job Filter */
.job-filter {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.filter-search {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
}

/* Job Cards */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
    }
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.job-card.remote {
    border-left-color: #28a745;
}

.job-card.operations {
    border-left-color: #007bff;
}

.job-card.sales {
    border-left-color: #ff6b6b;
}

.job-card.design {
    border-left-color: #6a11cb;
}

.job-card.marketing {
    border-left-color: #fd7e14;
}

.job-card.entrepreneur {
    border-left-color: #17a2b8;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.job-department {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.job-badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-badge.remote {
    background: #d4edda;
    color: #155724;
}

.job-badge.full-time {
    background: #d1ecf1;
    color: #0c5460;
}

.job-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
}

.job-detail i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.job-description {
    flex: 1;
    margin-bottom: 25px;
}

.job-description p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.skill-tag {
    padding: 5px 12px;
    background: #f8f9fa;
    color: #555;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
}

.job-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Job Details Modal */
.job-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.job-details-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e9ecef;
    color: var(--dark-blue);
}

.job-modal-header {
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
}

.job-modal-content {
    line-height: 1.7;
}

.job-section {
    margin-bottom: 30px;
}

.job-section h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-blue);
}

.job-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.job-section li {
    margin-bottom: 10px;
    color: #555;
}

.apply-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

/* Application Form */
.application-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.file-upload {
    border: 2px dashed #e9ecef;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--primary-blue);
    background: #f8f9fa;
}

.file-upload i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.file-upload input {
    display: none;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-blue);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--light-blue);
}

.step-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Stats Counter */
.career-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.career-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Careers CTA */
.subpage-cta.careers-cta {
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 50%, #4a148c 100%);
}

/* ============================================
   MINING & INVESTMENT PAGE STYLES
   ============================================ */

/* Mining Hero */
.subpage-hero.mining-hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 50%, #1e3c72 100%);
}

.subpage-hero.mining-hero::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 220, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 200, 255, 0.1) 0%, transparent 50%);
}

/* Mining Benefits */
.mining-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 2.5rem 0;
}

.mining-benefit {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mining-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.mining-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.mining-benefit-icon.red {
    background: var(--gradient-red);
}

.mining-benefit h5 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Comparison Section */
.mining-comparison {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-column {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-column.traditional {
    border-top: 5px solid #dc3545;
}

.comparison-column.vgo {
    border-top: 5px solid var(--primary-blue);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.comparison-icon.traditional {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.comparison-icon.vgo {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.comparison-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-points li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e9ecef;
}

.comparison-points li:last-child {
    border-bottom: none;
}

.comparison-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: rgba(26, 42, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-points.traditional li::before {
    content: '✗';
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* VANTA Business Section */
.vanta-business {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border-left: 5px solid var(--primary-red);
}

.vanta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.vanta-feature {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.vanta-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(232, 69, 69, 0.15);
}

.vanta-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.dashboard-stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.dashboard-chart {
    height: 200px;
    background: linear-gradient(to right, #f0f7ff, #e3f2fd);
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(26, 42, 108, 0.1) 20px,
        rgba(26, 42, 108, 0.1) 21px
    );
}

.chart-bar {
    position: absolute;
    bottom: 0;
    width: 40px;
    background: var(--gradient-blue);
    border-radius: 5px 5px 0 0;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: 100%; }
}

/* Investment Benefits */
.investment-benefits {
    margin: 2.5rem 0;
}

.investment-benefit {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    margin: 20px
}

.investment-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Daily Rewards Calculator */
.rewards-calculator {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border: 2px solid #e9ecef;
}

.calculator-slider {
    margin: 2rem 0;
}

.slider-container {
    position: relative;
    margin-bottom: 30px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.slider-label span {
    font-weight: 500;
    color: var(--dark-blue);
}

.slider-value {
    color: var(--primary-blue);
    font-weight: 600;
}

input[type="range"] {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    background: #e9ecef;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.reward-breakdown {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #dee2e6;
}

.breakdown-item:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--dark-blue);
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.industry-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 24px;
}

/* Earnings Timeline */
.earnings-timeline {
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    color: white;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

@media (max-width: 768px) {
    .timeline-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-steps::before {
        display: none;
    }
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-arrow {
    position: absolute;
    top: 25px;
    right: -20px;
    color: white;
    font-size: 20px;
}

@media (max-width: 768px) {
    .step-arrow {
        display: none;
    }
}

/* Mining CTA */
.subpage-cta.mining-cta {
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 50%, #1e3c72 100%);
}
/* ============================================
   RETAILERS PAGE STYLES
   ============================================ */

/* Retailers Hero */
.subpage-hero.retailers-hero {
    background: var(--gradient-blue);
}

.subpage-hero.retailers-hero::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Retailer Benefits */
.retailer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 2.5rem 0;
}

.retailer-benefit {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.retailer-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
}

.retailer-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
}

.retailer-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    z-index: 1;
}

@media (max-width: 992px) {
    .process-steps::before {
        display: none;
    }
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

/* Business Types */
.business-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.business-type {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.business-type:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.1);
}

.business-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 24px;
}

/* Payment Flow */
.payment-flow {
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
}

.flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .flow-diagram {
        flex-direction: column;
        gap: 30px;
    }
}

.flow-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .flow-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(50%);
    }
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 32px;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
}

/* Comparison Table */
.payment-comparison {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table.retailer {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table.retailer th {
    background: var(--gradient-blue);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table.retailer td.feature-check {
    color: var(--primary-green);
    font-weight: bold;
}

.comparison-table.retailer td.feature-cross {
    color: var(--primary-red);
    font-weight: bold;
}

/* B2B Section */
.b2b-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 3rem 0;
    border-left: 5px solid var(--dark-blue);
}

.b2b-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.b2b-partner {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.b2b-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.1);
}

/* Stats Grid */
.retailer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.retailer-stat {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-blue);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d2e3fc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 22px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Registration Form */
.registration-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.1);
    border-top: 5px solid var(--primary-blue);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-blue);
}

.form-section h5 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 1rem;
}

/* QR Code Preview */
.qr-preview {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed #d2e3fc;
    margin: 2rem 0;
}

.qr-container {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.qr-container::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 8px,
        #d2e3fc 8px,
        #d2e3fc 9px
    );
}

.qr-code {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.qr-code::before,
.qr-code::after {
    content: '';
    position: absolute;
    background: var(--dark-blue);
}

.qr-code::before {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
}

.qr-code::after {
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
}

/* Benefits Checklist */
.benefits-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-checklist li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--light-blue);
}

.benefits-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
    width: 30px;
    height: 30px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Retailer CTA */
.subpage-cta.retailers-cta {
    background: var(--gradient-blue);
}

/* Form Styling */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(26, 115, 232, 0.25);
}

.btn-primary {
    background: var(--gradient-blue);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

/* Section Headers */
.section-header h2 {
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}