@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0b0d;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background and Visual Effects */
.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0072B7 0%, #1a365d 25%, #2d3748 50%, #38a169 75%, #8AC740 100%);
    opacity: 0.1;
    z-index: -2;
}

.app-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(138, 199, 64, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 114, 183, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: rotate(0deg) scale(1); 
    }
    50% { 
        transform: rotate(180deg) scale(1.1); 
    }
}

/* Layout Structure */
.app-container {
    display: flex;
    min-height: 100vh;
    backdrop-filter: blur(20px);
    background: rgba(10, 11, 13, 0.8);
}

.sidebar {
    width: 300px;
    background: rgba(26, 32, 44, 0.9);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Progress Section */
.progress-section {
    flex: 1;
}

.progress-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.progress-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-step.active {
    background: rgba(138, 199, 64, 0.2);
    border: 1px solid rgba(138, 199, 64, 0.3);
}

.progress-step.completed {
    background: rgba(0, 114, 183, 0.2);
    border: 1px solid rgba(0, 114, 183, 0.3);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #8AC740;
    color: #000;
    box-shadow: 0 0 20px rgba(138, 199, 64, 0.4);
}

.progress-step.completed .step-number {
    background: #0072B7;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 114, 183, 0.4);
}

.step-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Content Header */
.content-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 32, 44, 0.5);
}

