/* ============================================================
   MEHI HRMS SOFTWARE PAGE - ULTIMATE PREMIUM v1.0
   Full Width | No Stretch | No Crop | Orange/Pink Theme
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
.mehi-hrms-ultimate {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #f8fafc;
    position: relative;
}

.mehi-hrms-ultimate * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================================
   SECTION 1: MEGA HERO - ORANGE/PINK THEME
============================================================ */
.hrms-mega-hero {
    width: 100%;
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #0f0a1a 0%, #1a0f2e 40%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.hrms-mega-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hrms-mega-orb1 {
    position: absolute;
    width: 700px;
    height: 700px;
    top: -350px;
    right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.25), transparent);
    animation: hrmsOrbFloat1 25s ease-in-out infinite;
}

.hrms-mega-orb2 {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent);
    animation: hrmsOrbFloat2 30s ease-in-out infinite reverse;
}

.hrms-mega-orb3 {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.08), transparent);
    animation: hrmsOrbPulse 18s ease-in-out infinite;
}

.hrms-mega-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating Human Icons */
.hrms-mega-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hrms-icon-float {
    position: absolute;
    font-size: 38px;
    opacity: 0.08;
    animation: hrmsIconFloat 22s ease-in-out infinite;
}

.hrms-icon-1 {
    top: 12%;
    left: 6%;
    animation-delay: 0s;
    font-size: 45px;
}

.hrms-icon-2 {
    top: 20%;
    right: 8%;
    animation-delay: 3s;
    font-size: 50px;
}

.hrms-icon-3 {
    bottom: 25%;
    left: 4%;
    animation-delay: 6s;
    font-size: 42px;
}

.hrms-icon-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 9s;
    font-size: 48px;
}

.hrms-icon-5 {
    top: 45%;
    left: 2%;
    animation-delay: 12s;
    font-size: 35px;
}

.hrms-icon-6 {
    top: 55%;
    right: 3%;
    animation-delay: 15s;
    font-size: 40px;
}

@keyframes hrmsIconFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(25px, -35px) rotate(8deg) scale(1.1); }
    66% { transform: translate(-20px, 25px) rotate(-5deg) scale(0.9); }
}

@keyframes hrmsOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes hrmsOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.15); }
    66% { transform: translate(30px, -30px) scale(0.85); }
}

@keyframes hrmsOrbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.7; }
}

.hrms-mega-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* Badge */
.hrms-mega-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hrms-mega-badge svg {
    color: #fb923c;
}

.hrms-mega-badge span {
    color: #e2e8f0;
}

/* Title */
.hrms-mega-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hrms-mega-highlight {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hrms-mega-highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #fb923c, #ec4899);
    opacity: 0.3;
    border-radius: 4px;
}

/* Description */
.hrms-mega-desc {
    font-size: 19px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 750px;
    margin: 0 auto 35px;
}

.hrms-br-desktop {
    display: inline;
}

/* Hero Buttons */
.hrms-mega-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.hrms-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrms-mega-btn.primary {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    color: #ffffff;
    box-shadow: 0 8px 35px rgba(251, 146, 60, 0.3);
}

.hrms-mega-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px rgba(251, 146, 60, 0.4);
}

.hrms-mega-btn.primary svg {
    transition: transform 0.3s ease;
}

.hrms-mega-btn.primary:hover svg {
    transform: translateX(6px);
}

.hrms-mega-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hrms-mega-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* Trust Badges */
.hrms-mega-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hrms-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hrms-trust-number {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-trust-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.hrms-trust-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.06);
}

.hrms-br-mobile {
    display: none;
}

/* ============================================================
   SECTION 2: CORE FEATURES
============================================================ */
.hrms-features-core {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.hrms-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hrms-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.hrms-features-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(251, 146, 60, 0.06);
    color: #fb923c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hrms-features-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hrms-features-highlight {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-features-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

/* Features Grid */
.hrms-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hrms-feature-card {
    padding: 32px 28px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hrms-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fb923c, #ec4899);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hrms-feature-card:hover::before {
    opacity: 1;
}

.hrms-feature-card:hover {
    transform: translateY(-8px);
    border-color: #fb923c;
    box-shadow: 0 20px 60px rgba(251, 146, 60, 0.08);
}

.hrms-feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.hrms-feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.hrms-feature-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hrms-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hrms-feature-list li {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hrms-feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ec4899);
    flex-shrink: 0;
}

