/* --- NFP FORM STYLES (Isolated with nfp- prefix) --- */

.nfp-form-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    font-family: "Inter", sans-serif;
    color: #1a1f36;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nfp-container-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .nfp-container-grid {
        grid-template-columns: 1fr;
    }
}

/* Stepper */
.nfp-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0 50px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.nfp-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Switcher Redesign */
.nfp-switcher {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 100px;
    display: flex;
    gap: 0;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nfp-switch-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nfp-switch-btn.active {
    background: #ffaf42;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 122, 33, 0.3);
}

.nfp-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
    border: 2px solid #e2e8f0;
    font-size: 16px;
}

.nfp-step-item.active .nfp-step-circle {
    background: #ffaf42;
    color: white;
    border-color: #ffaf42;
}

.nfp-step-label {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #64748b;
}

.nfp-step-item.active .nfp-step-label {
    color: #ffaf42;
}

.nfp-step-subtitle {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

.nfp-step-line {
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

/* Main Content Box */
.nfp-step-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
}

/* Section Titles */
.nfp-section-title {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.nfp-section-h {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Landing Header */
.nfp-step-header {
    text-align: center;
    margin-bottom: 30px;
}

.nfp-step-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.nfp-step-header p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

.nfp-billing-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    text-align: center;
}

.nfp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Sidebar Summary */
.nfp-sidebar {
    position: sticky;
    top: 20px;
}

.nfp-summary-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.nfp-summary-header {
    background: #1a1f36;
    color: white;
    padding: 20px;
    font-size: 20px;
    font-weight: 800;
}

.nfp-summary-body {
    padding: 20px;
}

.nfp-summary-inner-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.nfp-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.nfp-summary-total-wrap {
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.nfp-summary-total-wrap .price-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 5px;
}

.nfp-summary-total-wrap .price-val {
    font-size: 36px;
    font-weight: 800;
    color: #1a1f36;
}

/* Badges in Sidebar */
.nfp-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
}

.nfp-trust-badge.green {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.nfp-trust-badge.blue {
    background: #f0f9ff;
    color: #075985;
    border: 1px solid #bae6fd;
}

/* Contact in Sidebar */
.nfp-summary-contact {
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.nfp-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #475569;
}

/* Multi-Step Forms in Step 1 */
.nfp-step-content-item {
    margin-bottom: 40px;
}

/* Continue Button */
.nfp-continue-btn {
    background: #ffaf42;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nfp-continue-btn:hover:not(.disabled) {
    background: #fca326 !important;
}

.nfp-continue-btn.disabled {
    background: #ffb38a !important;
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Add-ons Step Styles */
.nfp-addon-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.nfp-addon-card:hover {
    border-color: #ffaf42;
}

.nfp-addon-card.active {
    border: 1px solid #ffaf42;
    background: #fffaf5;
}

.nfp-custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.nfp-custom-checkbox.checked {
    background: #ffaf42;
    border-color: #ffaf42;
}

.nfp-custom-checkbox.checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nfp-back-btn {
    border: 1px solid #e2e8f0;
    background: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    color: #64748b;
}

/* Form Step Styles */
.nfp-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nfp-field-wrap {
    margin-bottom: 5px;
}

.nfp-field-wrap.half {
    width: calc(50% - 10px);
}

.nfp-field-wrap.full {
    width: 100%;
}

.nfp-field-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 8px;
}

.nfp-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1f36;
    transition: all 0.3s ease;
    background: #ffffff;
}

.nfp-input:focus {
    outline: none;
    border-color: #ffaf42;
    box-shadow: 0 0 0 3px rgba(255, 122, 33, 0.1);
}

.nfp-input::placeholder {
    color: #cbd5e1;
}

.nfp-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1f36;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1f36' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center;
    background-size: 18px;
    appearance: none;
    cursor: pointer;
}
.nfp-select:focus {
    outline: none;
    border-color: #ffaf42;
    box-shadow: 0 0 0 3px rgba(255, 122, 33, 0.1);
}

