:root {
    --smarthr-primary: #ed5c39;
    --smarthr-accent: #ffa800;
    --smarthr-ink: #1f2937;
    --smarthr-muted: #6b7280;
    --smarthr-surface: #fff7ef;
    --smarthr-border: rgba(31, 41, 55, 0.08);
}

html {
    scroll-behavior: smooth;
}

body.smarthr-landing {
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--smarthr-ink);
    background:
        radial-gradient(circle at top left, rgba(237, 92, 57, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.smarthr-shell {
    overflow: hidden;
}

.smarthr-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.smarthr-header .navbar {
    padding: 6px 0;
}

.smarthr-header-inner {
    padding-left: clamp(16px, 2.2vw, 32px);
    padding-right: clamp(16px, 2.2vw, 36px);
}

.smarthr-header .navbar-brand {
    margin-right: 18px;
    flex: 0 0 auto;
}

.smarthr-header .navbar-collapse {
    justify-content: flex-end;
}

.smarthr-brand-logo {
    max-height: 96px;
    width: auto;
    object-fit: contain;
    display: block;
}

.smarthr-header .nav-link {
    color: var(--smarthr-ink);
    font-weight: 500;
    position: relative;
}

.smarthr-nav-caret {
    margin-left: 8px;
    font-size: 0.78rem;
    vertical-align: middle;
    color: var(--smarthr-primary) !important;
}

.smarthr-header .dropdown-toggle::after {
    display: none;
}

.smarthr-header .nav-link:hover,
.smarthr-header .nav-link:focus {
    color: var(--smarthr-primary);
}

.smarthr-header .navbar-nav > .nav-item > .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, #ed5c39, #ffa800);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.smarthr-header .navbar-nav > .nav-item > .nav-link:hover::after,
.smarthr-header .navbar-nav > .nav-item > .nav-link:focus::after {
    transform: scaleX(1);
}

.smarthr-dropdown-menu {
    border: 1px solid rgba(237, 92, 57, 0.24);
    border-radius: 18px;
    padding: 10px;
    min-width: 220px;
    background: linear-gradient(180deg, #fff8f2 0%, #fff1e7 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.smarthr-dropdown-menu .dropdown-item {
    border-radius: 12px;
    color: var(--smarthr-ink);
    font-weight: 500;
    padding: 10px 14px;
}

.smarthr-dropdown-menu .dropdown-item:hover,
.smarthr-dropdown-menu .dropdown-item:focus {
    background: linear-gradient(90deg, rgba(237, 92, 57, 0.12), rgba(255, 168, 0, 0.16));
    color: var(--smarthr-primary);
}

.smarthr-header .header-reg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    min-width: 132px;
    padding: 0 20px !important;
    background: linear-gradient(135deg, #ed5c39, #f5812a);
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff !important;
    font-size: 0.88rem;
    text-decoration: none;
}

.smarthr-login-btn,
.smarthr-signup-btn {
    border-radius: 999px;
    padding: 12px 22px !important;
}

.smarthr-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    min-width: 138px;
    padding: 0 20px !important;
    border-radius: 999px;
    border: 1px solid rgba(237, 92, 57, 0.22);
    background: linear-gradient(180deg, #fff7f1 0%, #ffefe3 100%);
    color: var(--smarthr-primary) !important;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(237, 92, 57, 0.12);
}

.smarthr-auth-btn:hover,
.smarthr-auth-btn:focus {
    background: linear-gradient(180deg, #fff2e8 0%, #ffe3d1 100%);
    color: var(--smarthr-primary) !important;
}

.smarthr-login-btn {
    border: 1px solid rgba(237, 92, 57, 0.2);
    background: #fff;
    color: var(--smarthr-primary) !important;
}

.smarthr-signup-btn {
    border: 1px solid transparent;
    background: #fff1e8;
    color: var(--smarthr-primary) !important;
}

.smarthr-login-btn:hover,
.smarthr-signup-btn:hover {
    background: #ffe8da;
    color: var(--smarthr-primary) !important;
}

.smarthr-header .dropdown-menu {
    margin-top: 12px;
}

.smarthr-hero {
    position: relative;
    padding: 92px 0 70px;
}

.smarthr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 247, 239, 0.96), rgba(255, 239, 226, 0.92));
    clip-path: ellipse(92% 100% at 50% 0%);
}

.smarthr-hero .container {
    position: relative;
    z-index: 1;
}

.smarthr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(237, 92, 57, 0.1);
    color: var(--smarthr-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.smarthr-kicker i {
    color: var(--smarthr-accent);
}

.smarthr-hero-copy h1 {
    color: #2b211c;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.14;
    margin: 16px 0 14px;
}

.smarthr-hero-copy p {
    color: #5d524c;
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 600px;
}

.smarthr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.smarthr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    min-width: 156px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.smarthr-btn-primary {
    background: linear-gradient(135deg, #ed5c39, #f5812a);
    color: #fff;
    box-shadow: 0 18px 40px rgba(140, 45, 17, 0.18);
}

.smarthr-btn-secondary {
    border: 1px solid rgba(237, 92, 57, 0.24);
    color: var(--smarthr-primary);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.smarthr-btn-attendance {
    border: 1px solid rgba(237, 92, 57, 0.12);
    color: #fff;
    background: linear-gradient(135deg, #1f2937, #334155);
    box-shadow: 0 16px 34px rgba(31, 41, 55, 0.18);
}

.smarthr-hero-panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(237, 92, 57, 0.12);
    border-radius: 28px;
    padding: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(91, 37, 17, 0.1);
}

.smarthr-hero-panel img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.smarthr-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.smarthr-stat {
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.smarthr-stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--smarthr-primary);
}

.smarthr-stat span {
    color: var(--smarthr-muted);
    font-size: 0.95rem;
}

.smarthr-section {
    padding: 84px 0;
}

.smarthr-section-title {
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    margin-bottom: 18px;
}

.smarthr-section-title span {
    color: var(--smarthr-accent);
}

.smarthr-section-copy {
    color: var(--smarthr-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 760px;
}

.smarthr-grid {
    display: grid;
    gap: 24px;
    margin-top: 38px;
}

.smarthr-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smarthr-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.smarthr-card {
    height: 100%;
    border: 1px solid var(--smarthr-border);
    border-radius: 24px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.smarthr-card i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(237, 92, 57, 0.12), rgba(255, 168, 0, 0.22));
    color: var(--smarthr-primary);
    font-size: 1.25rem;
}

.smarthr-card h3 {
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.smarthr-card p,
.smarthr-card li {
    color: var(--smarthr-muted);
    line-height: 1.7;
}

.smarthr-card ul {
    padding-left: 18px;
    margin: 0;
}

.smarthr-inline-link {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: var(--smarthr-primary);
    font-weight: 600;
}

.smarthr-highlight {
    background: linear-gradient(180deg, rgba(255, 248, 242, 0.96), rgba(255, 255, 255, 0.98));
}

.smarthr-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.smarthr-showcase img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.09);
}

.smarthr-badge-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.smarthr-badge {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(237, 92, 57, 0.1);
}

.smarthr-badge i {
    margin-top: 3px;
    color: var(--smarthr-primary);
}

.smarthr-cta {
    position: relative;
    overflow: hidden;
}

.smarthr-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 228, 212, 0.96), rgba(255, 243, 232, 0.94));
}

