:root {
    --primary-blue: #1e3a8a;
    --primary-blue-light: #2563eb;
    --primary-blue-lighter: #3b82f6;
    --accent-blue: #0ea5e9;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --bg-white: #ffffff;
    --bg-light-blue: #f0f9ff;
    --border-light: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-white);
    background: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.arrow-icon {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.author-title {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.btn-primary-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 10px 36px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.btn-primary-blue:hover {
    background: linear-gradient(135deg, #0f172a, var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
    color: white;
}

.btn-secondary-white {
    background-color: var(--bg-white);
    color: var(--primary-blue);
    padding: 10px 36px;
    border: 2px solid var(--primary-blue-lighter);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-white:hover {
    background-color: var(--primary-blue-lighter);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: var(--primary-blue-lighter);
}

.button-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.callout-btn {
    background: #ffffff;
    color: #1e3a8a;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.callout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.callout-content {
    position: relative;
    z-index: 1;
}

.callout-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
}

.callout-list li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.7;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.callout-list li::before {
    content: "âœ“";
    color: #0ea5e9;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.callout-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
    color: white;
}

.callout-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -0.5px;
    color: white;
}

.case-study-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
    border-left: 4px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 6px;
}

.case-study-highlight p {
    font-size: 12px;
    color: #92400e;
    margin: 0;
    line-height: 1.5;
}

.category-row {
    background: linear-gradient(90deg, #f0f9ff 0%, #e0f2fe 100%);
}

.category-row i {
    margin-right: 10px;
    font-size: 18px;
    opacity: 0.7;
}

.category-row td {
    padding: 18px 20px !important;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 14px;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ffffff;
    -webkit-appearance: checkbox !important;
}

.checkbox-label {
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    margin: 0;
    line-height: 1.5;
}

.company-info {
    flex: 1;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.company-logo-item {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(30, 58, 138, 0.05);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid var(--border-light);
}

.company-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.company-size {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.comparison-callout {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 16px;
    padding: 50px 40px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.comparison-callout::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.comparison-callout::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.comparison-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 70px;
}

.comparison-legend {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 70px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    flex-wrap: wrap;
}

.comparison-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    min-height: 100vh;
}

.comparison-subtitle {
    font-size: 24px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.12);
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f0f9ff;
}

.comparison-table td {
    padding: 16px 20px;
    vertical-align: middle;
}

.comparison-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.competitor-check,
.primeeap-check {
    text-align: center;
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
}

.competitor-check i,
.primeeap-check i {
    font-size: 22px;
    color: #10b981;
    display: block;
    margin-bottom: 4px;
}

.competitor-column,
.primeeap-column {
    width: 23.33%;
}

.competitor-cross {
    text-align: center;
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
}

.competitor-cross i {
    font-size: 22px;
    color: #ef4444;
    display: block;
    margin-bottom: 4px;
    opacity: 0.6;
}

.competitor-partial {
    text-align: center;
    color: #f59e0b;
    font-weight: 600;
    font-size: 14px;
}

.competitor-partial i {
    font-size: 22px;
    color: #f59e0b;
    display: block;
    margin-bottom: 4px;
}

.consultation-image {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
}

.corporate-heading {
    font-size: 40px;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.corporate-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.corporate-wellness-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.corporate-wellness-section {
    padding: 60px 20px;
    background: #e1f3fe;
}

.cta-btn {
    background: #ffffff;
    color: #1e3a8a;
    padding: 16px 50px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.cta-form-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cta-reassurance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: -0.5px;
    color: var(--bg-white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-value-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.08);
}

.currency {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 700;
}

.eap-toolkit-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.eap-toolkit-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.excellence-content {
    max-width: 1200px;
    margin: 0 auto;
}

.excellence-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.feature-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.15);
    transform: translateY(-8px);
}

.feature-card:hover .feature-icon {
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-card:hover .feature-name {
    color: #1e3a8a;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-column {
    text-align: left;
    width: 30%;
}

.feature-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.35s ease;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item i.fa-times-circle {
    color: #cbd5e1;
    opacity: 0.4;
}

.feature-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.35s ease;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.features-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.features-subtitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #0ea5e9);
    border-radius: 2px;
}

.final-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.final-cta-header {
    text-align: center;
    margin-bottom: 70px;
}

.final-cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    min-height: 100vh;
}