/* Nomination Step Styles */
.nfp-nomination-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.nfp-nomination-card:hover {
    border-color: #ffaf42;
}

.nfp-nomination-card.active {
    border: 1px solid #ffaf42;
    background: #fffaf5;
}

.nfp-nom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.nfp-nom-radio.active {
    border-color: #ffaf42;
}

.nfp-nom-radio.active::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ffaf42;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Pricing Card (Exact UI as First Image) */
.nfp-plan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nfp-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.nfp-plan-card.recommended {
    border: 2px solid #ffaf42;
    box-shadow: 0 8px 30px rgba(255, 122, 33, 0.08);
}

.nfp-popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #ffaf42;
    color: white;
    text-align: center;
    padding: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 18px 18px 0 0;
}

.nfp-plan-badge {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.nfp-plan-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #1a1f36;
}

.nfp-plan-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 45px;
}

.nfp-plan-price {
    font-size: 44px;
    font-weight: 800;
    color: #1a1f36;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.nfp-plan-label {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    margin-left: 5px;
}

.nfp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.nfp-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.nfp-plan-features li span {
    color: #ffaf42;
    font-weight: bold;
    flex-shrink: 0;
}

.nfp-plan-footer-note {
    font-size: 13px;
    font-style: italic;
    color: #475569;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.nfp-plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.nfp-plan-btn:hover {
    background: #fca326 !important;
    opacity: 0.95;
    transform: scale(1.02);
}

.acc-loader {
    text-align: center;
    padding: 50px 0;
    font-size: 18px;
    font-weight: bold;
    color: #64748b;
}

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 1024px) {
    .nfp-form-wrapper {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .nfp-sidebar {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
    
    .nfp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nfp-stepper {
        padding: 10px 0 30px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nfp-step-item {
        flex: none;
        width: calc(50% - 15px);
        min-width: 120px;
        margin-bottom: 10px;
    }
    
    .nfp-step-line {
        display: none !important;
    }
    
    .nfp-step-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .nfp-step-label {
        font-size: 12px;
    }
    
    .nfp-step-subtitle {
        display: none;
    }
    
    .nfp-step-header h2 {
        font-size: 28px;
    }
    
    .nfp-step-header p {
        font-size: 16px;
    }
    
    .nfp-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nfp-field-wrap.half {
        width: 100%;
    }
    
    .nfp-step-box {
        padding: 20px;
    }
    
    .nfp-continue-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
    
    .nfp-plan-card {
        padding: 30px 20px !important;
    }
}

@media (max-width: 600px) {
    .nfp-footer-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    
    .nfp-footer-buttons button {
        width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* --- STEP 1 & 2 CUSTOM CARD AND OPTION STYLES --- */

/* Date Selector Grid */
.nfp-date-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 12px;
}
.nfp-date-card {
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}
.nfp-date-card:hover {
    border-color: #ffaf42;
}
.nfp-date-card.active {
    border: 2px solid #ffaf42;
    box-shadow: 0 4px 12px rgba(255, 122, 33, 0.1);
    background: #fffaf5;
}
.nfp-date-card .nfp-date-title {
    font-weight: 800;
    font-size: 15px;
    color: #1a1f36;
    margin-bottom: 5px;
}
.nfp-date-card .nfp-date-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
}
.nfp-date-card .nfp-date-months {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 3px;
}

/* Revenue Tier Section */
.nfp-revenue-select-wrap {
    margin-bottom: 30px;
}
.nfp-tier-detail-box {
    margin-top: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}
.nfp-tier-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1f36;
}
.nfp-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nfp-tag-pill {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    color: #c2410c;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

/* Billing switcher with badge */
.nfp-billing-switcher-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.nfp-billing-badge {
    background: #ffaf42;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 122, 33, 0.2);
}

/* Choose Your Plan */
.nfp-price-summary-box {
    background: #fffbfa;
    border: 1px solid #ffedd5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nfp-price-summary-box .price-label-col {
    display: flex;
    flex-direction: column;
}
.nfp-price-summary-box .price-label-col .plan-price-text {
    font-size: 32px;
    font-weight: 800;
    color: #ffaf42;
}
.nfp-price-summary-box .price-label-col .plan-price-sub {
    font-size: 12px;
    color: #c2410c;
    margin-top: 5px;
    font-weight: 600;
}

.nfp-plans-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}
.nfp-selection-plan-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.nfp-selection-plan-card:hover {
    border-color: #ffaf42;
}
.nfp-selection-plan-card.active {
    border: 2px solid #ffaf42;
    box-shadow: 0 8px 30px rgba(255, 122, 33, 0.12);
    background: #fffbfa;
}
.nfp-selection-plan-card .nfp-plan-select-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.nfp-selection-plan-card .nfp-plan-select-header .plan-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1f36;
}
.nfp-selection-plan-card .nfp-plan-select-header .plan-subtitle {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 600;
}
.nfp-selection-plan-card .nfp-plan-select-header .plan-radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nfp-selection-plan-card.active .nfp-plan-select-header .plan-radio-circle {
    border-color: #ffaf42;
}
.nfp-selection-plan-card.active .nfp-plan-select-header .plan-radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ffaf42;
    border-radius: 50%;
    display: block;
}

