/* iHRM Corporate Design System v2.1 — aligned with testez.ihrm.ro */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --ihrm-primary: #1e3a5f;
    --ihrm-primary-light: #2d4f7c;
    --ihrm-accent: #2563eb;
    --ihrm-accent-soft: rgba(37, 99, 235, 0.1);
    --ihrm-success: #059669;
    --ihrm-warning: #d97706;
    --ihrm-danger: #dc2626;
    --ihrm-surface: #f8fafc;
    --ihrm-surface-elevated: #ffffff;
    --ihrm-border: rgba(30, 58, 95, 0.1);
    --ihrm-text: #1e293b;
    --ihrm-text-muted: #64748b;
    --primary-color: var(--ihrm-primary);
    --secondary-color: var(--ihrm-primary-light);
    --accent-color: var(--ihrm-accent);
    --accent-light: #60a5fa;
    --primary-color-rgb: 30, 58, 95;
    --secondary-color-rgb: 45, 79, 124;
    --text-dark: var(--ihrm-text);
    --text-muted: var(--ihrm-text-muted);
    --bg-light: var(--ihrm-surface);
    --bg-section: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover { color: var(--accent-color); }

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 24px;
}

.top-bar-item i { color: var(--accent-color); font-size: 12px; }

.top-bar-cta {
    background: rgba(201,162,39,0.2);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-cta:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
}

/* Navbar */
.navbar-default {
    background: rgba(255,255,255,0.98);
    border: none;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    min-height: 72px;
    margin-bottom: 0;
    backdrop-filter: blur(12px);
}

.navbar-default.scrolled {
    box-shadow: var(--shadow-md);
    min-height: 64px;
}

.navbar-brand {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color) !important;
    padding: 12px 15px;
    height: 72px;
    line-height: 40px;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    position: relative;
}

.navbar-brand span.i {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 2px;
}

.navbar-brand span.hrm {
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.navbar-brand::after {
    content: '®';
    position: absolute;
    top: 14px;
    right: 0;
    font-size: 10px;
    font-weight: 400;
    color: var(--primary-color);
}

.navbar-nav > li > a {
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    line-height: 40px;
    padding: 16px 14px !important;
    color: var(--text-dark) !important;
}

.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav > li > a:hover::after,
.navbar-nav > li.active > a::after { width: 70%; }

.navbar-nav > li > a:hover { color: var(--secondary-color) !important; }

.nav-cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border-radius: var(--radius-sm) !important;
    padding: 8px 18px !important;
    margin: 12px 0 12px 10px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.nav-cta-btn::after { display: none !important; }

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2d5c 50%, var(--secondary-color) 100%);
    position: relative;
    padding: 100px 0 80px;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201,162,39,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30,86,160,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i { color: var(--accent-color); }

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    animation: fadeInDown 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    opacity: 0.9;
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-hero-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,162,39,0.35);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
    color: rgba(255,255,255,0.9);
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-item i {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item span {
    font-size: 13px;
    opacity: 0.75;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light { background: var(--bg-light); }

.content-section.bg-gradient {
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.section-header { margin-bottom: 60px; }

.section-badge {
    display: inline-block;
    background: rgba(var(--primary-color-rgb), 0.08);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Solution Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.solution-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.solution-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb),0.08), rgba(var(--secondary-color-rgb),0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon { transform: scale(1.05); }

.solution-icon i {
    font-size: 28px;
    color: var(--secondary-color);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.solution-card > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.solution-features li:hover {
    background: rgba(var(--primary-color-rgb), 0.06);
    transform: translateX(4px);
}

.solution-features li i {
    width: 28px;
    height: 28px;
    background: rgba(var(--secondary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 12px;
    flex-shrink: 0;
}

.feature-content strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.feature-content span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: block;
    transition: var(--transition);
}

.benefit-card:hover i { color: var(--accent-color); transform: scale(1.1); }

.benefit-card h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.benefit-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.benefit-card.highlight i,
.benefit-card.highlight h4 { color: white; }

.benefit-card.highlight p { color: rgba(255,255,255,0.85); }

/* Process Steps */
.process-section { padding: 80px 0; background: white; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color), var(--accent-color), var(--border-color));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 72px;
    height: 72px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-step:hover .process-step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 15px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,162,39,0.1) 0%, transparent 60%);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active { display: block; }

.testimonial-quote {
    font-size: 48px;
    color: var(--accent-color);
    opacity: 0.4;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.testimonial-author-info h5 {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author-info span {
    font-size: 13px;
    opacity: 0.7;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Trust / Partners */
.trust-section {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logo-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: var(--transition);
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
}

.trust-logo-item:hover {
    opacity: 1;
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-banner {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20V20zm-20 0h20v20H0V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Solution Tabs */
.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.solution-tab {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.solution-tab:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.solution-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.solution-tab-content { display: none; animation: fadeIn 0.4s ease; }
.solution-tab-content.active { display: block; }

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.features-list { display: flex; flex-direction: column; gap: 16px; }

.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
    transform: translateX(4px);
}

.feature i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 2px;
}

.feature h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact */
.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover,
.contact-form-card:hover { box-shadow: var(--shadow-md); }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb),0.08), rgba(var(--secondary-color-rgb),0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-info-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
}

.form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb), 0.12);
}

.form-group label {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.modern-footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.85);
    position: relative;
    margin-top: 0;
}