.final-cta-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.final-cta-title {
    font-size: 52px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.12);
    transition: all 0.4s ease;
}

.form-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    transform: translateY(-5px);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #f8fbff;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-message {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-message i {
    font-size: 12px;
    color: #0ea5e9;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.35);
}

.form-submit-btn:hover i {
    transform: translateX(3px);
}

.form-submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.form-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 12px 0;
    letter-spacing: -0.4px;
}

.guarantee-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0ea5e9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #cffafe;
    margin-top: auto;
}

.guarantee-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 20px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.guarantee-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.15);
    transform: translateY(-10px);
}

.guarantee-card:hover .guarantee-icon-wrapper {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.35);
}

.guarantee-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.guarantee-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
    transition: all 0.35s ease;
}

.guarantee-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.guarantees-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.guarantees-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 20px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.guarantees-cta::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.guarantees-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.guarantees-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.guarantees-header {
    text-align: center;
    margin-bottom: 60px;
}

.guarantees-metrics {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 20px;
    padding: 60px 50px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.2);
}

.guarantees-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    min-height: 100vh;
}

.guarantees-subtitle {
    font-size: 24px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.guarantees-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    margin-top: 100px;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image-section {
    flex: 1;
    min-width: 0;
    position: relative;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 20px;
    display: flex;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background-color: #dbeafe;
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-blue);
    letter-spacing: -1px;
}

.highlight-blue {
    color: var(--accent-blue);
}

.hopequre-tech-analytics {
    margin-top: 80px;
    padding: 60px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, #e0f2fe 100%);
    border: 1px solid var(--border-light);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.hopequre-tech-analytics-col {
    padding: 0;
}

.hopequre-tech-analytics-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.hopequre-tech-analytics-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.hopequre-tech-analytics-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #ffffff 0, #dbeafe 40%, #bfdbfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-blue);
    font-size: 22px;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.hopequre-tech-analytics-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
    border-radius: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.hopequre-tech-analytics-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary-blue-lighter);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
}

.hopequre-tech-analytics-item:hover .hopequre-tech-analytics-icon {
    transform: translateY(-2px) scale(1.05);
    background: radial-gradient(circle at 30% 20%, #ffffff 0, var(--primary-blue-lighter) 45%, var(--primary-blue) 100%);
    color: var(--bg-white);
}

.hopequre-tech-analytics-row {
    row-gap: 24px;
}

.hopequre-tech-analytics-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    position: relative;
}

.hopequre-tech-analytics-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.hopequre-tech-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.hopequre-tech-card-body {
    padding: 30px 24px;
    text-align: left;
    padding: 18px 18px 20px;
}

.hopequre-tech-card-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.hopequre-tech-card-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.hopequre-tech-card:hover {
    border-color: var(--primary-blue-lighter);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.15);
    transform: translateY(-8px);
}

.hopequre-tech-card:hover .hopequre-tech-card-title {
    color: var(--primary-blue);
}

.hopequre-tech-card:hover .hopequre-tech-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue-lighter), var(--primary-blue));
    color: var(--bg-white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.hopequre-tech-cards-row {
    row-gap: 10px;
}

.hopequre-tech-cards-row .col-md-6.col-lg-4 {
    margin-bottom: 24px;
}

.hopequre-tech-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-lighter));
    border-radius: 16px;
    padding: 60px 40px;
    margin-top: 80px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
}

.hopequre-tech-cta-btn {
    background: var(--bg-white);
    color: var(--primary-blue);
    font-weight: 200;
    padding: 15px 40px;
    border-radius: 20px;
}

.hopequre-tech-cta-btn:hover {
    background: var(--bg-light-blue);
    color: var(--primary-blue);
}

.hopequre-tech-cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hopequre-tech-cta-title {
    color: var(--bg-white);
}

.hopequre-tech-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary-blue);
    transition: all 0.35s ease;
}

.hopequre-tech-nav {
    border-bottom: 2px solid var(--border-light);
    gap: 10px;
    padding-bottom: 1px;
}