/* Feature lists */
.nfp-plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nfp-plan-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
}
.nfp-plan-features-list li.tick-green span {
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
}
.nfp-plan-features-list li.tick-orange span {
    color: #ffaf42;
    font-weight: bold;
    flex-shrink: 0;
}

/* Collapse extra features */
.nfp-features-collapse-btn {
    background: none;
    border: none;
    padding: 0;
    color: #ffaf42;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    outline: none;
}
.nfp-features-collapse-btn:hover {
    text-decoration: underline;
}
.nfp-features-collapsed-content {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}
.nfp-features-collapsed-content.open {
    display: block;
}

/* Indented sub-options container */
.nfp-sub-options-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #cbd5e1;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nfp-sub-option-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}
.nfp-sub-option-row:hover {
    border-color: #ffaf42;
}
.nfp-sub-option-row.active {
    border: 2px solid #ffaf42;
    background: #fffaf5;
}
.nfp-sub-option-row .sub-opt-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nfp-sub-option-row.active .sub-opt-radio {
    border-color: #ffaf42;
}
.nfp-sub-option-row.active .sub-opt-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #ffaf42;
    border-radius: 50%;
    display: block;
}
.nfp-sub-option-row .sub-opt-label-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.nfp-sub-option-row .sub-opt-label-col .title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1f36;
}
.nfp-sub-option-row .sub-opt-label-col .desc {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

/* Trust logos bottom grid */
.nfp-trust-logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.nfp-logo-item {
    height: 38px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.nfp-logo-item:hover {
    opacity: 1;
}
.nfp-stars-container {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #eab308;
    font-weight: 700;
}

@media (max-width: 768px) {
    .nfp-date-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nfp-plans-container-grid {
        grid-template-columns: 1fr;
    }
}

/* Side-by-side Step 2 & Step 3 row styles */
.nfp-tier-billing-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.nfp-tier-col {
    flex: 1;
    min-width: 0;
}
.nfp-billing-col {
    flex-shrink: 0;
    width: 280px;
}
@media (max-width: 900px) {
    .nfp-tier-billing-row {
        flex-direction: column;
        gap: 30px;
    }
    .nfp-billing-col {
        width: 100%;
    }
}

/* Mobile Stepper, Date selector, and Add-on Card enhancements */
@media (max-width: 600px) {
    .nfp-stepper {
        padding: 10px 0 20px !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    
    .nfp-step-item {
        flex: 1 !important;
        width: auto !important;
        min-width: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .nfp-step-circle {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
        margin-bottom: 6px !important;
        border-width: 1.5px !important;
    }
    
    .nfp-step-label {
        font-size: 10px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 65px !important;
    }
    
    .nfp-step-line {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nfp-date-grid {
        grid-template-columns: 1fr !important;
    }
    .nfp-addon-card > div {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }
    .nfp-addon-card div[style*="text-align:right"] {
        text-align: left !important;
    }
}

