/* TEST DRIVE STYLING */
/* Consistent with checkout.css patterns */

@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700);
/* Test Drive Styles */

.test-drive-main {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Alert Styling */
.alert-area {
    margin-top: 1rem;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
    cursor: pointer;
}

.alert .close:hover {
    opacity: 0.75;
}

.alert .close span {
    color: inherit;
}

.test-drive-hero {
    padding: 60px 0;
}

.test-drive-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 98vw;
    margin: 0 auto;
}

/* Combined Stats Layout */
.stats-combined {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stats-combined .stat-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 640px;
    margin: auto;
}

@media (max-width: 768px) {
    .stats-combined {
        gap: 1rem;
    }
}

.test-drive-header {
    text-align: center;
    margin-bottom: 40px;
}

.test-drive-header h1 {
    color: #0654a7;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.test-drive-header h1 i {
    color: #1bb1dc;
    margin-right: 15px;
}

.test-drive-header p {
    color: black;
    font-size: 1.1rem;
    margin: 0;
}
.test-drive-header p .no--cc{
  color:green;
  font-weight: bold;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-steps::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

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

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #0654a7;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: #0654a7;
    font-weight: 600;
}

/* Content Areas */
.test-drive-content {
    min-height: 400px;
}

.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-content h2 {
    color: #0654a7;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.step-content h3 {
    color: #0654a7;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 20px;
}

.step-content p {
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 25px;
}

/* File Upload Area */
.file-upload-area {
    border: 3px dashed #1bb1dc;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background: #f8feff;
}

.file-upload-area:hover {
    border-color: #0654a7;
    background: #f0f8ff;
}

.file-upload-area.dragover {
    border-color: #0654a7;
    background: #e6f3ff;
    transform: scale(1.02);
}

.upload-placeholder i {
    color: #1bb1dc;
    margin-bottom: 15px;
}

.upload-placeholder p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.btn-link {
    color: #0654a7;
    text-decoration: underline;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-link:hover {
    color: #1bb1dc;
}

/* File Info Display */
.file-info {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
}

.file-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-details i {
    color: #28a745;
    margin-right: 15px;
}

.file-details div {
    flex: 1;
}

.file-name {
    font-weight: 600;
    margin: 0;
    color: #333;
}

.file-size,
.file-rows {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* Email Section */
.email-section {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #1bb1dc;
    box-shadow: 0 0 0 0.2rem rgba(27, 177, 220, 0.25);
}

/* Email Input Specific Styling */
#emailInput {
    font-size: 20px;
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
}

/* Send Code Button Specific Styling */
#sendCodeBtn {
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0654a7;
    border-color: #0654a7;
    color: white;
}

.btn-primary:hover {
    background: #1bb1dc;
    border-color: #1bb1dc;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
}

.btn-outline-success {
    border-color: #28a745;
    color: #28a745;
}

.btn-outline-success:hover {
    background: #28a745;
    color: white;
}

.btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: white;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Code Input */
.code-input-section {
    text-align: center;
    margin-bottom: 30px;
}

.code-input {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.2em;
    font-weight: 600;
    max-width: 200px;
    margin: 15px auto 20px auto;
}

.resend-section {
    text-align: center;
    margin-bottom: 20px;
}

.back-section {
    text-align: center;
}

/* Processing Status */
.processing-status {
    text-align: center;
    margin-bottom: 40px;
}

.spinner {
    margin-bottom: 20px;
}

.spinner i {
    color: #1bb1dc;
}

.status-text {
    max-width: 400px;
    margin: 0 auto;
}

.progress {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-top: 15px;
}