.footer-content { padding: 72px 0 48px; }

.footer-title {
    color: white;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.footer-heading {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a i {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a:hover i {
    background: var(--accent-color);
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 14px;
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.copyright { font-size: 13px; margin: 0; color: rgba(255,255,255,0.6); }

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.legal-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.legal-links a:hover { color: white; }

/* Floating Action */
.floating-action {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: none;
}

.floating-action .btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.floating-action .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11,29,58,0.3);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 16px 0;
    z-index: 9999;
    transition: bottom 0.5s ease;
    border-top: 3px solid var(--accent-color);
}

.cookie-consent.active { bottom: 0; }

.cookie-text { font-size: 14px; color: var(--text-muted); margin: 0; }

.cookie-buttons { display: flex; gap: 10px; justify-content: flex-end; }

.cookie-btn {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.reject {
    background: var(--bg-light);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-btn:hover { transform: translateY(-2px); }

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Nav */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 20px;
    }

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

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

    .process-steps::before { display: none; }

    .solutions-grid { grid-template-columns: 1fr; }

    .navbar-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        float: none;
    }

    .navbar-collapse {
        border: none;
        position: fixed;
        top: 72px;
        right: 0;
        width: 280px;
        height: calc(100vh - 72px);
        background: white;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .navbar-collapse.in { transform: translateX(0); }

    .navbar-nav { margin: 0; float: none; }

    .navbar-nav > li { float: none; width: 100%; }

    .navbar-nav > li > a {
        padding: 14px 20px !important;
        border-bottom: 1px solid var(--border-color);
    }

    .legal-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 12px;
    }

    .top-bar { display: none; }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
}

/* Case Studies */
.trust-bar {
    background: rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 48px;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.trust-item i { color: var(--accent-color); }

.case-study-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.case-study-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.case-study-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.case-study-image img { width: 100%; height: auto; }

.industry-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.results-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    gap: 16px;
}

.result-item { text-align: center; flex: 1; }

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.result-label { font-size: 13px; color: var(--text-muted); }

.transformation-metrics {
    margin-top: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.before-after h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

.before-after ul { list-style: none; padding: 0; margin: 0; }

.before-after li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.before-after li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.testimonial-section {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
    margin: 32px 0;
}

.executive-testimonial { max-width: 700px; margin: 0 auto; text-align: center; }

.quote-mark { font-size: 40px; color: var(--accent-color); opacity: 0.3; margin-bottom: 16px; }

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--primary-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.author-info h4 { margin: 0; color: var(--primary-color); font-weight: 700; }
.author-info span { color: var(--text-muted); font-size: 14px; }

/* Auth Pages */
.auth-page {
    min-height: calc(100vh - 72px);
    background: var(--bg-light);
}

.auth-split {
    display: flex;
    min-height: calc(100vh - 72px);
}

.auth-branding {
    flex: 0 0 42%;
    background: linear-gradient(145deg, var(--primary-color) 0%, #0f2d5c 45%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 48px 40px;
}

.auth-branding-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201,162,39,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 100%);
    pointer-events: none;
}

.auth-branding-inner {
    position: relative;
    z-index: 1;
    max-width: 480px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    font-size: 36px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 32px;
    color: white;
}

.auth-logo .i {
    font-style: italic;
    font-weight: 300;
    color: var(--accent-light);
}

.auth-logo .hrm {
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-branding-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
}

.auth-branding-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.auth-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

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

.auth-benefit-item:hover {
    transform: translateX(6px);
    color: white;
}

.auth-benefit-icon {
    width: 36px;
    height: 36px;
    background: rgba(201,162,39,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.auth-benefit-item:hover .auth-benefit-icon {
    background: var(--accent-color);
    color: var(--primary-color);
}

.auth-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.auth-stat {
    flex: 1;
    text-align: center;
}

.auth-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.auth-stat-suffix {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-light);
}

.auth-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.auth-badge i { color: var(--accent-color); font-size: 11px; }

.auth-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px 36px;
    border: 1px solid var(--border-color);
}

.auth-tabs {
    display: flex;
    list-style: none;
    padding: 4px;
    margin: 0 0 32px;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    gap: 4px;
}

.auth-tabs li { flex: 1; }

.auth-tabs a {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.auth-tabs li.active a,
.auth-tabs a:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.auth-form-header {
    margin-bottom: 28px;
}

.auth-form-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.auth-form-header p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.auth-input-wrapper {
    position: relative;
}

.auth-input-wrapper > i.fa {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    z-index: 2;
    transition: var(--transition);
}

.auth-input-wrapper .form-control {
    height: 48px;
    padding: 10px 44px 10px 42px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    box-shadow: none;
}

.auth-input-wrapper .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb), 0.12);
}