/* ============================================================
   SECTION 3: EMPLOYEE JOURNEY
============================================================ */
.hrms-journey {
    width: 100%;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #fdf2f8, #fff7ed);
}

.hrms-journey-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hrms-journey-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrms-journey-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(236, 72, 153, 0.06);
    color: #ec4899;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hrms-journey-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.hrms-journey-highlight {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-journey-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    max-width: 650px;
    margin: 12px auto 0;
}

/* Journey Timeline */
.hrms-journey-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    position: relative;
}

.hrms-journey-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
}

.hrms-journey-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(251, 146, 60, 0.08);
    border-color: #fb923c;
}

.hrms-journey-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ec4899);
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 16px;
}

.hrms-journey-icon {
    font-size: 38px;
    display: block;
    margin-bottom: 12px;
}

.hrms-journey-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.hrms-journey-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.hrms-journey-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.hrms-journey-list li {
    font-size: 13px;
    color: #475569;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.hrms-journey-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #fb923c;
    font-weight: 700;
}

.hrms-journey-line {
    display: none;
}

/* ============================================================
   SECTION 4: BENEFITS
============================================================ */
.hrms-benefits {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.hrms-benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hrms-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrms-benefits-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(251, 146, 60, 0.06);
    color: #fb923c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hrms-benefits-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.hrms-benefits-highlight {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hrms-benefit-card {
    padding: 30px 26px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
}

.hrms-benefit-card:hover {
    transform: translateY(-6px);
    border-color: #ec4899;
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.06);
}

.hrms-benefit-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
}

.hrms-benefit-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.hrms-benefit-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
}

.hrms-benefit-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.hrms-benefit-stats span {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    background: rgba(251, 146, 60, 0.06);
    padding: 4px 14px;
    border-radius: 20px;
}

/* ============================================================
   SECTION 5: COMPARISON TABLE
============================================================ */
.hrms-comparison {
    width: 100%;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #fdf2f8, #fff7ed);
}

.hrms-comparison-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.hrms-comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.hrms-comparison-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(236, 72, 153, 0.06);
    color: #ec4899;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hrms-comparison-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.hrms-comparison-highlight {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-comparison-table-wrapper {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.03);
}

.hrms-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.hrms-comparison-table thead {
    background: linear-gradient(135deg, #fb923c, #ec4899);
}

.hrms-comparison-table th {
    padding: 18px 24px;
    text-align: left;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.hrms-comparison-table th:not(:first-child) {
    text-align: center;
}

.hrms-comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-weight: 500;
}

.hrms-comparison-table tbody tr:hover {
    background: rgba(251, 146, 60, 0.02);
}

.hrms-comparison-table td:not(:first-child) {
    text-align: center;
}

.hrms-check {
    font-size: 22px;
}

.hrms-cross {
    font-size: 22px;
    color: #ef4444;
}

/* ============================================================
   SECTION 6: TESTIMONIALS
============================================================ */
.hrms-testimonials {
    width: 100%;
    padding: 80px 0 90px;
    background: #ffffff;
}

.hrms-testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hrms-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.hrms-testimonials-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(251, 146, 60, 0.06);
    color: #fb923c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hrms-testimonials-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.hrms-testimonials-highlight {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hrms-testimonial-card {
    padding: 32px 28px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.hrms-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(251, 146, 60, 0.06);
    border-color: #fb923c;
}

.hrms-testimonial-stars {
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.hrms-testimonial-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.hrms-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hrms-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ec4899);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.hrms-testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.hrms-testimonial-author span {
    font-size: 13px;
    color: #94a3b8;
}

/* ============================================================
   SECTION 7: HRMS FAQ
============================================================ */
.hrms-faq {
    width: 100%;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #fdf2f8, #fff7ed);
}