.smarthr-cta .container {
    position: relative;
    z-index: 1;
}

.smarthr-cta-card {
    border-radius: 30px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(237, 92, 57, 0.12);
    backdrop-filter: blur(10px);
}

.smarthr-cta-card,
.smarthr-cta-card p,
.smarthr-cta-card a,
.smarthr-cta-card li,
.smarthr-cta-card h2 {
    color: var(--smarthr-ink);
}

.smarthr-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.smarthr-contact-list a,
.smarthr-contact-list span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.smarthr-footer {
    padding: 28px 0 40px;
    color: var(--smarthr-muted);
}

.smarthr-footer a {
    color: var(--smarthr-primary);
}

.smarthr-coming-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 48px 0;
    background:
        radial-gradient(circle at top left, rgba(237, 92, 57, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fff6ee 100%);
}

.smarthr-coming-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 32px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(237, 92, 57, 0.14);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.smarthr-coming-logo {
    max-height: 96px;
    width: auto;
    margin-bottom: 22px;
}

.smarthr-coming-card h1 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 18px 0 14px;
    color: #2b211c;
}

.smarthr-coming-card p {
    color: #5d524c;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .smarthr-hero {
        padding-top: 70px;
    }

    .smarthr-hero::before {
        clip-path: none;
    }

    .smarthr-stat-grid,
    .smarthr-grid-3,
    .smarthr-grid-2,
    .smarthr-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .smarthr-header .navbar {
        padding: 6px 0;
    }

    .smarthr-brand-logo {
        max-height: 62px;
    }

    .smarthr-card,
    .smarthr-cta-card,
    .smarthr-hero-panel {
        padding: 22px;
    }

    .smarthr-actions {
        flex-direction: column;
    }

    .smarthr-btn {
        width: 100%;
    }
}