.auth-input-wrapper .form-control:focus + .auth-toggle-password,
.auth-input-wrapper .form-control:focus ~ i.fa:first-of-type {
    color: var(--secondary-color);
}

.auth-form .has-error .form-control {
    border-color: #dc3545;
}

.auth-form .help-block {
    font-size: 12px;
    margin-top: 6px;
    color: #dc3545;
}

.auth-toggle-password {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px 12px;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.auth-toggle-password:hover { color: var(--primary-color); }

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.auth-checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
}

.auth-submit-btn {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.auth-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-color-rgb), 0.3);
    color: white;
}

.auth-submit-btn:disabled { opacity: 0.85; cursor: wait; }

.auth-submit-btn.is-loading .btn-text { opacity: 0.7; }

.auth-submit-btn.is-loading i { animation: auth-spin 0.8s linear infinite; }

@keyframes auth-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.auth-links {
    margin-top: 24px;
    text-align: center;
}

.auth-links a {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.auth-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.auth-platform-link:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(var(--secondary-color-rgb), 0.04);
    text-decoration: none;
}

.password-strength {
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.password-strength.is-visible {
    opacity: 1;
    max-height: 40px;
}

.password-strength-track {
    height: 4px;
    background: var(--bg-section);
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.4s ease, background 0.3s ease;
}

.password-strength-bar.weak { background: #ef4444; }
.password-strength-bar.fair { background: #f59e0b; }
.password-strength-bar.good { background: #3b82f6; }
.password-strength-bar.strong { background: #22c55e; }

.password-strength-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.auth-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.auth-branding .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.auth-branding .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .auth-split { flex-direction: column; }

    .auth-branding {
        flex: none;
        padding: 36px 24px;
    }

    .auth-branding-title { font-size: 22px; }

    .auth-stats { gap: 16px; }

    .auth-stat-number { font-size: 22px; }

    .auth-benefits { margin-bottom: 24px; }

    .auth-form-side { padding: 32px 20px; }

    .auth-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .auth-stats { flex-direction: column; gap: 12px; }

    .auth-trust-badges { justify-content: center; }
}

/* Ecosystem footer links (aligned with testez.ihrm.ro) */
.ihrm-ecosystem-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.ihrm-ecosystem-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.ihrm-ecosystem-link:hover {
    color: var(--ihrm-accent);
    text-decoration: none;
}

.ihrm-ecosystem-link i {
    margin-right: 0.35rem;
}

/* ── Website v2 — Bootstrap 5 + ihrm-marketing layout ─────────── */
body.ihrm-website {
    background: var(--ihrm-surface);
    color: var(--ihrm-text);
    padding-top: 72px;
}

body.ihrm-website main {
    min-height: 50vh;
}

/* Dark navbar dropdown (BS5) */
.ihrm-navbar .dropdown-menu {
    border: 1px solid var(--ihrm-border);
    border-radius: var(--ihrm-radius-lg);
    box-shadow: var(--ihrm-shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.ihrm-navbar .dropdown-item {
    border-radius: var(--ihrm-radius);
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    color: var(--ihrm-text);
}

.ihrm-navbar .dropdown-item:hover {
    background: var(--ihrm-accent-soft);
    color: var(--ihrm-primary);
}

.ihrm-navbar .nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

/* Hero — aligned with despre.ihrm.ro */
body.ihrm-website .hero-section,
body.ihrm-website #hero {
    background: linear-gradient(135deg, var(--ihrm-primary) 0%, var(--ihrm-primary-light) 55%, #1d4ed8 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

body.ihrm-website .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.25), transparent 50%);
    pointer-events: none;
}

body.ihrm-website .hero-section::after {
    display: none;
}

body.ihrm-website .hero-content,
body.ihrm-website .hero-section .container {
    position: relative;
    z-index: 1;
}

body.ihrm-website .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

body.ihrm-website .hero-badge i {
    color: #93c5fd;
}

body.ihrm-website .hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: none;
}

body.ihrm-website .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

body.ihrm-website .btn-hero {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--ihrm-radius);
}

body.ihrm-website .hero-stats .stat-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    border-right: none;
    padding: 0;
}

body.ihrm-website .hero-stats .stat-item i {
    color: #93c5fd;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

body.ihrm-website .hero-stats .stat-item strong {
    font-size: 2rem;
    color: #fff;
}

body.ihrm-website .hero-stats .stat-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.8;
}

body.ihrm-website .hero-animated {
    position: relative;
    overflow: hidden;
}

body.ihrm-website .reveal.reveal-item {
    opacity: 0;
}

body.ihrm-website .reveal.reveal-item.is-visible,
body.ihrm-website .reveal.revealed {
    opacity: 1;
}

/* Sections */
body.ihrm-website .content-section {
    padding: 4.5rem 0;
}

body.ihrm-website .bg-section {
    background: var(--ihrm-surface);
}

body.ihrm-website .section-title {
    color: var(--ihrm-primary);
    font-weight: 700;
}

body.ihrm-website .section-badge {
    background: var(--ihrm-accent-soft);
    color: var(--ihrm-accent);
}

body.ihrm-website .feature-card-accent {
    background: linear-gradient(135deg, var(--ihrm-primary), var(--ihrm-primary-light));
    border-color: transparent;
}

body.ihrm-website .feature-card-accent .card-body,
body.ihrm-website .feature-card-accent h4,
body.ihrm-website .feature-card-accent p {
    color: #fff;
}

body.ihrm-website .feature-card-accent .feature-icon {
    color: #93c5fd;
}

/* Process flow — Bootstrap row (nu folosi .process-steps grid legacy pe .row) */
body.ihrm-website .process-flow {
    margin-top: 2.5rem;
}

body.ihrm-website .process-flow-card .card-body {
    padding: 1.5rem 1.25rem;
}

body.ihrm-website .process-flow-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--ihrm-accent-soft);
    color: var(--ihrm-accent);
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