.hrms-faq-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.hrms-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.hrms-faq-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(236, 72, 153, 0.06);
    color: #ec4899;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hrms-faq-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.hrms-faq-highlight {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hrms-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hrms-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hrms-faq-item.active {
    border-color: #fb923c;
    box-shadow: 0 8px 30px rgba(251, 146, 60, 0.06);
}

.hrms-faq-btn {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.3s ease;
}

.hrms-faq-btn:hover {
    background: rgba(251, 146, 60, 0.02);
}

.hrms-faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    flex: 1;
}

.hrms-faq-item.active .hrms-faq-question {
    color: #fb923c;
}

.hrms-faq-arrow {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hrms-faq-item.active .hrms-faq-arrow {
    transform: rotate(180deg);
    color: #fb923c;
}

.hrms-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrms-faq-item.active .hrms-faq-answer {
    max-height: 600px;
}

.hrms-faq-content {
    padding: 0 24px 24px 24px;
    color: #475569;
    line-height: 1.8;
}

.hrms-faq-content p {
    font-size: 15px;
    margin-bottom: 12px;
}

.hrms-faq-content p:last-child {
    margin-bottom: 0;
}

.hrms-faq-content strong {
    color: #0f172a;
}

.hrms-faq-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hrms-faq-list li {
    font-size: 14px;
    color: #475569;
    padding: 4px 0;
}

/* ============================================================
   SECTION 8: CTA BANNER
============================================================ */
.hrms-cta {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(135deg, #0f0a1a, #1a0f2e, #2d1b4e);
    position: relative;
    overflow: hidden;
}

.hrms-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.12), transparent);
    pointer-events: none;
}

.hrms-cta::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    left: -150px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06), transparent);
    pointer-events: none;
}

.hrms-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.hrms-cta-icon {
    font-size: 60px;
    margin-bottom: 18px;
    display: block;
}

.hrms-cta-content h2 {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hrms-cta-content p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 34px;
    line-height: 1.7;
}

.hrms-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hrms-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrms-cta-btn.primary {
    background: linear-gradient(135deg, #fb923c, #ec4899);
    color: #ffffff;
    box-shadow: 0 8px 35px rgba(251, 146, 60, 0.3);
}

.hrms-cta-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px rgba(251, 146, 60, 0.4);
}

.hrms-cta-btn.primary svg {
    transition: transform 0.3s ease;
}

.hrms-cta-btn.primary:hover svg {
    transform: translateX(6px);
}

