/* ===== Healthcare & Pharma Industry Page - Creative Landing Page Style ===== */
/* Following Retail Industry page structure with Healthcare-themed accent colors */

/* ===== HERO SECTION ===== */
.hp-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--bg-color, #ffffff);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hp-hero .container {
    position: relative;
    z-index: 1;
}

.hp-hero-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.hp-hero-image-container {
    flex: 0 0 45%;
    max-width: 500px;
}

.hp-hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.hp-hero-image-container img:hover {
    transform: scale(1.03);
}

.hp-hero-description {
    flex: 1;
    text-align: left;
}

.hp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.08));
    border: 1px solid rgba(215, 148, 46, 0.25);
    color: #d7942e;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

[data-theme="dark"] .hp-hero-tag {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.1));
    border-color: rgba(232, 185, 35, 0.3);
}

.hp-hero-tag i {
    font-size: 14px;
}

.hp-hero-description h1 {
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--text-color, #1a1a1a);
    line-height: 1.15;
    margin-bottom: 22px;
}

.hp-hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary, #555);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

.hp-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hp-btn-primary {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff !important;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(215, 148, 46, 0.4);
    position: relative;
    overflow: hidden;
}

.hp-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hp-btn-primary:hover::before {
    left: 100%;
}

.hp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(215, 148, 46, 0.5);
    color: #fff !important;
}

.hp-btn-outline-new {
    border: 2px solid #d7942e;
    color: #d7942e !important;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    background: transparent;
    transition: all 0.4s ease;
}

.hp-btn-outline-new:hover {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    border-color: #d7942e;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(215, 148, 46, 0.4);
}

[data-theme="dark"] .hp-btn-outline-new {
    border-color: #e8b923;
    color: #e8b923 !important;
}

[data-theme="dark"] .hp-btn-outline-new:hover {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff !important;
}

/* ===== STATS BANNER ===== */
.hp-stats-banner {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.hp-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--pricing-card-bg, #fff);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--card-border, #e0e0e0);
}

[data-theme="dark"] .hp-stats-row {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hp-stat-item {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.hp-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--card-border, #e0e0e0);
}

.hp-stat-item:hover {
    background: rgba(215, 148, 46, 0.05);
}

[data-theme="dark"] .hp-stat-item:hover {
    background: rgba(232, 185, 35, 0.08);
}

.hp-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
    color: #d7942e;
}

[data-theme="dark"] .hp-stat-icon {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.08));
}

.hp-stat-item .hp-stat-number {
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-color, #1a1a1a);
    margin-bottom: 4px;
    display: block;
}

.hp-stat-item .hp-stat-label {
    font-size: 14px;
    color: var(--text-secondary, #666);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION COMMON ===== */
.hp-section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.hp-section-header.light h2 {
    color: #fff;
}

.hp-section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.hp-section-header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-color);
    margin-bottom: 16px;
}

.hp-section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hp-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.08));
    color: #d7942e;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(215, 148, 46, 0.2);
}

[data-theme="dark"] .hp-section-badge {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.1));
    border-color: rgba(232, 185, 35, 0.3);
}

.hp-section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.hp-highlight {
    color: #d7942e;
    position: relative;
}

[data-theme="dark"] .hp-highlight {
    color: #e8b923;
}

.hp-highlight-light {
    color: #e8b923;
}

/* ===== SERVICES SECTION ===== */
.hp-services {
    padding: 100px 0 80px;
    background: var(--bg-color);
}

.hp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hp-service-card {
    background: var(--pricing-card-bg);
    border-radius: 20px;
    padding: 40px 30px 35px;
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hp-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d7942e, #e8b923);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hp-service-card:hover::before {
    transform: scaleX(1);
}

.hp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--card-hover-shadow);
}

.hp-service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d7942e;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

[data-theme="dark"] .hp-service-icon-wrap {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.08));
}

.hp-service-card:hover .hp-service-icon-wrap {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(215, 148, 46, 0.35);
}

.hp-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.hp-service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== SHOWCASE SECTION ===== */
.hp-showcase {
    padding: 100px 0;
    background: var(--pricing-bg);
}

.hp-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hp-showcase-image {
    position: relative;
}

.hp-showcase-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .hp-showcase-image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hp-showcase-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(215, 148, 46, 0.4);
}

.hp-showcase-badge i {
    font-size: 16px;
}

.hp-showcase-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-color);
    margin-bottom: 18px;
}

