/* Employers Landing Page Styles */
.emp-page-container {
    width: 100%;
    overflow-x: hidden;
}

/* ========================================
   Section 1: Hero
   ======================================== */
.emp-hero-section {
    background: linear-gradient(135deg, #f8faf8 0%, #eef5ee 50%, #e8f4fd 100%);
    padding: 100px 40px 80px;
}

.emp-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.emp-hero-text {
    max-width: 540px;
}

.emp-hero-badge {
    display: inline-block;
    background-color: rgba(67, 160, 71, 0.1);
    color: #43A047;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.emp-hero-text h1 {
    font-size: 2.8rem;
    color: #1B1B1B;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.emp-hero-subtitle {
    font-size: 1.15rem;
    color: #4A4A4A;
    margin-bottom: 36px;
    line-height: 1.65;
}

.emp-cta-button {
    background-color: #43A047;
    color: white;
    border: none;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.emp-cta-button:hover {
    background-color: #388E3C;
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(67, 160, 71, 0.3);
}

/* Hero Dashboard Mockup */
.emp-hero-mockup {
    position: relative;
}

.emp-dashboard-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 28px;
    border: 1px solid #EEEEEE;
}

.emp-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}

.emp-dashboard-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1B1B1B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emp-dashboard-period {
    font-size: 0.8rem;
    color: #888;
    background: #F5F5F5;
    padding: 4px 12px;
    border-radius: 12px;
}

/* Stats Bar */
.emp-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.emp-stat-item {
    text-align: center;
    padding: 16px 12px;
    background: #F8FAF8;
    border-radius: 10px;
    border: 1px solid #E8F5E8;
}

.emp-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #43A047;
    font-variant-numeric: tabular-nums;
    font-family: 'Montserrat', monospace;
}

.emp-stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

/* Case Rows */
.emp-case-table {
    width: 100%;
}

.emp-case-header {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 0.8fr 0.8fr 1fr;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.3px;
    font-weight: 600;
    border-bottom: 1px solid #F0F0F0;
}

.emp-case-header span {
    text-align: center;
}

.emp-case-header span:first-child {
    text-align: left;
}

.emp-case-row {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 0.8fr 0.8fr 1fr;
    gap: 8px;
    padding: 12px;
    font-size: 0.85rem;
    border-bottom: 1px solid #F8F8F8;
    align-items: center;
    transition: background 0.15s;
}

.emp-case-row:hover {
    background: #FAFFFE;
}

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

.emp-case-procedure {
    color: #1B1B1B;
    font-weight: 500;
}

.emp-case-center {
    color: #4A4A4A;
    font-size: 0.8rem;
    text-align: center;
}

.emp-case-original {
    color: #999;
    text-decoration: line-through;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.emp-case-cost {
    color: #43A047;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.emp-case-savings {
    color: #1B7A24;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.emp-status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.emp-status-completed {
    background: #E8F5E9;
    color: #2E7D32;
}

.emp-status-scheduled {
    background: #E3F2FD;
    color: #1565C0;
}

.emp-status-pending {
    background: #FFF8E1;
    color: #F57F17;
}

/* ========================================
   Section 2: Problem Stats
   ======================================== */
.emp-stats-section {
    background: white;
    padding: 80px 40px;
}

.emp-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.emp-section-header {
    font-size: 2.2rem;
    color: #1B1B1B;
    margin-bottom: 56px;
    font-weight: 700;
    line-height: 1.25;
}

.emp-stat-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.emp-stat-block {
    text-align: center;
    padding: 40px 28px;
    border-radius: 12px;
    border: 1px solid #EEEEEE;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emp-stat-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.emp-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #43A047;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.emp-stat-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1B1B1B;
    margin-bottom: 10px;
}

.emp-stat-desc {
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.55;
}

/* ========================================
   Section 3: How It Works
   ======================================== */
.emp-how-section {
    background: #FAFAFA;
    padding: 80px 40px;
}

.emp-how-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.emp-how-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: flex-start;
    margin-top: 56px;
}

.emp-how-step {
    text-align: center;
    padding: 0 16px;
}

.emp-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #43A047;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.emp-step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1B1B1B;
    margin-bottom: 12px;
}

.emp-step-desc {
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.55;
}

.emp-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 16px;
    color: #CCCCCC;
    font-size: 1.5rem;
}

.emp-step-arrow svg {
    width: 40px;
    height: 40px;
}

/* ========================================
   Section 4: Product UI Showcase
   ======================================== */