.hrms-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hrms-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE - TABLET
============================================================ */
@media (max-width: 1024px) {
    .hrms-mega-title {
        font-size: 48px;
    }

    .hrms-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hrms-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hrms-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hrms-journey-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE LARGE
============================================================ */
@media (max-width: 768px) {
    .hrms-mega-hero {
        padding: 60px 0 50px;
    }

    .hrms-mega-title {
        font-size: 34px;
    }

    .hrms-mega-desc {
        font-size: 16px;
        padding: 0 10px;
    }

    .hrms-br-desktop {
        display: none;
    }

    .hrms-br-mobile {
        display: block;
    }

    .hrms-mega-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hrms-mega-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hrms-mega-trust {
        gap: 24px;
        flex-wrap: wrap;
        padding-top: 25px;
    }

    .hrms-trust-number {
        font-size: 26px;
    }

    .hrms-trust-divider {
        display: none;
    }

    /* Features */
    .hrms-features-core {
        padding: 60px 0 70px;
    }

    .hrms-features-title {
        font-size: 32px;
    }

    .hrms-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hrms-feature-card {
        padding: 24px 20px;
    }

    /* Journey */
    .hrms-journey {
        padding: 60px 0 70px;
    }

    .hrms-journey-title {
        font-size: 32px;
    }

    .hrms-journey-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hrms-journey-item {
        padding: 24px 20px;
    }

    /* Benefits */
    .hrms-benefits {
        padding: 60px 0 70px;
    }

    .hrms-benefits-title {
        font-size: 32px;
    }

    .hrms-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hrms-benefit-card {
        padding: 24px 20px;
    }

    /* Comparison */
    .hrms-comparison {
        padding: 60px 0 70px;
    }

    .hrms-comparison-title {
        font-size: 32px;
    }

    .hrms-comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hrms-comparison-table {
        font-size: 13px;
        min-width: 600px;
    }

    .hrms-comparison-table th,
    .hrms-comparison-table td {
        padding: 12px 16px;
    }

    /* Testimonials */
    .hrms-testimonials {
        padding: 60px 0 70px;
    }

    .hrms-testimonials-title {
        font-size: 32px;
    }

    .hrms-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hrms-testimonial-card {
        padding: 24px 20px;
    }

    /* FAQ */
    .hrms-faq {
        padding: 60px 0 70px;
    }

    .hrms-faq-title {
        font-size: 32px;
    }

    .hrms-faq-btn {
        padding: 16px 18px;
    }

    .hrms-faq-question {
        font-size: 15px;
    }

    .hrms-faq-content {
        padding: 0 18px 18px 18px;
    }

    /* CTA */
    .hrms-cta {
        padding: 50px 0;
    }

    .hrms-cta-content h2 {
        font-size: 28px;
    }

    .hrms-cta-content p {
        font-size: 15px;
        padding: 0 10px;
    }

    .hrms-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .hrms-cta-btn {
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    /* Icons */
    .hrms-icon-float {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE SMALL
============================================================ */
@media (max-width: 480px) {
    .hrms-mega-title {
        font-size: 28px;
    }

    .hrms-mega-desc {
        font-size: 14px;
    }

    .hrms-mega-trust {
        gap: 16px;
    }

    .hrms-trust-number {
        font-size: 22px;
    }

    .hrms-trust-label {
        font-size: 11px;
    }

    .hrms-features-title {
        font-size: 26px;
    }

    .hrms-journey-title {
        font-size: 26px;
    }

    .hrms-benefits-title {
        font-size: 26px;
    }

    .hrms-comparison-title {
        font-size: 26px;
    }

    .hrms-testimonials-title {
        font-size: 26px;
    }

    .hrms-faq-title {
        font-size: 26px;
    }

    .hrms-cta-content h2 {
        font-size: 24px;
    }

    .hrms-feature-card h3 {
        font-size: 18px;
    }

    .hrms-benefit-card h3 {
        font-size: 16px;
    }

    .hrms-testimonial-text {
        font-size: 14px;
    }
}

/* ============================================================
   ANIMATIONS - FADE IN
============================================================ */
@keyframes hrmsFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hrms-feature-card {
    animation: hrmsFadeUp 0.5s ease forwards;
    opacity: 0;
}

.hrms-feature-card:nth-child(1) { animation-delay: 0.05s; }
.hrms-feature-card:nth-child(2) { animation-delay: 0.10s; }
.hrms-feature-card:nth-child(3) { animation-delay: 0.15s; }
.hrms-feature-card:nth-child(4) { animation-delay: 0.20s; }
.hrms-feature-card:nth-child(5) { animation-delay: 0.25s; }
.hrms-feature-card:nth-child(6) { animation-delay: 0.30s; }

.hrms-benefit-card {
    animation: hrmsFadeUp 0.5s ease forwards;
    opacity: 0;
}

.hrms-benefit-card:nth-child(1) { animation-delay: 0.05s; }
.hrms-benefit-card:nth-child(2) { animation-delay: 0.10s; }
.hrms-benefit-card:nth-child(3) { animation-delay: 0.15s; }
.hrms-benefit-card:nth-child(4) { animation-delay: 0.20s; }
.hrms-benefit-card:nth-child(5) { animation-delay: 0.25s; }
.hrms-benefit-card:nth-child(6) { animation-delay: 0.30s; }

.hrms-testimonial-card {
    animation: hrmsFadeUp 0.5s ease forwards;
    opacity: 0;
}

.hrms-testimonial-card:nth-child(1) { animation-delay: 0.10s; }
.hrms-testimonial-card:nth-child(2) { animation-delay: 0.20s; }
.hrms-testimonial-card:nth-child(3) { animation-delay: 0.30s; }