/* ── CORPORATE / HR SOLUTIONS THEME ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:        #0F172A; /* Navy */
    --primary-light:  #1E293B;
    --primary-dark:   #020617;
    --accent:         #2563EB; /* Royal Blue */
    --accent-light:   #3B82F6;
    --accent-dark:    #1D4ED8;
    
    --bg-main:        #F8FAFC; /* Light Mode Background */
    --bg-card:        #FFFFFF; /* White Cards */
    --bg-gray:        #F1F5F9;
    
    --border-light:   #E2E8F0;
    --border-hover:   #CBD5E1;
    
    --text-dark:      #0F172A;
    --text-muted:     #64748B;
    --text-light:     #94A3B8;
    
    --radius-xl:      16px;
    --radius-2xl:     24px;
}

html { font-family: 'Inter', sans-serif; }
h1,h2,h3,h4,h5,h6 { font-family: 'Manrope', sans-serif; }

body {
    background: var(--bg-main);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--text-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Selection ── */
::selection { background: var(--accent); color: #fff; }

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo .logo-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: var(--bg-gray);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-ghost {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--primary); background: var(--bg-gray); }
.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary-sm:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 6px;
    font-size: 1.5rem;
}
.mobile-menu {
    border-top: 1px solid var(--border-light);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 12px 24px 20px;
}
.mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--bg-gray); color: var(--primary); }
.mobile-menu .divider { height: 1px; background: var(--border-light); margin: 10px 0; }

/* ── HERO ── */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(37,99,235,0.03), transparent 40%),
                radial-gradient(circle at bottom left, rgba(15,23,42,0.02), transparent 40%);
}
.hero-content { position: relative; z-index: 10; max-width: 900px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
}
.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--primary);
    margin-bottom: 24px;
}
.hero h1 .grad {
    color: var(--accent);
}
.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}
.btn-hero-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-hero-ghost:hover {
    background: var(--bg-gray);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    overflow: hidden;
}
.stat-item {
    padding: 24px 40px;
    text-align: center;
    border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ── SECTIONS ── */
section { position: relative; padding: 100px 0; }
.section-light { background: #fff; }
.section-gray { background: var(--bg-main); }
.section-dark { background: var(--bg-card); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); } /* Overridden to light */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.eyebrow-blue { background: rgba(37,99,235,0.1); color: var(--accent-dark); }
.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--primary);
}
.section-sub { font-size: 1.1rem; line-height: 1.6; color: var(--text-muted); }

/* ── CARDS (Services) ── */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(0,0,0,0.04);
    transform: translateY(-4px);
}
.feat-icon {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: var(--bg-main);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: transform 0.3s;
}
.feature-card:hover .feat-icon { transform: scale(1.05); background: rgba(37,99,235,0.1); }
.feat-title { font-family: 'Manrope', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.feat-desc { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 24px; }
.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
}
.feat-link:hover { gap: 10px; }

/* ── PRODUCT CARDS ── */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}
.product-top-bar { height: 4px; background: var(--accent); }
.product-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    font-size: 4rem;
    overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: 'Manrope', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.product-desc { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); flex: 1; margin-bottom: 24px; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.price-main { font-family: 'Manrope', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-original { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-product-primary { background: var(--primary); color: #fff; }
.btn-product-primary:hover { background: var(--primary-light); }
.btn-product-ghost { background: var(--bg-main); color: var(--primary); border: 1px solid var(--border-light); }
.btn-product-ghost:hover { background: var(--border-light); }
.badge-popular {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── TESTIMONIAL CARDS ── */
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}
.testi-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.04);
}
.stars { display: flex; gap: 4px; margin-bottom: 24px; color: #F59E0B; }
.testi-text { font-size: 1rem; line-height: 1.7; color: var(--primary); margin-bottom: 32px; font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem; color: var(--primary); }
.testi-pos { font-size: 0.85rem; color: var(--text-muted); }

/* ── BLOG CARDS ── */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.blog-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(0,0,0,0.04);
    transform: translateY(-4px);
}
.blog-img {
    height: 220px;
    overflow: hidden;
    background: var(--bg-main);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.blog-title { font-family: 'Manrope', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; line-height: 1.4; transition: color 0.2s; }
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 24px; }
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
}
.blog-link:hover { gap: 12px; }

/* ── FAQ ── */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.2s;
}
.faq-item.open { border-color: var(--accent); box-shadow: 0 4px 12px rgba(37,99,235,0.05); }
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.faq-question { font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.faq-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-icon { color: var(--accent); transform: rotate(180deg); }
.faq-body { padding: 0 24px 24px; display: none; }
.faq-item.open .faq-body { display: block; }
.faq-answer { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); }

/* ── CTA ── */
.cta-section {
    background: var(--primary);
    padding: 100px 24px;
    text-align: center;
}
.cta-card {
    max-width: 800px;
    margin: 0 auto;
}
.cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}
.cta-sub { font-size: 1.1rem; color: #94A3B8; margin-bottom: 40px; }
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-cta-primary:hover { background: var(--accent-light); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer {
    background: #F8FAFC;
    border-top: 1px solid var(--border-light);
    padding: 80px 24px 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 64px;
}
.footer-brand { margin-bottom: 24px; }
.footer-desc { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); max-width: 320px; }
.footer-title { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copy { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-muted); font-size: 1.25rem; transition: color 0.2s; }
.footer-social a:hover { color: var(--primary); }

@media (max-width: 992px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 140px; }
}