.hopequre-tech-section {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light-blue) 100%);
    padding: 60px 20px;
    text-align: center;
}

.hopequre-tech-subtitle {
    color: var(--text-gray);
}

.hopequre-tech-tab {
    color: var(--bs-gray-800) !important;
    border: none !important;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    transition: all 0.3s ease !important;
}

.hopequre-tech-tab.active {
    color: var(--primary-blue) !important;
    border-bottom-color: var(--primary-blue-lighter) !important;
    background: #cae1fe !important;
}

.hopequre-tech-tab:hover {
    color: var(--primary-blue-light);
    border-bottom-color: var(--accent-blue);
}

.hopequre-tech-tab i {
    color: var(--accent-blue);
}

.hopequre-tech-title {
    color: var(--primary-blue);
    font-size: 32px;
}

.image-bg-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
    border-radius: 16px;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.image-bg-primary {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 16px;
    top: -25px;
    left: -25px;
    z-index: -1;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.implementation-process {
    margin-bottom: 100px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.included-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue-lighter), var(--accent-blue));
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.included-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.industry-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.industry-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.15);
    transform: translateY(-5px);
}

.industry-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.3;
}

.industry-card i {
    font-size: 32px;
    color: #0ea5e9;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.industry-section {
    margin-bottom: 80px;
}

.industry-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.legend-item i {
    font-size: 20px;
}

.legend-item i.fa-check-circle {
    color: #10b981;
}

.legend-item i.fa-minus-circle {
    color: #f59e0b;
}

.legend-item i.fa-times-circle {
    color: #ef4444;
    opacity: 0.6;
}

.metric-box {
    flex: 1;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #cffafe;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 5px;
    align-items: flex-start;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.metric-label {
    font-size: 13px;
    color: var(--bs-gray-600);
    font-weight: 500;
    line-height: 1.6;
    max-width: 180px;
}

.metric-label-xyz {
    font-size: 13px;
    color: #edf4ff;
    font-weight: 600;
    line-height: 1.3;
}

.metric-number {
    font-size: 48px;
    font-weight: 800;
    color: #79d5ff;
    line-height: 1;
}

.metric-row {
    display: flex;
    gap: 10px;
}

.metric-value {
    font-size: 18px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.metrics-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.period {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    margin-left: auto;
}

.price-range {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-amount {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-lighter));
    color: var(--bg-white);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.pricing-best-for {
    font-size: 13px;
    color: var(--text-gray);
    background: var(--bg-light-blue);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-best-for strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.pricing-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.3px;
}

.pricing-btn-large {
    padding: 16px 48px;
    font-size: 16px;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-lighter));
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    width: 100%;
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.pricing-btn-secondary {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: 2px solid var(--border-light);
    width: 100%;
}

.pricing-btn-secondary:hover {
    border-color: var(--primary-blue-lighter);
    background: var(--bg-light-blue);
    transform: translateY(-2px);
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 50px 35px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    display: flex;
    flex-direction: column;
}

.pricing-card-popular {
    grid-column: auto;
    border-width: 2px;
    border-color: var(--accent-blue);
    transform: scale(1.02);
}

.pricing-card-popular:hover {
    transform: translateY(-12px) scale(1.02);
}

.pricing-card:hover {
    border-color: var(--primary-blue-lighter);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.18);
    transform: translateY(-12px);
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-lighter) 100%);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.pricing-cta .pricing-btn-large {
    background: var(--bg-white);
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-cta .pricing-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.pricing-cta::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.pricing-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.pricing-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.pricing-description-card {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-header-card {
    margin-bottom: 25px;
}

.pricing-included {
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, #e0f2fe 100%);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 60px 50px;
    margin-bottom: 60px;
}

.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    margin-bottom: 5px;
}

.pricing-plan-subtitle {
    font-size: 14px;
    color: var(--accent-blue);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.pricing-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pricing-subtitle {
    font-size: 24px;
    color: var(--primary-blue-light);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.process-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 70px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.program-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e3a8a, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.12);
    transform: translateY(-8px);
}

.program-card:hover .program-icon {
    transform: scale(1.15) rotate(5deg);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover h3 {
    color: #1e3a8a;
}

.program-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.35s ease;
}

.program-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    flex-grow: 1;
}

