/* Credit Resolve Page - Homepage Style Match */

/* ==============================================
   HERO SECTION - HOMEPAGE STYLING OVERRIDE
   ============================================== */

/* Override Hero Section to match homepage */
.hero {
    background: #ffffff !important;
    padding: 1.5rem 2rem;
    min-height: auto;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.hero-container {
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Hero Content - Left Column */
.hero-content {
    padding-right: 1rem;
}

.hero-title {
    font-family: "Inter Tight", sans-serif !important;
    font-size: 72px !important;
    font-weight: 600 !important;
    line-height: 72px !important;
    color: #2C3E35 !important;
    margin-bottom: 0.6rem !important;
    letter-spacing: -0.03em !important;
    max-width: 680px !important;
}

.hero-subtitle {
    font-family: Helvetica, sans-serif !important;
    font-size: 32px !important;
    line-height: 44.8px !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    color: #4b5563 !important;
    margin-bottom: 1.1rem !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

.button-separator {
    color: #6B7280;
    font-weight: 400;
    font-size: 1rem;
    margin: 0 0.5rem;
}

/* Hero Visual - Right Column */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.office-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hero-image:hover .office-photo {
    transform: scale(1.1);
}

/* Create unique crop with focus on consultation scene */
.hero-visual .hero-image {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.03), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(74, 124, 89, 0.08);
}

.hero-visual .hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(74, 124, 89, 0.05), transparent);
    pointer-events: none;
}

/* PREMIUM TRUST SIGNALS - NOT BASIC ICONS */
.hero-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05), rgba(74, 124, 89, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(74, 124, 89, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.12);
    border-color: rgba(74, 124, 89, 0.2);
}

.guarantee-icon {
    width: 32px;
    height: 32px;
    color: #4A7C59;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    padding: 8px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 6px;
}

.guarantee-item span {
    font-weight: 700;
    color: #2C3E35;
    font-size: 0.875rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* INLINE BUTTONS WITH SEPARATOR */
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 40px;
}

.hero-primary-cta {
    background: linear-gradient(135deg, #4A7C59, #5a8c6a) !important;
    color: #ffffff !important;
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.3) !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 124, 89, 0.4) !important;
    background: linear-gradient(135deg, #5a8c6a, #4A7C59) !important;
}

.hero-secondary-cta {
    color: #4A7C59 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    opacity: 0.8;
    transition: opacity 0.3s ease !important;
}

.hero-secondary-cta:hover {
    opacity: 1;
}

/* ==============================================
   HERO FORM STYLING (MISSING CRITICAL STYLES)
   ============================================== */

.hero-form-container {
    position: sticky;
    top: 120px;
    align-self: start;
}

/* PREMIUM FORM REDESIGN - CONVERSION OPTIMIZED */
.hero-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 30px rgba(74, 124, 89, 0.06);
    border: 2px solid rgba(74, 124, 89, 0.08);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.hero-form-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 12px 40px rgba(74, 124, 89, 0.1);
    border-color: rgba(74, 124, 89, 0.15);
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #4A7C59, #5a8c6a, #6ba373);
    border-radius: 20px 20px 0 0;
}

/* PREMIUM FORM HEADER */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(74, 124, 89, 0.08);
}

.form-header h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.form-header p {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
}

/* ADD TRUST INDICATORS TO FORM */
.form-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(74, 124, 89, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(74, 124, 89, 0.06);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #4A7C59;
    font-weight: 600;
}

.trust-indicator svg {
    width: 16px;
    height: 16px;
    color: #4A7C59;
}

/* Removed duplicate - form-header styles are now above in PREMIUM FORM HEADER section */

/* Form Styles */
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Multi-step form styles */
.form-step {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-step-header {
    text-align: center;
    margin-bottom: 1rem;
}

/* Step Indicators - Linear Connected Design */
.step-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 100%;
    width: 2rem;
    height: 2px;
    background: #e5e7eb;
    z-index: -1;
}

.step-item:last-child::after {
    display: none;
}

.step-item.active::after,
.step-item.completed::after {
    background: var(--primary-green);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    background: #ffffff;
    transition: all 0.3s ease;
}

.step-number.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