.emp-showcase-section {
    background: white;
    padding: 80px 40px;
}

.emp-showcase-container {
    max-width: 1100px;
    margin: 0 auto;
}

.emp-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.emp-feature-block:last-child {
    margin-bottom: 0;
}

.emp-feature-block.reversed {
    direction: rtl;
}

.emp-feature-block.reversed > * {
    direction: ltr;
}

.emp-feature-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B1B1B;
    margin-bottom: 16px;
    line-height: 1.3;
}

.emp-feature-text p {
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.65;
}

/* Dashboard Mockup in Section 4 */
.emp-feature-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    padding: 24px;
    border: 1px solid #EEEEEE;
}

.emp-mockup-toolbar {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0F0F0;
}

.emp-toolbar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.emp-toolbar-dot.red { background: #FF5F57; }
.emp-toolbar-dot.yellow { background: #FEBC2E; }
.emp-toolbar-dot.green { background: #28C840; }

.emp-total-savings {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-radius: 12px;
    margin-bottom: 20px;
}

.emp-total-savings-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 4px;
}

.emp-total-savings-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2E7D32;
    font-variant-numeric: tabular-nums;
}

/* Text Message Mockup */
.emp-phone-mockup {
    background: #F5F5F5;
    border-radius: 24px;
    padding: 20px;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #E0E0E0;
}

.emp-phone-header {
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 16px;
}

.emp-phone-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1B1B1B;
}

.emp-phone-sub {
    font-size: 0.75rem;
    color: #888;
}

.emp-msg-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.emp-msg-incoming {
    background: #E8E8E8;
    color: #1B1B1B;
    border-bottom-left-radius: 6px;
}

.emp-msg-outgoing {
    background: #43A047;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 6px;
}

.emp-msg-time {
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    margin: 16px 0 10px;
}

/* ========================================
   Section 5: Why Expected Health (Photo Cards)
   ======================================== */
.emp-why-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
    padding: 80px 40px;
}

.emp-why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.emp-why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.emp-why-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid #EEEEEE;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.emp-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.emp-why-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f4fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emp-why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.emp-why-card:hover .emp-why-card-image img {
    transform: scale(1.03);
}

.emp-why-card-body {
    padding: 28px 24px 32px;
}

.emp-why-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B1B1B;
    margin-bottom: 10px;
    line-height: 1.3;
}

.emp-why-card-body p {
    font-size: 0.92rem;
    color: #4A4A4A;
    line-height: 1.6;
}

/* ========================================
   Section 6: Credibility Bar
   ======================================== */
.emp-credibility-section {
    background: white;
    padding: 60px 40px;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}

.emp-credibility-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.emp-credibility-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
    font-weight: 500;
}

.emp-credibility-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.emp-credibility-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4A4A4A;
    letter-spacing: 0.02em;
}

.emp-credibility-divider {
    width: 4px;
    height: 4px;
    background: #CCC;
    border-radius: 50%;
}

/* ========================================
   Section 7: Getting Started
   ======================================== */
.emp-start-section {
    background: #FAFAFA;
    padding: 80px 40px;
}

.emp-start-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.emp-start-body {
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 40px;
}

.emp-start-checks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: left;
}

.emp-start-check {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: #1B1B1B;
}

.emp-start-check svg {
    flex-shrink: 0;
}

/* ========================================
   Section 8: FAQ
   ======================================== */
.emp-faq-section {
    background: white;
    padding: 80px 40px;
}

.emp-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.emp-faq-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.emp-faq-item {
    border-bottom: 1px solid #EEEEEE;
}

.emp-faq-item:first-child {
    border-top: 1px solid #EEEEEE;
}

.emp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    gap: 24px;
    user-select: none;
    transition: color 0.2s;
}

.emp-faq-question:hover {
    color: #43A047;
}

.emp-faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: inherit;
    margin: 0;
    line-height: 1.4;
}

.emp-faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #999;
}

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

.emp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.emp-faq-item.active .emp-faq-answer {
    max-height: 300px;
}

.emp-faq-answer-inner {
    padding: 0 0 24px;
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.65;
}

/* ========================================
   Section 9: Contact Form (Inline)
   ======================================== */