.program-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.35s ease;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.provider-badge {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.provider-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.provider-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.provider-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

.quick-benefits {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #cffafe;
    border-radius: 12px;
    padding: 25px;
}

.quick-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-benefits-list i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    flex-shrink: 0;
}

.quick-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #0f172a;
    font-weight: 500;
}

.quick-benefits-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fbff;
    border-radius: 8px;
}

.reassurance-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 5px 0;
}

.reassurance-content p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.reassurance-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(14, 165, 233, 0.2);
}

.reassurance-icon i {
    font-size: 24px;
    color: #ffffff;
}

.reassurance-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.reassurance-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.1);
    transform: translateY(-3px);
}

.stat-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 130px;
    font-weight: 500;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-size: 48px;
    color: #0ea5e9;
    line-height: 1;
}

.stat-number-xyz {
    font-size: 43px;
    font-weight: 800;
    color: #ffffff;
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.stats-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25);
}

.stats-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 2px solid rgba(30, 58, 138, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.stats-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.summary-row {
    background: linear-gradient(90deg, #f0f9ff 0%, #e0f2fe 100%);
    font-weight: 700;
    border-top: 3px solid #1e3a8a;
    border-bottom: 3px solid #1e3a8a;
}

.summary-row .competitor-check,
.summary-row .primeeap-check {
    font-size: 16px;
    color: #1e3a8a;
}

.support-excellence {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 70px 50px;
    margin-bottom: 70px;
}

.support-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.support-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.3;
}

.support-feature i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.support-feature p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.table-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-header th {
    padding: 30px 20px;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid #0ea5e9;
}

.testimonial-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 14px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.15);
    transform: translateY(-12px);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.testimonial-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    flex-grow: 1;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 10px;
    margin-bottom: 100px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    min-height: 100vh;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 500;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.timeline-content {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.08);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    min-height: 250px;
}

.timeline-item:hover .timeline-content {
    border-color: #3b82f6;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    transform: translateY(-5px);
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-list li {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.timeline-list li::before {
    content: "\2713";
    color: #10b981;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
    z-index: 2;
}

.timeline-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.timeline-phase {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.toolkit-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.toolkit-features {
    width: 100%;
}

.toolkit-header {
    text-align: center;
    margin-bottom: 70px;
}

.toolkit-subtitle {
    font-size: 22px;
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.toolkit-title {
    font-size: 44px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 10px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: #e0f2fe;
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 20px;
    color: #0ea5e9;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
    margin-bottom: 40px;
}

.trust-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #1e3a8a;
    line-height: 1.4;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.3;
}

.trust-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.trust-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}


.trust-section.xyz-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(30, 58, 138, 0.1);
}

.trust-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 12px;
}

.trust-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

.value-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.value-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.value-icon i {
    font-size: 24px;
    color: #ffffff;
}

.value-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.value-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 40px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.wellness-advantage-box {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    transition: all 0.35s ease;
}

.wellness-advantage-box:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.12);
}

.wellness-advantage-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.wellness-advantage-text strong {
    color: #1e3a8a;
    font-weight: 700;
}

.wellness-advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.wellness-divider {
    border-top: 2px solid #e2e8f0;
    padding-top: 50px;
    margin-bottom: 50px;
}

.wellness-programs-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}