.progress-bar {
    background: linear-gradient(90deg, #0654a7, #1bb1dc);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.processing-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Results */
.results-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

/* Inline Results Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    color: #0654a7;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #1bb1dc;
    padding-bottom: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.stat-label {
    font-weight: 600;
    color: #495057;
}

.stat-value {
    color: #0654a7;
    font-weight: 600;
    font-size: 1.1rem;
}

.carrier-table .table {
    margin: 0;
    font-size: 0.9rem;
}

.carrier-table .table th {
    background: #f8f9fa;
    border-top: none;
    color: #0654a7;
    font-weight: 600;
    text-align: center;
}

.carrier-table .table td {
    text-align: center;
    vertical-align: middle;
    border-color: #e0e0e0;
}

.results-actions {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.upgrade-pitch {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.upgrade-pitch h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}

.upgrade-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.upgrade-benefits li {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.upgrade-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.results-actions .btn {
    margin: 0 10px 10px 0;
}

/* Signup Form Section */
.signup-form-section {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.signup-form-section h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
}

.signup-form .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.signup-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.signup-form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.signup-form .form-control[readonly] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.signup-form .form-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.signup-form #createAccountBtn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.signup-form #createAccountBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Form Validation Styling */
.form-control.is-valid {
    border-color: #28a745;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
    display: block;
}

.valid-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
    display: block;
}

/* Alert Area */
.alert-area {
    margin-top: 20px;
}

.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    max-width: 1000px;
    margin: 0 auto;
}