/* Professional polish overrides */
body.smarthr-landing {
    line-height: 1.65;
}

.smarthr-header {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.smarthr-header .nav-link {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.smarthr-header .header-reg {
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(140, 45, 17, 0.18);
}

.smarthr-hero {
    padding: 100px 0 74px;
}

.smarthr-hero-copy h1,
.smarthr-section-title,
.smarthr-card h3,
.smarthr-coming-card h1 {
    font-family: "Roboto Slab", "IBM Plex Sans", sans-serif;
}

.smarthr-hero-copy h1 {
    font-weight: 700;
    line-height: 1.18;
    margin: 18px 0 14px;
}

.smarthr-section-title {
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.smarthr-btn {
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
    letter-spacing: 0.01em;
}

.smarthr-btn-primary:hover,
.smarthr-btn-primary:focus {
    color: #fff;
    box-shadow: 0 22px 44px rgba(140, 45, 17, 0.22);
}

.smarthr-btn-secondary:hover,
.smarthr-btn-secondary:focus {
    color: var(--smarthr-primary);
    background: #fff4ec;
    border-color: rgba(237, 92, 57, 0.3);
}

.smarthr-btn-attendance:hover,
.smarthr-btn-attendance:focus {
    color: #fff;
    box-shadow: 0 20px 38px rgba(31, 41, 55, 0.24);
}

.smarthr-header .smarthr-auth-btn::after,
.smarthr-header .header-reg::after {
    display: none !important;
}

.smarthr-stat {
    border: 1px solid rgba(237, 92, 57, 0.1);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.smarthr-section {
    padding: 90px 0;
}

.smarthr-card {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.smarthr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 92, 57, 0.2);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.smarthr-inline-link {
    text-decoration: none;
    gap: 8px;
}

.smarthr-inline-link::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}

.smarthr-inline-link:hover::after {
    transform: translateX(4px);
}

.smarthr-showcase img {
    border: 1px solid rgba(237, 92, 57, 0.12);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.11);
}

.smarthr-cta-card {
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.09);
}

.smarthr-contact-list a,
.smarthr-contact-list span {
    display: flex;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(237, 92, 57, 0.12);
}

.smarthr-contact-list a {
    color: var(--smarthr-ink);
    text-decoration: none;
}

.smarthr-contact-list a:hover {
    color: var(--smarthr-primary);
    background: #fff4ec;
}

.smarthr-footer {
    border-top: 1px solid rgba(31, 41, 55, 0.08);
}

@media (max-width: 991.98px) {
    .smarthr-section {
        padding: 72px 0;
    }

    .smarthr-header-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .smarthr-header .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(237, 92, 57, 0.14);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    }
}

@media (max-width: 575.98px) {
    .smarthr-brand-logo {
        max-height: 76px;
    }

    .smarthr-section-title {
        line-height: 1.2;
    }
}