body.ihrm-website .process-flow-title {
    color: var(--ihrm-primary);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    word-break: normal;
    white-space: normal;
}

body.ihrm-website .process-flow-text {
    color: var(--ihrm-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    word-break: normal;
    white-space: normal;
}

body.ihrm-website .cta-banner {
    background: linear-gradient(135deg, var(--ihrm-primary), #1d4ed8);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

body.ihrm-website .cta-banner h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

body.ihrm-website .cta-banner .section-lead {
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 1.5rem;
}

/* Footer */
body.ihrm-website .ihrm-site-footer {
    background: var(--ihrm-primary);
    color: rgba(255, 255, 255, 0.88);
}

body.ihrm-website .footer-brand-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

body.ihrm-website .footer-brand-title .i {
    font-style: italic;
    font-weight: 300;
}

body.ihrm-website .footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

body.ihrm-website .footer-text,
body.ihrm-website .footer-links li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
}

body.ihrm-website .footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

body.ihrm-website .footer-links a:hover {
    color: #93c5fd;
}

body.ihrm-website .footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem 0;
}

body.ihrm-website .copyright,
body.ihrm-website .legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
}

body.ihrm-website .legal-links a:hover {
    color: #93c5fd;
}

/* Cookie bar */
body.ihrm-website .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ihrm-surface-elevated);
    border-top: 1px solid var(--ihrm-border);
    padding: 1rem 0;
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    display: none;
}

body.ihrm-website .cookie-consent.show,
body.ihrm-website .cookie-consent.active {
    display: block;
}

body.ihrm-website .cookie-text {
    font-size: 0.9rem;
    color: var(--ihrm-text-muted);
}

body.ihrm-website .cookie-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

body.ihrm-website .cookie-btn {
    border: none;
    border-radius: var(--ihrm-radius);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

body.ihrm-website .cookie-btn.accept {
    background: var(--ihrm-accent);
    color: #fff;
}

body.ihrm-website .cookie-btn.reject {
    background: var(--ihrm-surface);
    color: var(--ihrm-text);
    border: 1px solid var(--ihrm-border);
}

/* Floating scroll top */
body.ihrm-website .floating-action {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1030;
    display: none;
}

body.ihrm-website .floating-action .scroll-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ihrm-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ihrm-shadow-lg);
    border: none;
}

body.ihrm-website .floating-action .scroll-top:hover {
    background: #1d4ed8;
    color: #fff;
}

/* Jobs livewire section */
body.ihrm-website .jobs-container .animate-title {
    color: var(--ihrm-primary);
}

body.ihrm-website .job-card {
    border-radius: var(--ihrm-radius-lg);
    border: 1px solid var(--ihrm-border);
    box-shadow: var(--ihrm-shadow);
}

body.ihrm-website .apply-button,
body.ihrm-website .btn-auth.register {
    background: var(--ihrm-accent);
    color: #fff;
}

@media (max-width: 991px) {
    body.ihrm-website {
        padding-top: 64px;
    }
}