@media (max-width: 1200px) {
    .comparison-section {
        padding: 80px 15px;
    }

    .comparison-subtitle {
        font-size: 20px;
    }

    .comparison-table td {
        padding: 14px 15px;
        font-size: 13px;
    }

    .comparison-title {
        font-size: 40px;
    }

    .excellence-title {
        font-size: 28px;
    }

    .feature-name {
        font-size: 13px;
    }

    .guarantee-card {
        padding: 35px 28px;
    }

    .guarantees-grid {
        gap: 25px;
    }

    .guarantees-metrics {
        padding: 60px 40px;
    }

    .guarantees-title {
        font-size: 40px;
    }

    .included-title {
        font-size: 24px;
    }

    .metrics-title {
        font-size: 28px;
    }

    .pricing-card {
        padding: 40px 28px;
    }

    .pricing-grid {
        gap: 30px;
    }

    .pricing-included {
        padding: 50px 35px;
    }

    .pricing-section {
        padding: 80px 15px;
    }

    .pricing-subtitle {
        font-size: 20px;
    }

    .pricing-title {
        font-size: 40px;
    }

    .process-title {
        font-size: 28px;
    }

    .provider-name {
        font-size: 14px;
    }

    .provider-tagline {
        font-size: 11px;
    }

    .table-header th {
        padding: 25px 15px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .callout-text {
        font-size: 14px;
    }

    .callout-title {
        font-size: 24px;
    }

    .comparison-callout {
        padding: 40px 30px;
    }

    .comparison-legend {
        gap: 30px;
    }

    .competitor-column,
    .primeeap-column {
        width: 20%;
    }

    .corporate-heading {
        font-size: 32px;
    }

    .corporate-subtitle {
        font-size: 16px;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-reassurance {
        grid-template-columns: repeat(2, 1fr);
    }

    .eap-toolkit-section {
        padding: 60px 20px;
    }

    .feature-card {
        padding: 25px 18px;
    }

    .feature-column {
        width: 40%;
    }

    .feature-desc {
        font-size: 12px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .feature-name {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .final-cta-title {
        font-size: 38px;
    }

    .guarantee-card {
        padding: 30px 24px;
    }

    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .guarantees-section {
        padding: 60px 12px;
    }

    .guarantees-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-row {
        flex-direction: column;
        gap: 40px;
    }

    .hero-section {
        padding: 45px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 40px;
    }

    .hopequre-tech-analytics {
        margin-top: 60px;
        padding: 45px 28px;
    }

    .hopequre-tech-analytics-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .image-wrapper {
        max-width: 100%;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .program-card {
        padding: 28px 22px;
    }

    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stats-container {
        gap: 40px;
        padding-top: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-features {
        gap: 30px;
    }

    .table-header th {
        padding: 20px 12px;
        font-size: 12px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .timeline {
        gap: 30px;
    }

    .toolkit-subtitle {
        font-size: 20px;
    }

    .toolkit-title {
        font-size: 36px;
    }

    .trust-reasons {
        grid-template-columns: repeat(2, 1fr);
    }

    .wellness-advantage-box {
        padding: 40px 30px;
    }

    .wellness-programs-title {
        font-size: 24px;
    }
}

@media (max-width: 991.98px) {
    .hopequre-tech-cards-row {
        row-gap: 20px;
        column-gap: 20px;
    }

    .hopequre-tech-cards-row .col-md-6.col-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .btn-primary-blue,
    .btn-secondary-white {
        width: 100%;
        justify-content: center;
        padding: 13px 28px;
        font-size: 15px;
    }

    .button-group {
        flex-direction: column;
        margin-bottom: 30px;
        gap: 12px;
    }

    .callout-btn {
        padding: 12px 32px;
        font-size: 13px;
    }

    .callout-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .callout-text {
        font-size: 13px;
    }

    .callout-title {
        font-size: 20px;
    }

    .company-logos {
        justify-content: center;
    }

    .comparison-callout {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .comparison-description {
        font-size: 14px;
    }

    .comparison-header {
        margin-bottom: 50px;
    }

    .comparison-legend {
        gap: 20px;
        flex-direction: column;
        padding: 20px;
        align-items: center;
    }

    .comparison-section {
        padding: 60px 12px;
    }

    .comparison-subtitle {
        font-size: 18px;
    }

    .comparison-table-wrapper {
        margin-bottom: 50px;
    }

    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .comparison-title {
        font-size: 32px;
    }

    .corporate-heading {
        font-size: 28px;
    }

    .corporate-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .corporate-wellness-section {
        padding: 50px 15px;
    }

    .cta-reassurance {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-title {
        font-size: 24px;
    }

    .eap-toolkit-section {
        padding: 50px 15px;
    }

    .feature-card {
        padding: 20px 14px;
    }

    .feature-desc {
        font-size: 11px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }

    .feature-item {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .feature-name {
        font-size: 13px;
        margin-bottom: 6px;
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }

    .features-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .final-cta-section {
        padding: 60px 12px;
    }

    .final-cta-title {
        font-size: 32px;
    }

    .form-card {
        padding: 28px;
    }

    .guarantees-cta {
        padding: 40px 20px;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guarantees-section {
        padding: 50px 12px;
    }

    .guarantees-title {
        font-size: 32px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-section {
        padding: 35px 15px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hopequre-tech-analytics {
        padding: 35px 20px;
    }

    .hopequre-tech-analytics-item {
        padding: 18px 16px;
        gap: 14px;
        flex-direction: row;
    }

    .hopequre-tech-analytics-title {
        font-size: 24px;
    }

    .image-wrapper {
        max-width: 100%;
    }

    .included-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .included-item {
        font-size: 13px;
        gap: 12px;
    }

    .included-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legend-item {
        gap: 8px;
        font-size: 13px;
    }

    .price-range {
        font-size: 36px;
    }

    .pricing-card {
        padding: 35px 24px;
    }

    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-card-popular:hover {
        transform: translateY(-12px);
    }

    .pricing-cta {
        padding: 40px 24px;
    }

    .pricing-description {
        font-size: 14px;
    }

    .pricing-features {
        margin-bottom: 25px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .pricing-header {
        margin-bottom: 50px;
    }

    .pricing-included {
        padding: 40px 24px;
    }

    .pricing-plan-name {
        font-size: 20px;
    }

    .pricing-section {
        padding: 60px 12px;
    }

    .pricing-subtitle {
        font-size: 18px;
    }

    .pricing-title {
        font-size: 32px;
    }

    .program-card {
        padding: 25px 20px;
    }

    .program-card h3 {
        font-size: 16px;
    }

    .program-description {
        font-size: 13px;
    }

    .program-icon {
        font-size: 42px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .provider-badge,
    .provider-name {
        font-size: 12px;
    }

    .provider-tagline {
        font-size: 10px;
    }

    .stat-item {
        flex: none;
    }

    .stat-label {
        max-width: 100%;
    }

    .stat-number {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
        padding-top: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .table-header th {
        padding: 18px 10px;
        font-size: 11px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .toolkit-description {
        font-size: 15px;
    }

    .toolkit-header {
        margin-bottom: 50px;
    }

    .toolkit-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .toolkit-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .trust-reasons {
        grid-template-columns: 1fr;
    }

    .wellness-advantage-box {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .wellness-programs-title {
        font-size: 22px;
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .hopequre-tech-analytics {
        margin-top: 45px;
        padding: 28px 16px;
    }

    .hopequre-tech-analytics-content h5 {
        font-size: 15px;
    }

    .hopequre-tech-analytics-content p {
        font-size: 13px;
    }

    .hopequre-tech-analytics-icon {
        margin-bottom: 4px;
    }

    .hopequre-tech-analytics-item {
        flex-direction: column;
        text-align: left;
    }

    .hopequre-tech-analytics-title {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .hopequre-tech-cards-row {
        row-gap: 16px;
    }

    .hopequre-tech-cards-row .col-md-6.col-lg-4 {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {

    .btn-primary-blue,
    .btn-secondary-white {
        padding: 11px 22px;
        font-size: 14px;
    }

    .button-group {
        gap: 10px;
        margin-bottom: 20px;
    }

    .callout-btn {
        padding: 11px 24px;
        font-size: 12px;
    }

    .callout-list {
        margin-bottom: 20px;
    }

    .callout-list li {
        font-size: 11px;
        margin-bottom: 8px;
        gap: 8px;
    }

    .callout-list li::before {
        font-size: 14px;
    }

    .callout-text {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .callout-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .company-logo-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .comparison-callout {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .comparison-description {
        font-size: 12px;
    }

    .comparison-header {
        margin-bottom: 35px;
    }

    .comparison-legend {
        gap: 15px;
        padding: 15px;
        margin-bottom: 35px;
    }

    .comparison-section {
        padding: 40px 10px;
    }

    .comparison-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .comparison-table {
        font-size: 10px;
    }

    .comparison-table-wrapper {
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .comparison-table td {
        padding: 10px 8px;
        font-size: 11px;
    }

    .comparison-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .competitor-check i,
    .primeeap-check i,
    .competitor-partial i,
    .competitor-cross i {
        font-size: 18px;
    }

    .competitor-column {
        display: none;
    }

    .corporate-heading {
        font-size: 24px;
    }

    .corporate-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .corporate-wellness-section {
        padding: 35px 12px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 13px;
    }

    .cta-text {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .eap-toolkit-section {
        padding: 40px 12px;
    }

    .feature-card {
        padding: 18px 12px;
    }

    .feature-column {
        width: 65%;
    }

    .feature-desc {
        font-size: 10px;
        line-height: 1.4;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }

    .feature-item {
        font-size: 12px;
        margin-bottom: 10px;
        gap: 10px;
    }

    .feature-name {
        font-size: 12px;
        margin-bottom: 5px;
        font-size: 11px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }

    .features-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .final-cta-section {
        padding: 50px 10px;
    }

    .final-cta-subtitle {
        font-size: 13px;
    }

    .final-cta-title {
        font-size: 26px;
    }

    .form-card {
        padding: 20px;
    }

    .form-title {
        font-size: 16px;
    }

    .guarantee-card {
        padding: 20px 16px;
    }

    .guarantees-cta {
        padding: 30px 12px;
    }

    .guarantees-grid {
        gap: 15px;
        margin-bottom: 40px;
    }

    .guarantees-section {
        padding: 40px 10px;
    }

    .guarantees-title {
        font-size: 26px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-section {
        padding: 25px 12px;
        min-height: auto;
    }

    .hero-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .image-bg-accent,
    .image-bg-primary {
        top: -12px;
        left: -12px;
        bottom: -12px;
        right: -12px;
    }

    .included-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .industry-card {
        padding: 20px 16px;
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .legend-item {
        gap: 6px;
        font-size: 12px;
    }

    .legend-item i {
        font-size: 16px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .price-range {
        font-size: 30px;
    }

    .pricing-best-for {
        font-size: 12px;
        padding: 12px;
        margin-bottom: 20px;
    }

    .pricing-btn {
        padding: 12px 24px;
        font-size: 13px;
        border-radius: 8px;
    }

    .pricing-card {
        padding: 25px 16px;
    }

    .pricing-cta {
        padding: 30px 16px;
    }

    .pricing-description-card {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .pricing-features {
        margin-bottom: 20px;
    }

    .pricing-grid {
        gap: 18px;
        margin-bottom: 40px;
    }

    .pricing-header {
        margin-bottom: 35px;
    }

    .pricing-included {
        padding: 30px 16px;
        margin-bottom: 35px;
    }

    .pricing-plan-name {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .pricing-section {
        padding: 40px 10px;
    }

    .pricing-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .pricing-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .primeeap-column {
        width: 35%;
    }

    .program-card {
        padding: 20px 16px;
    }

    .program-card h3 {
        font-size: 15px;
    }

    .program-description {
        font-size: 12px;
    }

    .program-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .programs-grid {
        gap: 15px;
        margin-bottom: 30px;
    }

    .provider-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .provider-header {
        gap: 4px;
    }

    .provider-name {
        font-size: 11px;
    }

    .provider-tagline {
        font-size: 9px;
    }

    .quick-benefits {
        padding: 15px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-number {
        font-size: 28px;
        font-size: 32px;
    }

    .stats-banner {
        padding: 30px 15px;
    }

    .stats-container {
        gap: 18px;
        padding-top: 18px;
        margin-top: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .support-features {
        grid-template-columns: 1fr;
    }

    .table-header th {
        padding: 14px 8px;
        font-size: 10px;
        border-bottom: 2px solid #0ea5e9;
    }

    .table-header th:last-child {
        display: none;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonials-grid {
        gap: 15px;
    }

    .testimonials-section {
        padding: 50px 10px;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .timeline-item {
        padding-left: 75px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .toolkit-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .toolkit-header {
        margin-bottom: 40px;
    }

    .toolkit-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .toolkit-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .trust-section {
        padding: 30px 15px;
    }

    .trust-text {
        font-size: 13px;
    }

    .value-title {
        font-size: 18px;
    }

    .wellness-advantage-box {
        padding: 25px 15px;
        margin-top: 30px;
    }

    .wellness-advantage-text {
        font-size: 13px;
    }

    .wellness-advantage-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .wellness-programs-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
}