.step-number.completed {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

.step-item.active .step-number {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

.step-item.completed .step-number {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6B7280;
    text-transform: none;
    letter-spacing: 0.025em;
}

.step-item.active .step-label {
    color: var(--primary-green);
    font-weight: 600;
}

.step-item.completed .step-label {
    color: var(--primary-green);
    font-weight: 600;
}

.step-progress {
    text-align: center;
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-text);
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
}

/* Radio button groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

.radio-option:hover {
    border-color: #4A7C59;
    background: rgba(74, 124, 89, 0.02);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #4A7C59;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #4A7C59;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-option input[type="radio"]:checked ~ .radio-text {
    color: #4A7C59;
    font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #4A7C59;
    background: rgba(74, 124, 89, 0.05);
}

.radio-text {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Step progress indicator */
.step-progress {
    font-weight: 600;
    color: #4A7C59;
}

/* Radio group error states */
.radio-group.error .radio-option {
    border-color: #ef4444;
}

.radio-group.error .radio-option:hover {
    border-color: #dc2626;
}

/* Debt Amount Slider Styles */
.slider-group {
    padding: 0.75rem;
    background: rgba(74, 124, 89, 0.02);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.slider-group:hover {
    border-color: rgba(74, 124, 89, 0.3);
    background: rgba(74, 124, 89, 0.03);
}

.slider-display {
    text-align: center;
    margin-bottom: 0.75rem;
}

.slider-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #4A7C59;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Inter Tight', sans-serif;
}

.slider-range {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.slider-container {
    position: relative;
    margin: 2rem 0 1rem 0;
}

.debt-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.debt-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: #4A7C59;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.debt-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.5);
}

.debt-slider::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

.debt-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: #4A7C59;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.4);
    transition: all 0.3s ease;
}

.debt-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.5);
}

.debt-slider::-moz-range-track {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 12px;
    pointer-events: none;
}

.tick {
    width: 2px;
    height: 12px;
    background: #d1d5db;
    border-radius: 1px;
}

/* Slider error state */
.slider-group.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.02);
}

.slider-group.error .debt-slider {
    background: rgba(239, 68, 68, 0.1);
}

.slider-group.error .debt-slider::-webkit-slider-thumb {
    background: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.slider-group.error .debt-slider::-moz-range-thumb {
    background: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Sliding interaction effect */
.debt-slider.sliding::-webkit-slider-thumb {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.6);
}

.debt-slider.sliding::-moz-range-thumb {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.6);
}

/* Statistics Section - Homepage Style */
.stats-section {
    background: #ffffff;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stats-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.stats-container .stat-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
    padding-right: 2rem;
}

.stat-item {
    text-align: left;
    color: #374151;
}

/* Clutch Reviews Styling */
.stat-item:first-child {
    text-align: left;
}

.review-line-1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.review-line-1 .stat-label {
    position: relative;
    top: 6px;
}

.review-line-2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #FFD700;
    font-size: 1rem;
}

.clutch-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3E35;
    line-height: 1.1;
}

