/* Landing Page Styles */

/* ---- Navbar ---- */
.landing-nav {
    background: var(--kt-sidebar-bg);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}
.landing-nav .nav-link {
    color: var(--kt-gray-400);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}
.landing-nav .nav-link:hover {
    color: white;
}
.landing-nav-brand {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.landing-nav-brand:hover { color: white; }
.landing-nav-brand small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--kt-gray-500);
    margin-top: -2px;
}

/* ---- Hero ---- */
.hero-section {
    background: linear-gradient(135deg, var(--kt-sidebar-bg) 0%, #2a2a3d 50%, var(--kt-primary) 150%);
    color: white;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--kt-gray-100));
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-section .lead {
    font-size: 1.15rem;
    color: var(--kt-gray-400);
    max-width: 540px;
    line-height: 1.7;
}
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(62, 151, 255, 0.15);
    color: var(--kt-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(62, 151, 255, 0.2);
}

/* ---- Features ---- */
.features-section {
    padding: 5rem 0;
    background: var(--kt-gray-100);
}
.feature-card {
    background: white;
    border-radius: var(--kt-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 0;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--kt-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.feature-icon svg {
    width: 28px;
    height: 28px;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--kt-gray-600);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ---- Pricing ---- */
.pricing-section {
    padding: 5rem 0;
    background: white;
}
.pricing-card {
    background: white;
    border: 2px solid var(--kt-gray-200);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}
.pricing-card.featured {
    border-color: var(--kt-primary);
    box-shadow: 0 10px 40px rgba(62, 151, 255, 0.12);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kt-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-card .plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--kt-dark);
    margin-bottom: 0.5rem;
}
.pricing-card .plan-employees {
    font-size: 0.85rem;
    color: var(--kt-gray-500);
    margin-bottom: 1rem;
}
.pricing-card .plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kt-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.pricing-card .plan-price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--kt-gray-500);
}
.pricing-card .plan-period {
    font-size: 0.8rem;
    color: var(--kt-gray-500);
    margin-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--kt-gray-700);
    display: flex;
    align-items: start;
    gap: 0.5rem;
}
.pricing-features li svg {
    color: var(--kt-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Stats bar ---- */
.stats-section {
    padding: 4rem 0;
    background: var(--kt-gray-100);
}
.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kt-primary);
}
.stats-section .stat-text {
    font-size: 0.9rem;
    color: var(--kt-gray-600);
    font-weight: 500;
}