.hp-showcase-content>p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.hp-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.hp-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hp-check-list li i {
    color: #28a745;
    font-size: 16px;
    min-width: 18px;
}

/* ===== PROCESS SECTION ===== */
.hp-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1222 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hp-process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(215,148,46,0.08)"/></svg>') repeat;
    z-index: 0;
}

.hp-process .container {
    position: relative;
    z-index: 1;
}

.hp-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hp-process-step {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.hp-process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(215, 148, 46, 0.3);
}

.hp-step-number {
    font-family: "Manrope", sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: rgba(232, 185, 35, 0.1);
    line-height: 1;
    margin-bottom: -10px;
}

.hp-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d7942e, #e8b923);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(215, 148, 46, 0.35);
}

.hp-process-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.hp-process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

/* ===== SEGMENTS SECTION ===== */
.hp-segments {
    padding: 100px 0;
    background: var(--bg-color);
}

.hp-segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-segment-card {
    background: var(--pricing-card-bg);
    border-radius: 20px;
    padding: 35px 28px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hp-segment-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #d7942e, #e8b923);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.hp-segment-card:hover::after {
    width: 100%;
}

.hp-segment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--card-hover-shadow);
}

.hp-segment-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.12), rgba(232, 185, 35, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #d7942e;
    transition: all 0.4s ease;
}

[data-theme="dark"] .hp-segment-icon {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.15), rgba(215, 148, 46, 0.08));
}

.hp-segment-card:hover .hp-segment-icon {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(215, 148, 46, 0.35);
}

.hp-segment-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.hp-segment-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.hp-cta {
    padding: 100px 0;
    background: var(--bg-color);
}

.hp-cta-inner {
    background: linear-gradient(135deg, #d7942e 0%, #e8b923 50%, #d7942e 100%);
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hp-cta-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.hp-cta-inner::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.hp-cta-content {
    position: relative;
    z-index: 1;
}

.hp-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hp-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hp-cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hp-btn-cta-primary {
    background: #fff;
    color: #d7942e !important;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #fff;
    transition: all 0.4s ease;
}

.hp-btn-cta-primary:hover {
    background: transparent;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hp-btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff !important;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    background: transparent;
    transition: all 0.4s ease;
}

.hp-btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-3px);
}

.hp-cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hp-cta-trust span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hp-cta-trust i {
    color: #fff;
    margin-right: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hp-hero-description h1 {
        font-size: 44px;
    }

    .hp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hp-hero {
        padding: 120px 0 60px;
    }

    .hp-hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hp-hero-description {
        text-align: center;
    }

    .hp-hero-actions {
        justify-content: center;
    }

    .hp-hero-image-container {
        flex: none;
        max-width: 400px;
        margin: 0 auto;
    }

    .hp-hero-description h1 {
        font-size: 38px;
    }

    .hp-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-stat-item:nth-child(2)::after {
        display: none;
    }

    .hp-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hp-process-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hp-services,
    .hp-showcase,
    .hp-segments,
    .hp-process,
    .hp-cta {
        padding: 70px 0;
    }

    .hp-section-header h2,
    .hp-showcase-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hp-hero {
        padding: 100px 0 50px;
    }

    .hp-hero-description h1 {
        font-size: 32px;
    }

    .hp-hero-image-container {
        max-width: 320px;
    }

    .hp-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .hp-services-grid {
        grid-template-columns: 1fr;
    }

    .hp-segments-grid {
        grid-template-columns: 1fr;
    }

    .hp-section-header h2,
    .hp-showcase-content h2 {
        font-size: 28px;
    }

    .hp-cta-inner {
        padding: 50px 30px;
    }

    .hp-cta-content h2 {
        font-size: 28px;
    }

    .hp-cta-trust {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hp-hero-description h1 {
        font-size: 26px;
    }

    .hp-hero-image-container {
        max-width: 260px;
    }

    .hp-hero-actions {
        flex-direction: column;
    }

    .hp-hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hp-stats-row {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .hp-stat-item:not(:last-child)::after {
        display: none;
    }

    .hp-stat-item {
        padding: 25px 20px;
        border-bottom: 1px solid var(--card-border);
    }

    .hp-stat-item:last-child {
        border-bottom: none;
    }

    .hp-section-header h2,
    .hp-showcase-content h2 {
        font-size: 24px;
    }

    .hp-cta-content h2 {
        font-size: 24px;
    }

    .hp-cta-actions {
        flex-direction: column;
    }

    .hp-cta-actions .btn {
        width: 100%;
    }
}