.stat-detail {
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E35;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-unit {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
}

/* Match prefix style to stat-unit weight without changing size/color */
.stat-prefix {
    font-weight: 500;
}

.stat-description {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 400;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active .modal-overlay {
    opacity: 1;
}

.modal-container {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.modal.active .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    font-family: 'Inter Tight', sans-serif;
}

.modal-header p {
    color: #6b7280;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: #6b7280;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

.modal-form {
    /* Inherits form styles from main form */
}

/* Remove old custom button styling - use main.css buttons */

.form-actions {
    display: flex;
    gap: 1rem;
}

.form-actions .btn {
    flex: 1;
}

/* Modal form button styling */
.form-step .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.form-step .btn:hover .btn-arrow {
    transform: translateX(2px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.form-group:first-of-type {
    margin-top: 0.75rem;
}

.form-label {
    font-weight: 600;
    color: var(--navy-text);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

/* PREMIUM FORM INPUTS - LUXURY FEEL */
.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #2d3748;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4A7C59;
    box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.08), 0 4px 12px rgba(74, 124, 89, 0.06);
    transform: translateY(-1px);
}

.form-label {
    font-weight: 700;
    color: #2d3748;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Legacy code removed - conflicted with modal step indicators */

.form-input::placeholder {
    color: #9CA3AF;
}

.form-checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin: 1rem 0;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    position: relative;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form-checkbox:checked {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
}

.form-checkbox-label {
    font-size: 0.9rem;
    color: var(--dark-text);
    line-height: 1.4;
    cursor: pointer;
}

.form-checkbox-label a {
    color: var(--primary-green);
    text-decoration: underline;
}

.form-checkbox-label a:hover {
    color: var(--primary-green-hover);
}

/* Checkbox Group Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

.checkbox-option:hover {
    border-color: var(--primary-green);
    background: rgba(74, 124, 89, 0.02);
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    position: relative;
    background: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--navy-text);
    line-height: 1.4;
    flex: 1;
}

.checkbox-group.error .checkbox-option {
    border-color: #dc2626;
}

.checkbox-group.error .checkbox-custom {
    border-color: #dc2626;
}

.form-security {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.security-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.form-security span {
    font-size: 0.85rem;
    color: var(--navy-text);
    font-weight: 500;
}

/* ==============================================
   TRUST/STATS BAR SECTION (MISSING STYLES)
   ============================================== */

.trust-section {
    background: #ffffff;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.trust-container .trust-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
    padding-right: 2rem;
}

.trust-item {
    text-align: left;
    color: var(--dark-text);
    padding: 1rem 0;
}

/* First trust item (Reviews) */
.trust-item:first-child {
    text-align: left;
}

.trust-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #FFC107;
    font-size: 1rem;
}

.trust-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-text);
    line-height: 1.2;
}

.platform-detail {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-weight: 500;
    line-height: 1.3;
}

/* Trust section responsive design */
@media (max-width: 1024px) {
    .trust-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .trust-container .trust-item:nth-child(4),
    .trust-container .trust-item:nth-child(5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .trust-container .trust-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .trust-container .trust-item:last-child {
        padding-bottom: 0;
    }
}

/* ==============================================
   WHAT IS CREDIT RESOLVE SECTION
   ============================================== */

.what-is-section {
    background: #ffffff;
    padding: 5rem 0;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.what-is-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.what-is-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #374151;
    line-height: 1.6;
}

.what-is-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #4A7C59;
    font-weight: bold;
    font-size: 1.1rem;
}

.what-is-highlight {
    background: rgba(74, 124, 89, 0.05);
    border: 1px solid rgba(74, 124, 89, 0.1);
    border-left: 4px solid #4A7C59;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: #4A7C59;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-content h4 {
    color: #2C3E35;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

.comparison-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comparison-card h4 {
    color: #2C3E35;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    background: #f9fafb;
}

.comparison-item.highlight {
    background: rgba(74, 124, 89, 0.05);
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.comparison-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.comparison-value {
    font-weight: 500;
    color: #4b5563;
    font-size: 0.9rem;
}

.comparison-item.highlight .comparison-value {
    color: #4A7C59;
    font-weight: 600;
}

/* ==============================================
   PROCESS TIMELINE SECTION
   ============================================== */

.process-section {
    background: linear-gradient(180deg, #F4F8F5 0%, #E8F3EA 100%);
    padding: 5rem 0;
}

.process-timeline {
    margin: 3rem 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4A7C59 0%, rgba(74, 124, 89, 0.3) 100%);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step .step-number {
    width: 4rem;
    height: 4rem;
    background: #4A7C59;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    color: #2C3E35;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    background: rgba(74, 124, 89, 0.1);
    color: #4A7C59;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.process-cta .cta-text {
    font-size: 1.25rem;
    color: #2C3E35;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ==============================================
   LEGAL GUARANTEE SECTION
   ============================================== */

.guarantee-section {
    background: #ffffff;
    padding: 5rem 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.guarantee-item-large {
    background: #ffffff;
    border: 2px solid #E8F3EA;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.guarantee-item-large:hover {
    border-color: #4A7C59;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.guarantee-item-large .guarantee-icon {
    width: 64px;
    height: 64px;
    color: #4A7C59;
    margin: 0 auto 1.5rem auto;
}

.guarantee-item-large h3 {
    color: #2C3E35;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-item-large p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.05rem;
}

.guarantee-details {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(248, 252, 249, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.guarantee-details h4 {
    color: #2C3E35;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.method-number {
    width: 2rem;
    height: 2rem;
    background: #4A7C59;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.method-text {
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ==============================================
   SUCCESS STORIES ENHANCED SECTION
   ============================================== */

.reviews-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.review-card-compact {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.review-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4A7C59, #5a8c6a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter Tight', sans-serif;
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.2);
    flex-shrink: 0;
}

.client-details {
    flex: 1;
}

.client-details h5 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    font-family: 'Inter Tight', sans-serif;
}

.client-details .stars {
    display: inline-block !important;
    color: #FFA500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1 !important;
    letter-spacing: 0.15rem !important;
    gap: normal !important;
    vertical-align: middle !important;
}

.date {
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 500;
}

.outcome-badge {
    background: linear-gradient(135deg, #4A7C59, #5a8c6a);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    position: absolute;
    right: 0;
    top: -8px;
    margin-right: -4px;
}

.outcome-badge.success {
    background: linear-gradient(135deg, #059669, #10b981);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
    font-style: italic;
    margin: 1rem 0 1.25rem 0;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #4A7C59;
}

.case-facts {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.fact-row:last-child {
    border-bottom: none;
}

.fact-label {
    font-weight: 600;
    color: #4B5563;
    font-size: 0.85rem;
}

.fact-value {
    font-weight: 600;
    color: #1F2937;
    text-align: right;
    font-size: 0.85rem;
    max-width: 60%;
    word-wrap: break-word;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-initial-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A7C59, #5A8B6B);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.client-info .client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3E35;
    margin-bottom: 0.25rem;
}

.case-date {
    color: #6B7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.case-outcome {
    text-align: right;
}

.outcome-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4A7C59;
    line-height: 1;
}

.outcome-status {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.story-content-detailed {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #E8F3EA;
    position: relative;
}

.story-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(248, 252, 249, 0.5);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.detail-label {
    font-weight: 600;
    color: #6B7280;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: #2C3E35;
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
}

.success-summary {
    margin: 3rem 0;
    text-align: center;
    padding: 2.5rem;
    background: rgba(248, 252, 249, 0.8);
    border-radius: 16px;
    border: 2px solid #E8F3EA;
}

.success-summary h4 {
    color: #2C3E35;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.summary-item {
    text-align: center;
}

.summary-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4A7C59;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-label {
    color: #6B7280;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==============================================
   FAQ SECTION
   ============================================== */

.faq-section {
    background: linear-gradient(180deg, #F4F8F5 0%, #E8F3EA 100%);
    padding: 5rem 0;
}

.faq-grid {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4A7C59;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(74, 124, 89, 0.02);
}

.faq-question h4 {
    color: #2C3E35;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: #4A7C59;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   ENHANCED CTA SECTION
   ============================================== */

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2C3E35;
}

.benefit-check {
    width: 20px;
    height: 20px;
    color: #4A7C59;
}

/* ==============================================
   SECTION SPACING FIXES
   ============================================== */

/* Add proper spacing between sections */
.success-stories-section {
    margin-top: 6rem; /* Add significant spacing above success stories */
    padding-top: 5rem;
}

.stats-cta {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.03), rgba(90, 140, 106, 0.03));
    border-radius: 16px;
    position: relative;
}

.stats-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4A7C59, #5a8c6a);
    border-radius: 2px;
}

.stats-cta .cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2rem;
    font-family: 'Inter Tight', sans-serif;
}

.debt-insight {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* ==============================================
   DEBT TYPES SECTION
   ============================================== */

.debt-types-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.debt-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.debt-types-content {
    text-align: left;
}

.debt-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.debt-type-card {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.debt-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #4A7C59, #5a8c6a);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.debt-type-card:hover {
    transform: translateY(-4px);
    border-color: #4A7C59;
    box-shadow: 0 12px 32px rgba(74, 124, 89, 0.15);
}

.debt-type-card:hover::before {
    transform: scaleY(1);
}

.debt-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(90, 140, 106, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A7C59;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.debt-type-card:hover .debt-icon {
    background: linear-gradient(135deg, #4A7C59, #5a8c6a);
    color: #ffffff;
    transform: scale(1.05);
}

.debt-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.debt-type-info {
    text-align: left;
}

.debt-type-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.3;
}

.debt-type-info p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.debt-types-disclaimer {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(217, 119, 6, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D97706;
    flex-shrink: 0;
}

.disclaimer-icon svg {
    width: 20px;
    height: 20px;
}

.disclaimer-content {
    text-align: left;
}

.disclaimer-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400E;
    margin-bottom: 0.5rem;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #78350F;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .debt-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .debt-type-card {
        padding: 1.5rem;
    }
    
    .debt-types-disclaimer {
        padding: 1.25rem;
    }
}

/* ==============================================
   RESPONSIVE DESIGN ENHANCEMENTS
   ============================================== */

@media (max-width: 1024px) {
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guarantee-methods {
        grid-template-columns: 1fr;
    }
}

/* Center all section headings for desktop and mobile */
.what-is-section .section-label,
.what-is-section .section-title,
.what-is-section .section-subtitle,
.process-section .section-label,
.process-section .section-title,
.process-section .section-subtitle,
.debt-types-section .section-label,
.debt-types-section .section-title,
.debt-types-section .section-subtitle,
.guarantee-section .section-label,
.guarantee-section .section-title,
.guarantee-section .section-subtitle,
.statistics-section .section-label,
.statistics-section .section-title,
.statistics-section .section-subtitle,
.success-stories-section .section-label,
.success-stories-section .section-title,
.success-stories-section .section-subtitle,
.faq-section .section-label,
.faq-section .section-title,
.faq-section .section-subtitle {
    text-align: center !important;
}

/* Match section-title styling to Personal Injury page */
.what-is-section .section-title,
.process-section .section-title,
.debt-types-section .section-title,
.guarantee-section .section-title,
.statistics-section .section-title,
.success-stories-section .section-title,
.faq-section .section-title {
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--navy-text) !important;
    margin-bottom: 1rem !important;
    font-family: 'Inter Tight', sans-serif !important;
}

/* Fix section-label display to allow centering */
.what-is-section .section-label,
.process-section .section-label,
.debt-types-section .section-label,
.guarantee-section .section-label,
.statistics-section .section-label,
.success-stories-section .section-label,
.faq-section .section-label {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
}

@media (max-width: 768px) {
    /* Hero Section Mobile Styles */
    .hero {
        padding: 3rem 1.5rem !important;
        margin-top: 80px !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0 !important;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        max-width: 100% !important;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: stretch !important;
        justify-content: center !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .button-separator {
        display: none !important;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image {
        height: 300px !important;
        max-width: 100% !important;
    }
    
    /* Stats Section Mobile Styles */
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
        padding: 0 1.5rem;
    }
    
    /* First item (Reviews) spans full width */
    .stats-container .stat-item:first-child {
        grid-column: 1 / -1;
        text-align: center;
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    /* Center the review lines on mobile */
    .review-line-1,
    .review-line-2 {
        justify-content: center;
    }
    
    /* Remove borders from all other items on mobile */
    .stats-container .stat-item:not(:first-child) {
        border-right: none;
        padding-right: 0;
        text-align: center;
    }
    
    .stat-number {
        font-size: 28px;
        justify-content: center;
    }
    
    .stat-unit {
        font-size: 16px;
    }
    
    .stat-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .hero-guarantees {
        margin: 1rem 0 1.5rem 0;
    }
    
    .guarantee-item {
        padding: 0.5rem 0;
    }
    
    .guarantee-item span {
        font-size: 0.9rem;
    }
    
    .process-timeline::before {
        left: 1.5rem;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .process-step .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .story-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step-indicators {
        gap: 1rem;
    }
    
    .case-outcome {
        text-align: center;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .detail-value {
        max-width: 100%;
        text-align: center;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .comparison-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Center section headings on mobile */
    .what-is-section .section-label,
    .what-is-section .section-title,
    .what-is-section .section-subtitle,
    .process-section .section-label,
    .process-section .section-title,
    .process-section .section-subtitle,
    .debt-types-section .section-label,
    .debt-types-section .section-title,
    .debt-types-section .section-subtitle,
    .guarantee-section .section-label,
    .guarantee-section .section-title,
    .guarantee-section .section-subtitle,
    .statistics-section .section-label,
    .statistics-section .section-title,
    .statistics-section .section-subtitle,
    .success-stories-section .section-label,
    .success-stories-section .section-title,
    .success-stories-section .section-subtitle,
    .faq-section .section-label,
    .faq-section .section-title,
    .faq-section .section-subtitle {
        text-align: center !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Testimonial outcome badges on mobile */
    .outcome-badge {
        position: static !important;
        display: inline-block !important;
        margin-top: 0.75rem !important;
        font-size: 0.75rem !important;
        padding: 0.4rem 0.65rem !important;
    }
    
    .review-header {
        flex-wrap: wrap !important;
    }
    
    .client-details {
        flex: 1 1 100% !important;
        margin-bottom: 0.5rem !important;
    }
}

/* ==============================================
   UK DEBT CRISIS STATS SECTION (MISSING STYLES)
   ============================================== */

.debt-crisis-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 0;
    position: relative;
}

.debt-crisis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4A7C59, #5a8c6a);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card:hover::before {
    height: 6px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.stat-icon {
    background: rgba(74, 124, 89, 0.1);
    color: #4A7C59;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Inter Tight', sans-serif;
    background: linear-gradient(135deg, #1F2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value {
    color: #2C3E35;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-description {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.5;
    font-weight: 500;
}

.stats-insight {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stats-insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4A7C59, #5a8c6a);
}

.insight-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.debt-insight h4 {
    color: #2C3E35;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
}

.debt-insight p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.debt-insight .btn {
    margin-top: 1rem;
}
