/**
 * Custom Styles - Consolidated from Index.html
 * Generated during cleanup to remove inline styles
 * Maintains pixel-perfect parity with original implementation
 */

/* ============================================
   BASE STYLES (from inline <style> blocks)
   ============================================ */

/* Initial page load styles */
body {
    background: #04040E;
    color: #04040E;
}

a {
    color: #04040E;
}

.js:not(.is-ready),
.js:not(.is-ready) * {
    transition: none !important;
}

/* ============================================
   PRICING TOGGLE STYLES
   ============================================ */

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-toggle-label {
    font-size: 1.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 1.5rem;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(110, 168, 254, 0.3);
    transition: 0.4s;
    border-radius: 30px;
}

.pricing-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: #6ea8fe;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing-toggle-switch input:checked + .pricing-toggle-slider {
    background-color: rgba(110, 168, 254, 0.5);
}

.pricing-toggle-switch input:checked + .pricing-toggle-slider:before {
    transform: translateX(30px);
}

.pricing-save-badge {
    background: linear-gradient(135deg, #6ea8fe 0%, #21639b 100%);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 1rem;
}

/* ============================================
   PRICING SECTION CONTAINER
   ============================================ */

.pricing-section-container {
    position: relative;
    margin-top: 0;
    padding: 30px;
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100;
}

/* ============================================
   PRICING CARD STYLES
   ============================================ */

.pricing-card {
    background: rgba(110, 168, 254, 0.05);
    border: 1px solid rgba(110, 168, 254, 0.3);
    border-radius: 8px;
    padding: 3rem 2.5rem !important;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    transition: background 0.4s ease, border-color 0.4s ease;
    opacity: 1 !important;
}

.pricing-card:hover {
    background: rgba(33, 99, 147, 0.3);
    border-color: rgba(110, 168, 254, 0.5);
}

.pricing-card--featured {
    background: rgba(110, 168, 254, 0.1);
    border: 2px solid #6ea8fe;
    border-radius: 8px;
    position: relative;
}

.pricing-card--featured:hover {
    background: rgba(33, 99, 147, 0.35);
    border-color: #6ea8fe;
}

.pricing-amount {
    margin-bottom: 2rem;
}

.price-value {
    color: #eaf0ff;
    font-size: 3.5rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.price-period {
    color: #9aa4b2;
    font-size: 1.6rem;
    margin-left: 0.5rem;
}

/* ============================================
   ICON SIZE UTILITIES (CSS Custom Properties)
   ============================================ */

.icon-size-131x30 {
    --icon-width: 131;
    --icon-height: 30;
}

.icon-size-16x16 {
    --icon-width: 16;
    --icon-height: 16;
}

.icon-size-20x20 {
    --icon-width: 20;
    --icon-height: 20;
}

.icon-size-8x5 {
    --icon-width: 8;
    --icon-height: 5;
}

.icon-size-18x18 {
    --icon-width: 18;
    --icon-height: 18;
}

/* ============================================
   BUTTON UTILITIES
   ============================================ */

.btn-reset {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.mt-auto {
    margin-top: auto;
}

/* ============================================
   LEGEND COLOR UTILITIES
   ============================================ */

.legend-color-labour {
    background-color: #0B1623;
}

.legend-color-education {
    background-color: #0047AB;
}

.legend-color-productivity {
    background-color: #00C2FF;
}

.legend-color-economy {
    background-color: #67E8F9;
}

.legend-color-employment {
    background-color: #007BFF;
}

.legend-color-trade {
    background-color: #B3E0FF;
}

.legend-color-citizen {
    background-color: #67E8F9;
}

.legend-line-hierarchy {
    background-color: #4a90e2;
}

.legend-line-cross-reference {
    background-color: #ff6b6b;
}

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */

.tabs-container-spacing {
    margin-top: 40px;
}

.text-intro-description {
    font-size: 2.05rem;
    color: #9aa4b2;
}

.heading-pricing-main {
    color: #eaf0ff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.text-pricing-subtitle {
    color: #9aa4b2;
    margin-bottom: 3rem;
}

.pricing-toggle-label-active {
    color: #6ea8fe;
}

.pricing-toggle-label-inactive {
    color: #9aa4b2;
}

.heading-pricing-tier {
    color: #6ea8fe;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.heading-pricing-tier-featured {
    color: #6ea8fe;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/* ============================================
   PRICING FEATURE LIST
   ============================================ */

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-feature-item {
    padding: 0.8rem 0;
    color: #eaf0ff;
    font-size: 1.6rem;
    position: relative;
    padding-left: 2rem;
}

.pricing-feature-checkmark {
    position: absolute;
    left: 0;
    color: #6ea8fe;
}

/* ============================================
   PRICING BADGE (Popular)
   ============================================ */

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6ea8fe;
    color: #04040E;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ============================================
   DIVIDER UTILITIES
   ============================================ */

.divider-pricing {
    border: 0;
    border-top: 1px solid rgba(110, 168, 254, 0.2);
    margin: 2rem 0 3rem 0;
}

/* ============================================
   LEGEND SECTION HEADING
   ============================================ */

.legend-section-heading {
    margin-top: 10px;
}