.content-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Content Body */
.content-body {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

.survey-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Question Cards */
.question-card {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.question-number {
    display: inline-block;
    background: rgba(138, 199, 64, 0.2);
    color: #8AC740;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.question-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.question-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

.metric-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.metric-highlight {
    color: #8AC740;
    font-weight: 600;
}

/* Form Input Styles */
.input-group {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(138, 199, 64, 0.3);
    box-shadow: 0 0 0 2px rgba(138, 199, 64, 0.1);
}

.modern-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    color: white;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 56px;
}

.modern-input:focus {
    outline: none;
    border-color: #8AC740;
    box-shadow: 0 0 0 3px rgba(138, 199, 64, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modern-input.field-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.modern-input.field-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.country-code-select.field-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.country-code-select.field-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

/* Option Grid and Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-card:hover {
    background: rgba(138, 199, 64, 0.1);
    border-color: rgba(138, 199, 64, 0.5);
    transform: translateY(-2px);
}

.option-card.selected {
    background: rgba(138, 199, 64, 0.2);
    border-color: #8AC740;
    box-shadow: 0 0 20px rgba(138, 199, 64, 0.3);
}

.option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.option-card.selected .option-radio {
    border-color: #8AC740;
    background: #8AC740;
}

.option-card.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Slider Styles */
.slider-container {
    margin: 30px 0;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slider-value {
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 800;
}

.modern-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 12px rgba(138, 199, 64, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.modern-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
}

.modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(138, 199, 64, 0.6);
}

/* Custom Entry Container */
.custom-entry-container {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.custom-entry-container:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 199, 64, 0.4);
    box-shadow: 0 0 0 2px rgba(138, 199, 64, 0.1);
}

.custom-entry-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: normal;
}

.custom-entry-field {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.custom-entry-field:focus {
    outline: none;
    border-color: #8AC740;
    box-shadow: 0 0 0 3px rgba(138, 199, 64, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.custom-entry-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.custom-entry-field.field-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.custom-entry-field.field-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

/* Industry Average Display */
.industry-average {
    margin-top: 15px;
    padding: 12px 16px;
    background: rgba(0, 114, 183, 0.1);
    border: 1px solid rgba(0, 114, 183, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-average::before {
    content: "💡";
    font-size: 1rem;
}

/* Navigation */
.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-button {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    text-decoration: none;
}

.nav-button.primary {
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(138, 199, 64, 0.3);
}

.nav-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(138, 199, 64, 0.4);
}

.nav-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    transition: width 0.5s ease;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(138, 199, 64, 0.5);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(40px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.modal-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.phone-input-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.country-code-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    flex-shrink: 0;
}

.country-code-select:focus {
    outline: none;
    border-color: #8AC740;
    box-shadow: 0 0 0 3px rgba(138, 199, 64, 0.2);
}

.country-code-select option {
    background: #1a202c;
    color: white;
}

.phone-input {
    flex: 1;
}

.nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.nav-button.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.consent-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.consent-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.error-message {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 15px 0;
    display: none;
    font-size: 0.9rem;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0072B7 0%, #1a365d 25%, #8AC740 100%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    flex-direction: column;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.loading-subtext {
    font-size: 1rem;
    opacity: 0.8;
}

.results-container {
    display: none;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.scale-score-hero {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.scale-score-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 199, 64, 0.1) 0%, transparent 70%);
    animation: rotateBackground 10s linear infinite;
}

.scale-score-value {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.scale-score-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.scale-score-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* New Score Hero Section Styling */
.score-hero-section {
    margin-bottom: 30px;
}

.score-hero-card {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.score-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 199, 64, 0.1) 0%, transparent 70%);
    animation: rotateBackground 10s linear infinite;
    z-index: 1;
}

.score-hero-content {
    position: relative;
    z-index: 2;
}

.score-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.score-display {
    margin: 30px 0;
}

.score-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.score-explanation {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.score-explanation-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-category {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(138, 199, 64, 0.1);
    border: 1px solid rgba(138, 199, 64, 0.3);
}

.explanation-text {
    margin-bottom: 20px;
}

.explanation-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.ai-impact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-impact h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.ai-impact p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.insight-card .insight-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.aiq-highlight {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9em;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.metric-card {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(138, 199, 64, 0.4);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.metric-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.metric-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}



/* Net ROI Section */
.net-roi-section {
    margin: 30px 0;
}

.net-roi-card {
    background: linear-gradient(135deg, rgba(138, 199, 64, 0.15) 0%, rgba(76, 175, 80, 0.15) 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(138, 199, 64, 0.3);
    text-align: center;
}

.net-roi-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.roi-calculation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.roi-item {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    min-width: 180px;
}

.roi-item.gains {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.roi-item.costs {
    background: rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.roi-item.net {
    background: rgba(138, 199, 64, 0.2);
    border: 1px solid rgba(138, 199, 64, 0.4);
    font-weight: 700;
}

.roi-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.roi-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.roi-item.gains .roi-value {
    color: #4CAF50;
}

.roi-item.costs .roi-value {
    color: #FF9800;
}

.roi-item.net .roi-value {
    color: #8AC740;
    font-size: 1.5rem;
}

/* ROI Timeline Section */
.roi-timeline-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-timeline-section h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.timeline-chart {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-line-chart {
    margin-bottom: 20px;
}

.roi-line-chart {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 10px;
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.timeline-point {
    text-align: center;
    flex: 1;
}

.point-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-weight: 600;
}

.point-value {
    font-size: 1rem;
    color: #8AC740;
    font-weight: 700;
}

/* Competitive Alert */
.competitive-alert {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(220, 53, 69, 0.9) 100%);
    border: 1px solid rgba(255, 107, 107, 0.5);
    border-radius: 16px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    }
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-content {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.alert-content strong {
    font-weight: 700;
    color: #ffffff;
}

/* Cost & ROI Analysis Section */
.cost-roi-analysis-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.cost-roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.cost-breakdown-column,
.roi-analysis-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.column-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.cost-category {
    margin-bottom: 25px;
}

.cost-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cost-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cost-item.total {
    background: rgba(138, 199, 64, 0.1);
    border: 1px solid rgba(138, 199, 64, 0.3);
    font-weight: 600;
    margin-top: 10px;
}

.cost-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cost-value {
    color: #8AC740;
    font-weight: 600;
    font-size: 1rem;
}

.total-cost {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(138, 199, 64, 0.2) 0%, rgba(0, 114, 183, 0.2) 100%);
    border: 1px solid rgba(138, 199, 64, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.total-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #8AC740;
    text-shadow: 0 0 10px rgba(138, 199, 64, 0.3);
}

.roi-metric-breakdown {
    margin-bottom: 25px;
}

.roi-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.roi-metric {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid #8AC740;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.metric-icon {
    font-size: 1.2rem;
}

.metric-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.metric-calculation {
    margin-left: 30px;
}

.calculation-line {
    margin-bottom: 5px;
}

.calc-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.calc-result {
    font-weight: 600;
    color: #8AC740;
    font-size: 1rem;
}

/* Business Transformation Section */
.business-transformation-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.transformation-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin: 30px 0;
}

.transformation-state {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.current-state {
    border-left: 4px solid #FF9800;
}

.ai-powered-state {
    border-left: 4px solid #8AC740;
}

.state-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

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

.metric-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-align: center;
}

.metric-item.improved {
    background: rgba(138, 199, 64, 0.1);
    border: 1px solid rgba(138, 199, 64, 0.2);
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #8AC740;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.improvement {
    display: block;
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 3px;
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.arrow-icon {
    font-size: 2rem;
    color: #8AC740;
    font-weight: bold;
}

.arrow-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
}

.transformation-impact {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(138, 199, 64, 0.15) 0%, rgba(0, 114, 183, 0.15) 100%);
    border-radius: 16px;
    border: 1px solid rgba(138, 199, 64, 0.3);
}

.impact-summary h4 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.impact-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.impact-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 120px;
}

.impact-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #8AC740;
    margin-bottom: 5px;
}

.impact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-separator {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

/* Results Container Styles - Fix for data card positioning */
.results-container {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    overflow-y: auto;
    max-height: calc(100vh - 160px);
}

.results-container.show {
    display: block;
}

.results-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

/* Content Body Styles */
.content-body {
    flex: 1;
    padding: 20px 40px;
    overflow-y: auto;
    position: relative;
}

/* Scale Score Hero Section */
.scale-score-hero {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.score-container {
    margin-bottom: 30px;
}

.score-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.score-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.score-explanation {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.score-explanation p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

.score-factors {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.factor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.factor-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.factor-value {
    font-weight: 700;
    color: #8AC740;
}

/* Competitive Alert Section */
.competitive-alert {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(233, 30, 99, 0.2) 100%);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.alert-content {
    text-align: center;
}

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

.alert-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Metrics Dashboard Full Width */
.metrics-dashboard-fullwidth {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card-fullwidth {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card-fullwidth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.metric-icon {
    font-size: 1.5rem;
}

.metric-title-section {
    flex: 1;
}

.metric-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.metric-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.aiq-highlight {
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.metric-value-section {
    margin-bottom: 15px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8AC740;
    line-height: 1.2;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metric-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.metric-value-explanation {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    line-height: 1.4;
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cost & ROI Analysis Section */
.cost-roi-analysis-section {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.cost-roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.cost-breakdown-column,
.roi-analysis-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.cost-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-category-title,
.roi-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.cost-item.total,
.cost-item.subtotal {
    background: rgba(138, 199, 64, 0.1);
    border: 1px solid rgba(138, 199, 64, 0.2);
    font-weight: 700;
}

.cost-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.cost-value {
    font-size: 1rem;
    font-weight: 700;
    color: #8AC740;
}

.total-cost {
    background: linear-gradient(135deg, rgba(138, 199, 64, 0.2) 0%, rgba(0, 114, 183, 0.2) 100%);
    border: 1px solid rgba(138, 199, 64, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.total-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8AC740;
}

/* ROI Metric Breakdown */
.roi-metric-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roi-metric {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #8AC740;
}

.metric-calculation {
    margin-top: 10px;
}

.calculation-line {
    margin-bottom: 8px;
}

.calc-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.calculation-result {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8AC740;
}

.result-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Net ROI Summary */
.net-roi-summary {
    background: linear-gradient(135deg, rgba(138, 199, 64, 0.15) 0%, rgba(0, 114, 183, 0.15) 100%);
    border: 1px solid rgba(138, 199, 64, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.net-roi-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.net-roi-calculation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.roi-components {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.component-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px 25px;
    border-radius: 12px;
    min-width: 200px;
}

.component-item.revenue {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.component-item.cost {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.component-item.result {
    background: rgba(138, 199, 64, 0.2);
    border: 1px solid rgba(138, 199, 64, 0.3);
}

.component-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #8AC740;
}

.component-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.component-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4CAF50;
}

.component-separator {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    margin: 10px 0;
}

/* Implementation Costs Section */
.implementation-costs-section {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.cost-breakdown-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.total-cost-section {
    background: linear-gradient(135deg, rgba(138, 199, 64, 0.2) 0%, rgba(0, 114, 183, 0.2) 100%);
    border: 1px solid rgba(138, 199, 64, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.total-cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-cost-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.total-cost-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8AC740;
}

/* Payback Analysis Section */
.payback-analysis-section {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.payback-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.break-even-metric,
.projection-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.break-even-icon,
.projection-icon {
    font-size: 1.5rem;
}

.break-even-text,
.projection-text {
    text-align: center;
}

.break-even-primary {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.break-even-number {
    font-size: 2rem;
    font-weight: 800;
    color: #8AC740;
    margin: 0 5px;
}

.projection-label {
    color: rgba(255, 255, 255, 0.8);
}

.projection-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8AC740;
    margin: 0 5px;
}

.projection-period {
    color: rgba(255, 255, 255, 0.7);
}

.payback-explanation {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.explanation-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: center;
}

.payback-disclaimer {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-style: italic;
}

/* Executive Summary Numbers */
.executive-number {
    color: #8AC740 !important;
    font-weight: 700;
}

/* Insights Section */
.insights-section {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.insights-section h2 {
    margin-bottom: 30px;
}

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #8AC740;
}

.insight-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.insight-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.insight-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Action Buttons Section */
.action-buttons-section {
    text-align: center;
    margin-top: 40px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #8AC740;
    border: 1px solid #8AC740;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cost-roi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transformation-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .state-metrics {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* AiQ Highlight Styling */
.aiq-highlight {
    color: #8AC740;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(138, 199, 64, 0.3);
}

.metric-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Pricing Table Styling */
.pricing-table-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pricing-column {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

/* ROI Calculation Styling */
.roi-calculation {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 2px solid #8AC740;
    flex-wrap: wrap;
}

.calculation-component {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
}

.calculation-value {
    font-size: 1.4em;
    font-weight: bold;
    color: #8AC740;
    margin-bottom: 5px;
}

.calculation-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.calculation-operator {
    font-size: 2em;
    font-weight: bold;
    color: #8AC740;
    margin: 0 10px;
}

.calculation-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: #8AC740;
    border-radius: 8px;
    color: white;
    min-width: 160px;
}

.result-value {
    color: white !important;
    font-size: 1.6em !important;
}

/* Annual ROI Section */
.annual-roi-section {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #8AC740 0%, #7bb83a 100%);
    border-radius: 8px;
    color: white;
}

.annual-roi-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.annual-label {
    font-size: 1.1em;
    font-weight: 600;
}

.annual-amount {
    font-size: 1.4em;
    font-weight: bold;
}

/* Growth Timeline Section */
.growth-timeline-section {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 2px solid #8AC740;
}

.timeline-heading {
    font-size: 1.2em;
    font-weight: bold;
    color: #8AC740;
    margin-bottom: 15px;
    text-align: center;
}

.timeline-projections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #8AC740;
    border-radius: 8px;
    border: 2px solid #8AC740;
    text-align: center;
    color: white;
}

.timeline-period {
    font-size: 1em;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.timeline-value {
    font-size: 1.3em;
    font-weight: bold;
    color: white;
}

/* Shareable URL Card Section */
.shareable-url-section {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.shareable-url-card h3 {
    color: #8AC740;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.shareable-url-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.url-display {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.url-input {
    flex: 1;
    min-width: 300px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.url-input:focus {
    outline: none;
    border-color: #8AC740;
    box-shadow: 0 0 0 2px rgba(138, 199, 64, 0.2);
}

.copy-url-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #8AC740 0%, #0072B7 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.copy-url-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.copy-url-btn:active {
    transform: translateY(0);
}

.url-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive design for shareable URL card */
@media (max-width: 768px) {
    .url-display {
        flex-direction: column;
        align-items: stretch;
    }
    
    .url-input {
        min-width: unset;
        width: 100%;
    }
    
    .copy-url-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Executive Summary Section */
.executive-summary-section {
    margin-top: 20px;
    margin-bottom: 15px;
}

.executive-summary-heading {
    font-size: 1.4em;
    font-weight: bold;
    color: #8AC740;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #8AC740;
}

/* Required Asterisk Styling */
.required-asterisk {
    color: #ff4444;
    font-weight: bold;
    font-size: 1.1em;
    margin-right: 4px;
}

/* Input with Label Styling */
.input-with-label {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.field-label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    text-align: left;
    letter-spacing: 0.3px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.form-row .input-with-label {
    flex: 1;
    margin-bottom: 0;
}

/* Modern Input Styling Improvements */
.modern-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modern-input:focus {
    outline: none;
    border-color: #8AC740;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(138, 199, 64, 0.2);
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Enhanced placeholder styling for required fields */
.modern-input[placeholder^="*"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Phone Input Wrapper Styling */
.phone-input-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.country-selector {
    flex: 0 0 auto;
    min-width: 200px;
}

.country-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.country-select:focus {
    outline: none;
    border-color: #8AC740;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(138, 199, 64, 0.2);
}

.country-select option {
    background: rgba(26, 32, 44, 0.95);
    color: white;
    padding: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
}

.phone-number-input {
    flex: 1;
    min-width: 0;
}

/* Consent Container Styling */
.consent-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-checkbox {
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #8AC740;
    cursor: pointer;
}

.consent-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.pricing-items {
    margin-bottom: 20px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-item:last-child {
    border-bottom: none;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8AC740;
    margin-bottom: 3px;
}

.product-period {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.pricing-total {
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-total.highlighted {
    background: linear-gradient(135deg, rgba(138, 199, 64, 0.2) 0%, rgba(0, 114, 183, 0.2) 100%);
    border: 1px solid rgba(138, 199, 64, 0.4);
}

.pricing-total.spaced-total {
    margin-top: 25px;
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.total-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8AC740;
}

/* Investment Summary */
.investment-summary {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.summary-row.total-investment {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px 0;
    border-top: 2px solid rgba(138, 199, 64, 0.3);
    border-bottom: 2px solid rgba(138, 199, 64, 0.3);
    margin: 15px 0;
}

.summary-row.total-investment .summary-value {
    font-size: 1.6rem;
    color: #8AC740;
    text-shadow: 0 0 10px rgba(138, 199, 64, 0.3);
}

.summary-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-value {
    color: #8AC740;
    font-weight: 700;
}

/* Bar Chart Diagonal Labels */
.bar-label.diagonal {
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: center;
    font-size: 0.75rem !important;
    white-space: nowrap;
    margin-top: 5px;
    bottom: -40px;
}

/* ROI Subtitle */
.roi-subtitle, .timeline-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-style: italic;
}

/* Timeline Headline */
.timeline-headline {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-headline p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-style: italic;
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .app-container {
        flex-direction: column;
        min-height: 100vh;
        height: auto;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        padding: 20px;
        position: relative;
    }
    
    .main-content {
        flex: 1;
        height: auto;
        overflow-y: auto;
    }
    
    .content-body {
        padding: 20px;
        height: auto;
        overflow-y: auto;
    }
    
    .progress-section {
        display: none;
    }
    
    .content-header {
        padding: 20px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .question-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .scale-score-value {
        font-size: 3.5rem;
    }
    
    /* Mobile Phone Input Fixes */
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .country-selector {
        min-width: unset;
        width: 100%;
    }
    
    .phone-number-input {
        width: 100%;
        min-width: unset;
    }
    
    /* Mobile Results Screen Fixes */
    .results-container {
        height: auto;
        overflow-y: auto;
        max-height: none;
    }
    
    .action-buttons-grid {
        height: auto;
        overflow-y: visible;
    }
    
    /* Ensure survey container is scrollable */
    .survey-container {
        height: auto;
        overflow-y: auto;
        max-height: none;
    }
    
    /* Mobile Navigation Improvements */
    .nav-button {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Mobile Modal Improvements */
    .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
    }
    
    .modal-form {
        max-height: none;
        overflow-y: visible;
    }
    
    /* Improve touch targets */
    .question-option {
        min-height: 48px;
        padding: 12px 16px;
    }
    
    /* Fix viewport issues */
    .content-header,
    .content-body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Charts Section Spacing */
.charts-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.charts-section .section-title {
    margin-top: 0;
}

/* Action Button Groups */
.action-button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    margin: 0;
}

.action-button-group .action-button {
    width: 100%;
    padding: 18px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    margin: 30px auto 0;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
}

.button-subtext {
    font-size: 0.85em;
    opacity: 0.9;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.scale-score-title {
    font-size: 1.8rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Container and layout adjustments */
    .container {
        padding: 10px;
        margin: 0;
    }
    
    .results-content {
        padding: 15px;
        margin: 0;
    }
    
    /* Scale Score Hero Section */
    .scale-score-hero {
        padding: 20px 15px;
        text-align: center;
    }
    
    .scale-score-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .scale-score-number {
        font-size: 3rem;
        margin: 15px 0;
    }
    
    .scale-score-explanation {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    /* Competitive Alert */
    .competitive-alert {
        margin: 20px 0;
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .alert-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .alert-content {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Metrics Dashboard */
    .metrics-dashboard {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .metric-card {
        padding: 15px;
        min-height: auto;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
    
    .metric-description {
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    /* Investment Analysis */
    .cost-breakdown {
        padding: 20px 15px;
    }
    
    .pricing-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 6px;
        white-space: nowrap;
    }
    
    .investment-summary {
        margin-top: 20px;
    }
    
    .summary-row {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    /* Charts Section */
    .charts-visualization {
        padding: 20px 15px;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .chart-container {
        padding: 15px;
        min-height: 250px;
    }
    
    .chart-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .timeline-headline p {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    /* Bar Chart Mobile Adjustments */
    .bar-chart {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .bar-chart svg {
        min-width: 400px;
    }
    
    /* ROI Timeline Mobile */
    .roi-timeline {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .roi-timeline svg {
        min-width: 350px;
    }
    
    /* Insights Section */
    .insights-section {
        padding: 20px 15px;
    }
    
    .insights-card {
        padding: 20px 15px;
    }
    
    .insights-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .insight-content {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .insight-content ul {
        padding-left: 20px;
    }
    
    .insight-content li {
        margin-bottom: 8px;
    }
    
    /* Action Buttons Mobile */
    .action-buttons-grid {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .action-button-group {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .action-button-group .action-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.95rem;
        min-height: 52px;
        white-space: normal;
        line-height: 1.3;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* Typography adjustments */
    h1, h2, h3 {
        text-align: center;
    }
    
    p {
        line-height: 1.5;
    }
    
    /* Form elements on mobile */
    .nav-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 48px; /* Touch target size */
    }
    
    /* Ensure proper spacing */
    .charts-section .section-title {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 5px;
    }
    
    .results-content {
        padding: 10px;
    }
    
    .scale-score-number {
        font-size: 2.5rem;
    }
    
    .scale-score-title {
        font-size: 1.2rem;
    }
    
    .metric-number {
        font-size: 1.5rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 6px 4px;
        font-size: 0.8rem;
    }
    
    .action-button-group .action-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .chart-container {
        padding: 10px;
        min-height: 200px;
    }
    
    .insights-card {
        padding: 15px 10px;
    }
}

/* Call Now Button Pulsing Animation */
.call-now-btn {
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.call-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.call-now-btn:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(138, 199, 64, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(138, 199, 64, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(138, 199, 64, 0);
    }
}

/* Responsive Design Continued */
@media (max-width: 768px) {
    .scale-score-title {
        font-size: 1.8rem;
    }
    
    .call-now-btn {
        animation: pulse 2.5s infinite;
    }
}