/* ---- CTA ---- */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--kt-sidebar-bg), #2a2a3d);
    color: white;
    text-align: center;
}
.cta-section h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section p {
    color: var(--kt-gray-400);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ---- Footer ---- */
.landing-footer {
    background: var(--kt-sidebar-bg);
    color: var(--kt-gray-500);
    padding: 3rem 0 1.5rem;
}
.landing-footer h6 {
    color: var(--kt-gray-300);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.landing-footer a {
    color: var(--kt-gray-500);
    font-size: 0.875rem;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.landing-footer a:hover {
    color: white;
}
.landing-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

/* ---- Register form ---- */
.register-section {
    padding: 3rem 0 5rem;
    background: var(--kt-gray-100);
}
.register-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(82, 63, 105, 0.05);
    padding: 2.5rem;
}
.plan-summary {
    background: var(--kt-primary-light);
    border: 1px solid rgba(62, 151, 255, 0.15);
    border-radius: var(--kt-radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.plan-selector .plan-option {
    border: 2px solid var(--kt-gray-200);
    border-radius: var(--kt-radius);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}
.plan-selector .plan-option:hover {
    border-color: var(--kt-gray-300);
}
.plan-selector .plan-option.selected {
    border-color: var(--kt-primary);
    background: var(--kt-primary-light);
}
.plan-selector .plan-option input[type="radio"] {
    display: none;
}

/* ---- Section titles ---- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--kt-gray-600);
    margin-bottom: 3rem;
}

/* ---- Hero particles ---- */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(62, 151, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(2n) {
    width: 4px;
    height: 4px;
    background: rgba(80, 205, 137, 0.25);
}
.particle:nth-child(3n) {
    width: 8px;
    height: 8px;
    background: rgba(255, 199, 0, 0.2);
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.3); opacity: 1; }
}

/* ---- Hero gradient text ---- */
.hero-gradient-text {
    background: linear-gradient(135deg, var(--kt-primary) 0%, #50cd89 50%, #ffc700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Hero checks ---- */
.hero-check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--kt-gray-400);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ---- Hero mockup (browser window) ---- */
.hero-mockup {
    background: #1e1e2d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: #151521;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3a4a;
}
.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:last-child { background: #28c840; }
.mockup-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    color: var(--kt-gray-500);
    font-size: 0.75rem;
    font-family: monospace;
}
.mockup-body {
    display: flex;
    min-height: 260px;
}
.mockup-sidebar {
    width: 50px;
    background: #151521;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mockup-sidebar-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}
.mockup-sidebar-item.active {
    background: var(--kt-primary);
}
.mockup-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mockup-clock {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}
.mockup-date {
    font-size: 0.8rem;
    color: var(--kt-gray-500);
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.mockup-btn-group {
    margin-bottom: 1.25rem;
}
.mockup-clock-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    background: var(--kt-success);
}
.mockup-clock-btn.pulse-green {
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(80, 205, 137, 0.4); }
    50% { box-shadow: 0 0 20px 6px rgba(80, 205, 137, 0.2); }
}
.mockup-stats {
    display: flex;
    gap: 1.5rem;
}
.mockup-stat {
    text-align: center;
}
.mockup-stat-val {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}
.mockup-stat-lbl {
    display: block;
    color: var(--kt-gray-600);
    font-size: 0.7rem;
}

/* ---- Glow button ---- */
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

/* ---- Trusted bar ---- */
.trusted-bar {
    opacity: 0.7;
}
.trusted-logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--kt-gray-500);
    letter-spacing: -0.5px;
}

/* ---- Steps (how it works) ---- */
.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: var(--kt-gray-100);
    height: 100%;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kt-primary);
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.step-visual {
    margin-bottom: 1.25rem;
}
.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--kt-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ---- Feature tag ---- */
.feature-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.2rem 0.65rem;
    background: var(--kt-gray-100);
    color: var(--kt-gray-600);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Demo section ---- */
.demo-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: var(--kt-primary-light);
    color: var(--kt-primary);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.demo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.demo-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Demo shift grid mockup ---- */
.demo-mockup-grid {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--kt-gray-200);
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
}
.demo-grid-header {
    display: grid;
    grid-template-columns: 120px repeat(5, 1fr);
    background: var(--kt-gray-100);
    border-bottom: 1px solid var(--kt-gray-200);
}
.demo-grid-emp {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--kt-gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.demo-grid-day {
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--kt-gray-500);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.demo-grid-row {
    display: grid;
    grid-template-columns: 120px repeat(5, 1fr);
    border-bottom: 1px solid var(--kt-gray-100);
}
.demo-grid-row:last-child {
    border-bottom: 0;
}
.demo-grid-cell {
    padding: 0.5rem 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-shift {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    border-left: 3px solid;
    white-space: nowrap;
}
.demo-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Legal compliance cards ---- */
.legal-card {
    background: white;
    border: 1px solid var(--kt-gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.2s;
}
.legal-card:hover {
    transform: translateY(-3px);
}
.legal-card-ok {
    border-color: rgba(80, 205, 137, 0.2);
    background: rgba(80, 205, 137, 0.03);
}
.legal-icon {
    margin-bottom: 0.75rem;
}
.legal-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ---- Guide page ---- */
.guide-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--kt-sidebar-bg) 0%, #2a2a3d 100%);
    color: white;
}
.guide-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}
.guide-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--kt-gray-200);
}
.guide-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--kt-primary);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.guide-mockup {
    background: var(--kt-gray-100);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--kt-gray-200);
}
.guide-tab-nav .nav-link {
    color: var(--kt-gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
}
.guide-tab-nav .nav-link.active {
    color: var(--kt-primary);
    background: var(--kt-primary-light);
    border-color: rgba(62, 151, 255, 0.15);
}
.faq-item {
    border: 1px solid var(--kt-gray-200);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--kt-gray-500);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '-';
}
.faq-item .faq-answer {
    padding: 0 1.25rem 1rem;
    color: var(--kt-gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-section { padding: 4rem 0 3rem; }
    .hero-section h1 { font-size: 2.2rem; }
    .pricing-card { margin-bottom: 1.5rem; }
}
@media (max-width: 575.98px) {
    .hero-section h1 { font-size: 1.8rem; }
    .pricing-card .plan-price { font-size: 2rem; }
}