.alert.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert.alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert.alert-warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert.alert-info {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Responsive Design */
@media (max-width: 768px) {
    .test-drive-card {
        padding: 20px;
        margin: 20px;
    }

    .test-drive-header h1 {
        font-size: 2rem;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step {
        flex: 0 0 calc(50% - 10px);
    }

    .progress-steps::before {
        display: none;
    }

    .file-upload-area {
        padding: 30px 15px;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .results-actions .btn {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .upgrade-pitch {
        text-align: center;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .upgrade-pitch h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .upgrade-benefits {
        text-align: left;
        display: inline-block;
        max-width: 90%;
    }

    .upgrade-benefits li {
        font-size: 1rem;
    }

    .signup-form-section {
        padding: 20px;
        margin-top: 30px;
    }

    .signup-form-section h3 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .test-drive-main {
        padding-top: 80px;
    }

    .test-drive-card {
        margin: 10px;
        padding: 15px;
    }

    .step-content h2 {
        font-size: 1.5rem;
    }

    .code-input {
        font-size: 1.2rem;
    }

    .upgrade-pitch h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .upgrade-benefits {
        max-width: 95%;
    }

    .upgrade-benefits li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .signup-form-section {
        padding: 15px;
        margin-top: 20px;
    }

    .signup-form-section h3 {
        font-size: 1.3rem;
    }

    .signup-form #createAccountBtn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* RESULTS PAGE STYLES */
/* =================== */

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.summary-icon {
    font-size: 2rem;
    color: #1bb1dc;
    margin-bottom: 15px;
}

.summary-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0654a7;
    margin-bottom: 5px;
}

.summary-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Results Sections */
.results-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.results-section:last-child {
    border-bottom: none;
}

.results-section h2 {
    color: #0654a7;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1bb1dc;
}

.results-section h2 i {
    margin-right: 10px;
    color: #1bb1dc;
}

/* Chart Container */
.chart-container {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
}

.carrier-table {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.carrier-table .table {
    margin: 0;
}

.carrier-table .table th {
    border-top: none;
    color: #0654a7;
    font-weight: 600;
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.status-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.status-card:hover {
    transform: translateY(-3px);
}

.status-card.status-active {
    border-left: 4px solid #28a745;
}

.status-card.status-inactive {
    border-left: 4px solid #dc3545;
}

.status-card.status-invalid {
    border-left: 4px solid #ffc107;
}

.status-card.status-unknown {
    border-left: 4px solid #6c757d;
}

.status-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.status-active .status-icon {
    color: #28a745;
}

.status-inactive .status-icon {
    color: #dc3545;
}

.status-invalid .status-icon {
    color: #ffc107;
}

.status-unknown .status-icon {
    color: #6c757d;
}

.status-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.status-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Limitation Notice */
.limitation-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
}

.limitation-notice h2 {
    color: #856404;
    border-bottom-color: #ffc107;
}

.limitation-content {
    margin-top: 20px;
}

.limitation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.limitation-item i {
    font-size: 1.5rem;
    color: #ffc107;
    margin-right: 15px;
    margin-top: 5px;
}

.limitation-item h4 {
    color: #856404;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.limitation-item p {
    color: #856404;
    margin: 0;
}

/* Upgrade Section */
.upgrade-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
}

.upgrade-section h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.upgrade-section h2 i {
    color: #ffd700;
}

.upgrade-section .lead {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.upgrade-features {
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #ffd700;
    margin-right: 10px;
}

.upgrade-pricing {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
}

.price-display {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-display .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-display .period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Modal Customizations */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .close {
    color: white;
    opacity: 0.8;
}

.modal-header .close:hover {
    opacity: 1;
}

/* Responsive Enhancements for Results */
@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .chart-container {
        height: 250px;
    }

    .upgrade-section {
        padding: 20px;
    }

    .price-display {
        font-size: 2.5rem;
    }
}

/* UPGRADE PAGE STYLES */
/* =================== */

/* Upgrade Benefits */
.upgrade-benefits {
    margin-bottom: 30px;
}

.upgrade-benefits h3 {
    color: #0654a7;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #1bb1dc;
    padding-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1bb1dc;
}

.benefit-item i {
    font-size: 2rem;
    color: #1bb1dc;
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-item h4 {
    color: #0654a7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Account Form Section */
.account-form-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.account-form-section h3 {
    color: #0654a7;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #1bb1dc;
    padding-bottom: 10px;
}

.upgrade-form .form-group {
    margin-bottom: 20px;
}

.upgrade-form label {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.upgrade-form .form-control {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.upgrade-form .form-control:focus {
    border-color: #1bb1dc;
    box-shadow: 0 0 0 0.2rem rgba(27, 177, 220, 0.25);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-actions .btn {
    margin: 0 10px 10px 0;
}

/* Pricing Information */
.pricing-info h3 {
    color: #0654a7;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #1bb1dc;
    padding-bottom: 10px;
}

.pricing-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-header h4 {
    color: #0654a7;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px;
}

.price-display .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-display .period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin-top: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .account-form-section {
        padding: 20px;
    }

    .form-actions .btn {
        display: block;
        width: 100%;
        margin: 0 0 15px 0;
    }

    .price-display {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .summary-grid,
    .status-grid {
        grid-template-columns: 1fr;
    }

    .limitation-item {
        flex-direction: column;
        text-align: center;
    }

    .limitation-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .results-section h2 {
        font-size: 1.4rem;
    }

    .upgrade-benefits h3,
    .account-form-section h3,
    .pricing-info h3 {
        font-size: 1.2rem;
    }

    .price-display {
        font-size: 1.8rem;
    }
}

/* CARRIER CHART STYLES */
/* =================== */

.app-csv-chart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.app-csv-chart-body {
    /* No additional styling needed */
}

.app-csv-chart-header {
    background: #f8f9fa;
    color: #0654a7;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    border-bottom: 2px solid #1bb1dc;
    font-size: 1rem;
}

.app-csv-chart-row {
    border-bottom: 1px solid #e9ecef;
}

.app-csv-chart-row:last-child {
    border-bottom: none;
}

.app-csv-chart-label {
    padding: 10px 12px;
    font-weight: 600;
    color: #495057;
    vertical-align: middle;
    width: 30%;
}

.app-csv-chart-percent {
    padding: 10px 12px;
    text-align: right;
    font-weight: 600;
    color: #6c757d;
    vertical-align: middle;
    width: 15%;
    font-size: 0.9rem;
}

.app-csv-chart-bar {
    padding: 10px 12px;
    vertical-align: middle;
    width: 55%;
    position: relative;
}

.app-csv-chart-value {
    display: block;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    text-align: center;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.app-csv-chart-value:hover {
    background: linear-gradient(90deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
}

/* Responsive adjustments for carrier chart */
@media (max-width: 768px) {
    .app-csv-chart-label {
        font-size: 0.9rem;
        width: 35%;
    }

    .app-csv-chart-percent {
        width: 20%;
        font-size: 0.8rem;
    }

    .app-csv-chart-bar {
        width: 45%;
    }

    .app-csv-chart-value {
        font-size: 0.8rem;
        padding: 6px 8px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .app-csv-chart-table {
        font-size: 0.85rem;
    }

    .app-csv-chart-header {
        padding: 8px;
        font-size: 0.9rem;
    }

    .app-csv-chart-label,
    .app-csv-chart-percent,
    .app-csv-chart-bar {
        padding: 8px;
    }

    .app-csv-chart-value {
        font-size: 0.75rem;
        padding: 4px 6px;
        min-width: 40px;
    }
}