.emp-contact-section {
    background: linear-gradient(135deg, #f8faf8 0%, #eef5ee 50%, #e8f4fd 100%);
    padding: 80px 40px;
}

.emp-contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.emp-contact-text h2 {
    font-size: 2.2rem;
    color: #1B1B1B;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.emp-contact-text p {
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.65;
}

.emp-contact-form {
    background: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #EEEEEE;
}

/* Gravity Form styling within inline contact form */
.emp-contact-form .gform_wrapper input[type="text"],
.emp-contact-form .gform_wrapper input[type="email"],
.emp-contact-form .gform_wrapper input[type="tel"],
.emp-contact-form .gform_wrapper textarea,
.emp-contact-form .gform_wrapper select {
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.emp-contact-form .gform_wrapper input[type="text"]:focus,
.emp-contact-form .gform_wrapper input[type="email"]:focus,
.emp-contact-form .gform_wrapper input[type="tel"]:focus,
.emp-contact-form .gform_wrapper textarea:focus,
.emp-contact-form .gform_wrapper select:focus {
    border-color: #43A047;
    box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.1);
    outline: none;
}

.emp-contact-form .gform_wrapper .gform_button,
.emp-contact-form .gform_wrapper input[type="submit"] {
    background-color: #43A047;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.emp-contact-form .gform_wrapper .gform_button:hover,
.emp-contact-form .gform_wrapper input[type="submit"]:hover {
    background-color: #388E3C;
    transform: translateY(-1px);
}


/* ========================================
   Responsive: 1024px
   ======================================== */
@media (max-width: 1024px) {
    .emp-hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .emp-hero-text {
        max-width: 640px;
        margin: 0 auto;
    }

    .emp-hero-mockup {
        max-width: 560px;
        margin: 0 auto;
    }

    .emp-stat-blocks {
        gap: 24px;
    }

    .emp-how-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .emp-step-arrow {
        display: none;
    }

    .emp-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .emp-contact-text {
        text-align: center;
    }

    .emp-contact-form {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .emp-feature-block,
    .emp-feature-block.reversed {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .emp-why-cards {
        gap: 20px;
    }
}

/* ========================================
   Responsive: 768px
   ======================================== */
@media (max-width: 768px) {
    .emp-hero-section {
        padding: 80px 24px 60px;
    }

    .emp-hero-text h1 {
        font-size: 2.2rem;
    }

    .emp-section-header {
        font-size: 1.8rem;
    }

    .emp-stat-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .emp-stat-number {
        font-size: 2.8rem;
    }

    .emp-why-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 56px auto 0;
    }

    .emp-case-header,
    .emp-case-row {
        grid-template-columns: 1.5fr 1fr 0.7fr 0.7fr 0.7fr;
        font-size: 0.75rem;
    }

    .emp-credibility-logos {
        gap: 28px;
    }

    .emp-contact-text h2 {
        font-size: 1.8rem;
    }

    .emp-contact-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .emp-contact-text {
        text-align: center;
    }

    .emp-contact-form {
        max-width: 100%;
    }

    .emp-feature-text h3 {
        font-size: 1.5rem;
    }

    .emp-stats-section,
    .emp-how-section,
    .emp-showcase-section,
    .emp-why-section,
    .emp-start-section,
    .emp-faq-section,
    .emp-contact-section {
        padding: 64px 24px;
    }
}

/* ========================================
   Responsive: 480px
   ======================================== */
@media (max-width: 480px) {
    .emp-hero-section {
        padding: 60px 20px 48px;
    }

    .emp-hero-text h1 {
        font-size: 1.85rem;
    }

    .emp-hero-subtitle {
        font-size: 1rem;
    }

    .emp-section-header {
        font-size: 1.6rem;
    }

    .emp-dashboard-card {
        padding: 16px;
    }

    .emp-stats-bar {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .emp-case-header {
        display: none;
    }

    .emp-case-row {
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
    }

    .emp-case-center {
        grid-column: 1 / -1;
    }

    .emp-stat-number {
        font-size: 2.4rem;
    }

    .emp-stat-block {
        padding: 28px 20px;
    }

    .emp-contact-text h2 {
        font-size: 1.6rem;
    }

    .emp-contact-form {
        padding: 24px;
    }

    .emp-phone-mockup {
        max-width: 100%;
    }

    .emp-credibility-divider {
        display: none;
    }

    .emp-credibility-logos {
        flex-direction: column;
        gap: 16px;
    }

    .emp-stats-section,
    .emp-how-section,
    .emp-showcase-section,
    .emp-why-section,
    .emp-start-section,
    .emp-faq-section,
    .emp-contact-section {
        padding: 52px 20px;
    }
}

/* ========================================
   Responsive: 375px
   ======================================== */
@media (max-width: 375px) {
    .emp-hero-text h1 {
        font-size: 1.65rem;
    }

    .emp-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}
