@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.time-clock-hero-section {
    background-color: #FAFAFC;
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Top Social Proof Badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    background: #FFFFFF;
    padding: 6px 16px 6px 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #F1F5F9;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar-img:first-child {
    margin-left: 0;
}

.trust-badge-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1E293B;
}

/* Main Title Styling */
.hero-main-title {
    font-size: 56px;
    color: #0F172A;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.highlight-purple {
    color: #432295;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.purple-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #432295;
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(67, 34, 149, 0.35);
    vertical-align: middle;
    margin-left: 6px;
    transform: translateY(-2px);
}

.purple-icon-badge svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Subtitle Description */
.hero-description {
    font-size: 18px;
    line-height: 1.65;
    color: #4B5563;
    margin-bottom: 36px;
    max-width: 540px;
}

/* CTA Buttons Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 44px;
}

.btn-orange-primary {
    background: linear-gradient(135deg, #432295 0%, #8c60f1 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 34px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 22px rgb(58 36 241 / 35%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-orange-primary:hover {
    background: linear-gradient(135deg, #8c60f1 0%, #432295 100%);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(58, 36, 241, 0.45);
}

.bottom-cta-section .btn-orange-primary {
    background: linear-gradient(135deg, #d9ccff 0%, #ffffff 100%) !important;
    color: #000000 !important;
    font-weight: 600;
}

.btn-demo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1F2937;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
}

.btn-demo-secondary:hover {
    color: #432295;
}

.demo-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #432295;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #432295;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-demo-secondary:hover .demo-icon-circle {
    background-color: #432295;
    color: #FFFFFF;
    transform: translateX(4px);
}

/* Stats Counter Section */
.hero-stats-wrapper {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 12px;
    border-top: 1px solid #E2E8F0;
    max-width: 480px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background-color: #CBD5E1;
}

/* Right Column Layered Image Card with Purple Offset Backdrop */
.hero-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding-bottom: 24px;
    padding-right: 24px;
}

.purple-backdrop-layer {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    background-color: #432295;
    border-radius: 28px;
    z-index: 1;
}

.foreground-image-card {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
    background-color: #FFFFFF;
}

.foreground-image-card img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* Features Grid Section */
.features-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.section-tag {
    color: #6B21A8;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 18px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 17px;
    color: #64748B;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.feature-card {
    background: #FAFAFC;
    border: 1px solid #F1F5F9;
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    border-color: #E2E8F0;
    background: #FFFFFF;
}

.feature-icon-box {
    border-radius: 14px;
    color: #432295;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 25px;
    margin-bottom: 30px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
}

/* How It Works Showcase */
.how-it-works-section {
    padding: 60px 0;
    background: #fff;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #F15A24;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    font-size: 17px;
    color: #0F172A;
    padding: 20px 24px;
    background-color: #FFFFFF;
}

.accordion-button:not(.collapsed) {
    color: #6B21A8;
    background-color: #F8FAFC;
    box-shadow: none;
}

.accordion-body {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    padding: 20px 24px;
}

/* Bottom CTA Section */
.bottom-cta-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #432295 0%, #1E1B4B 100%);
    color: #FFFFFF;
    border-radius: 28px;
    margin: 40px auto;
}

.bottom-cta-title {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.bottom-cta-desc {
    font-size: 18px;
    color: #d4d7db;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover {
    transform: scale(1.12);
    color: #FFFFFF !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 46px;
    }

    .hero-media-wrapper {
        margin-top: 40px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .hero-main-title {
        font-size: 36px;
    }

    .purple-icon-badge {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-orange-primary {
        width: 100%;
    }

    .btn-demo-secondary {
        justify-content: center;
    }
}

/* Holistic View Scatter Animation Section */
.holistic-view-section {
    position: relative;
    height: 220vh;
    background-color: #FAFAFC;
}

.holistic-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Center Content */
.holistic-center-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    text-align: center;
    padding: 0 20px;
    will-change: transform, opacity;
}

.holistic-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.h-icon {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
}

.holistic-center-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.holistic-center-content p {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-holistic {
    background-color: #6B21A8;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 34px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.32);
    transition: all 0.3s ease;
    border: none;
}

.btn-holistic:hover {
    background-color: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(107, 33, 168, 0.42);
}

/* Floating Widget Mockup Cards */
.holistic-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #E2E8F0;
    padding: 20px 24px;
    width: 260px;
    z-index: 99;
    will-change: transform;
}

.holistic-card.card-velocity {
    z-index: 5;
}

.hc-header {
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 14px;
}

/* KPI completion rate / Bar Wrapper */
.hc-bar-wrapper {
    display: flex;
    height: 14px;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 14px;
    gap: 3px;
}

.hc-bar {
    height: 100%;
    border-radius: 4px;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-55 {
    width: 55%;
}

.bg-orange-400 {
    background-color: #F97316;
}

.bg-rose-500 {
    background-color: #F43F5E;
}

.bg-emerald-500 {
    background-color: #10B981;
}

.hc-legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
}

.hc-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hc-legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Overdue objectives / Big Number Card */
.hc-big-number {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
}

/* Goal progress / Donut Pie Chart */
.hc-pie-container {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hc-pie {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: conic-gradient(#0EA5E9 0% 45%, #38BDF8 45% 75%, #7DD3FC 75% 100%);
    flex-shrink: 0;
}

.hc-legend-vertical {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
}

.hc-legend-vertical span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hc-legend-vertical i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.bg-sky-500 {
    background-color: #0EA5E9;
}

.bg-sky-400 {
    background-color: #38BDF8;
}

.bg-sky-300 {
    background-color: #7DD3FC;
}

/* Monthly KPI Trend / Chart Bars */
.hc-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 72px;
    padding-top: 6px;
}

.hc-chart-col {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 100%;
    flex: 1;
}

.hc-cb {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.h-50 {
    height: 50%;
}

.h-55 {
    height: 55%;
}

.h-60 {
    height: 60%;
}

.h-65 {
    height: 65%;
}

.h-70 {
    height: 70%;
}

.h-80 {
    height: 80%;
}

.bg-emerald-800 {
    background-color: #064E3B;
}

/* Department Objectives / Dots Matrix */
.hc-grid-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 0;
}

.hc-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hc-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.bg-blue {
    background-color: #3B82F6;
}

.bg-red {
    background-color: #EF4444;
}

.bg-gray {
    background-color: #CBD5E1;
}

/* Enhanced Holistic Card Styling for Feature Cards */
.holistic-card.card-feature-box {
    width: 290px;
    padding: 20px 22px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    border: 1px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.holistic-card.card-feature-box:hover {
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14), 0 4px 12px rgba(15, 23, 42, 0.06);
    border-color: #CBD5E1;
}

.hc-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.hc-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bg-purple-soft {
    background: #F3E8FF;
}

.text-purple {
    color: #7C3AED;
}

.bg-purple-100 {
    background: #F3E8FF;
}

.text-purple-700 {
    color: #6B21A8;
}

.bg-amber-soft {
    background: #FEF3C7;
}

.text-amber {
    color: #D97706;
}

.bg-amber-100 {
    background: #FEF3C7;
}

.text-amber-700 {
    color: #B45309;
}

.bg-sky-soft {
    background: #E0F2FE;
}

.text-sky {
    color: #0284C7;
}

.bg-sky-100 {
    background: #E0F2FE;
}

.text-sky-700 {
    color: #0369A1;
}

.bg-emerald-soft {
    background: #D1FAE5;
}

.text-emerald {
    color: #059669;
}

.bg-emerald-100 {
    background: #D1FAE5;
}

.text-emerald-700 {
    color: #047857;
}

.bg-rose-soft {
    background: #FFE4E6;
}

.text-rose {
    color: #E11D48;
}

.bg-rose-100 {
    background: #FFE4E6;
}

.text-rose-700 {
    color: #BE123C;
}

.hc-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
}

.hc-feature-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #475569;
    margin-top: 4px;
    margin-bottom: 12px;
}

.hc-feature-footer {
    display: flex;
    align-items: center;
}

.hc-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.hc-live-dot {
    width: 8px;
    height: 8px;
    background-color: #0284C7;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
    animation: hcPulse 1.8s infinite;
}

@keyframes hcPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(2, 132, 199, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
    }
}

@media (max-width: 991px) {
    .holistic-center-content h2 {
        font-size: 36px;
    }

    .holistic-card {
        width: 240px;
        padding: 14px 16px;
    }

    .holistic-card.card-feature-box {
        width: 240px;
        padding: 14px 16px;
    }

    .hc-feature-title {
        font-size: 14px;
    }

    .hc-feature-desc {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .hc-icon-badge {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .holistic-center-content p {
        display: none;
    }
}

/* ==========================================================================
   HOW IT WORKS V2 - WIX / GSVP STYLE 8-STEP INTERACTIVE SHOWCASE
   ========================================================================== */

.how-it-works-section-v2 {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
    position: relative;
}

.how-it-works-section-v2 .section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(67, 34, 149, 0.08);
    color: #432295;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.2px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* YouTube Video Card Frame */
.how-it-works-video-wrapper {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-card-frame {
    background: #0F172A;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px -15px rgba(67, 34, 149, 0.3);
}

.video-card-header {
    background: #1E293B;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-header-title {
    font-size: 13px;
    font-weight: 700;
    color: #F8FAFC;
}

.video-card-frame iframe {
    border: none;
}

.how-it-works-section-v2 .section-title {
    font-size: 40px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.how-it-works-section-v2 .section-subtitle {
    font-size: 18px;
    color: #64748B;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Stepper Nav List */
.step-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-nav-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-nav-item:hover {
    border-color: #CBD5E1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.step-nav-item.active {
    background: #FFFFFF;
    border-color: #432295;
    box-shadow: 0 12px 30px -5px rgba(67, 34, 149, 0.16);
    transform: translateY(-2px);
}

.step-nav-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #F1F5F9;
    color: #64748B;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-nav-item.active .step-nav-number {
    background: linear-gradient(135deg, #432295 0%, #6366F1 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(67, 34, 149, 0.3);
}

.step-nav-content {
    flex: 1;
}

.step-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.step-nav-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.step-nav-item.active .step-nav-title {
    color: #432295;
}

.step-badge-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: #F1F5F9;
    color: #475569;
    white-space: nowrap;
}

.step-nav-item.active .step-badge-pill {
    background: #EEF2FF;
    color: #432295;
}

.step-nav-desc {
    font-size: 13.5px;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* Active Step Progress Line */
.step-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
}

.step-nav-item.active .step-progress-bar {
    background: #E2E8F0;
}

.step-nav-item.active .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #432295, #F97316);
    transition: width 0.1s linear;
}

/* Mockup Canvas Container */
.mockup-stage-container {
    position: relative;
    height: 100%;
}

.macbook-app-window {
    background: #0F172A;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    z-index: 2;
    position: sticky;
    top: 100px;
}

.app-window-bar {
    background: #1E293B;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot-close {
    background: #FF5F56;
}

.dot-min {
    background: #FFBD2E;
}

.dot-expand {
    background: #27C93F;
}

.window-address-bar {
    background: #0F172A;
    padding: 5px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 320px;
    width: 100%;
    justify-content: center;
}

.lock-icon {
    color: #10B981;
    font-size: 11px;
}

.address-text {
    color: #94A3B8;
    text-decoration: none;
    font-size: 11.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.address-text:hover {
    color: #F8FAFC;
    text-decoration: underline;
}

.live-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #38BDF8;
    background: rgba(56, 189, 248, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 8px #38BDF8;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.app-window-body {
    padding: 24px;
    min-height: 520px;
    background: #0F172A;
    color: #F8FAFC;
    position: relative;
}

/* Mockup Panes */
.mockup-view-pane {
    display: none;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mockup-view-pane.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.real-app-img {
    border-radius: 0 0 16px 16px;
    object-fit: cover;
    display: block;
    width: 100%;
}

/* Ambient Glow */
.mockup-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(67, 34, 149, 0.18) 0%, rgba(249, 115, 22, 0.08) 50%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Pane UI Elements Styling */
.pane-card {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pane-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pane-badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

.pane-badge-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #C084FC;
}

.pane-badge-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #FB923C;
}

.pane-badge-blue {
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
}

.pane-title {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 12px 0 6px;
}

.pane-sub {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 20px;
}

/* Step 1 UI */
.signup-mock-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
}

.mock-input {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: #F8FAFC;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-btn-primary {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
    cursor: pointer;
}

.sso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.sso-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    font-size: 12.5px;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.perks-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    font-size: 12px;
    color: #94A3B8;
}

/* Step 2 UI */
.team-invite-box {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.invite-input-row {
    display: flex;
    gap: 10px;
}

.invite-tags-input {
    flex: 1;
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.email-tag {
    background: rgba(67, 34, 149, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #E0E7FF;
    font-size: 11.5px;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.role-select-mock {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #F8FAFC;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.user-table-mock {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #1E293B;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
}

.av-1 {
    background: linear-gradient(135deg, #6366F1, #432295);
}

.av-2 {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

.av-3 {
    background: linear-gradient(135deg, #10B981, #059669);
}

.av-4 {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.user-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #F8FAFC;
    margin: 0;
}

.user-email {
    font-size: 11.5px;
    color: #94A3B8;
    margin: 0;
}

.role-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: #CBD5E1;
}

/* Step 3 UI */
.timer-hero-widget {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.clock-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 800;
    margin-bottom: 20px;
}

.big-digital-clock {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFFFFF;
    font-family: 'Monaco', 'Consolas', monospace;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    margin-bottom: 15px;
}

.timer-project-select {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 16px;
    color: #38BDF8;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.timer-action-group {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.btn-clock-stop {
    background: #EF4444;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-clock-break {
    background: rgba(255, 255, 255, 0.1);
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* Step 4 UI */
.activity-feed-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
}

.act-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.act-app-tag {
    font-size: 12px;
    color: #38BDF8;
    background: rgba(56, 189, 248, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
}

.act-status-active {
    color: #34D399;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Step 5 UI */
.schedule-grid-mock {
    display: grid;
    grid-template-columns: 120px repeat(4, 1fr);
    gap: 8px;
    font-size: 12px;
}

.sch-header-cell {
    background: #0F172A;
    padding: 8px;
    text-align: center;
    font-weight: 700;
    color: #94A3B8;
    border-radius: 6px;
}

.sch-user-cell {
    background: #1E293B;
    padding: 10px;
    font-weight: 700;
    color: #F8FAFC;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sch-shift-box {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #C7D2FE;
    padding: 8px;
    border-radius: 6px;
    font-size: 11px;
    text-align: center;
}

.sch-shift-box.orange {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
    color: #FFEDD5;
}

/* Step 6 UI */
.attendance-timeline-card {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
}

.punch-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.punch-box {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.punch-val {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
}

.punch-lbl {
    font-size: 11px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-top: 2px;
}

.timeline-visual-bar {
    height: 12px;
    background: #0F172A;
    border-radius: 50px;
    display: flex;
    overflow: hidden;
    margin: 15px 0;
}

.bar-work {
    background: #10B981;
}

.bar-break {
    background: #F59E0B;
}

/* Step 7 UI */
.chart-report-container {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
}

.report-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 180px;
    padding: 20px 10px 10px;
    gap: 14px;
}

.chart-col-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar-fill {
    width: 100%;
    max-width: 32px;
    background: linear-gradient(180deg, #6366F1 0%, #432295 100%);
    border-radius: 6px 6px 0 0;
    transition: height 0.5s ease;
}

.chart-label {
    font-size: 11px;
    color: #94A3B8;
    font-weight: 600;
}

/* Step 8 UI */
.export-dialog-card {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
}

.export-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.export-fmt-card {
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.export-fmt-card:hover {
    border-color: #38BDF8;
    transform: translateY(-2px);
    background: rgba(56, 189, 248, 0.05);
}

.export-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.fmt-pdf {
    color: #EF4444;
}

.fmt-excel {
    color: #10B981;
}

.fmt-csv {
    color: #38BDF8;
}

.export-fmt-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #FFFFFF;
}

.export-fmt-sub {
    font-size: 11px;
    color: #94A3B8;
}

/* Responsive rules */
@media (max-width: 991px) {
    .how-it-works-section-v2 .section-title {
        font-size: 30px;
    }

    .mockup-stage-container {
        margin-top: 30px;
    }

    .big-digital-clock {
        font-size: 38px;
    }

    .schedule-grid-mock {
        grid-template-columns: 80px repeat(4, 1fr);
    }

    .export-formats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MOBILE APP SHOWCASE SECTION (ABOVE FAQ)
   ========================================================================== */

.mobile-showcase-section {
    padding: 60px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.mobile-showcase-title {
    font-size: 46px;
    font-weight: 700;
    color: #1D1D1F;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mobile-showcase-desc {
    font-size: 18px;
    line-height: 1.65;
    color: #6E6E73;
    margin-bottom: 36px;
    max-width: 500px;
}

.store-badges-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge-link {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    border-radius: 10px;
    overflow: hidden;
}

.store-badge-link:hover {
    transform: translateY(-3px) scale(1.02);
    opacity: 0.92;
}

.store-badge-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Mobile Device Stage Container */
.mobile-device-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

/* Floral Starburst Graphic Backdrop */
.purple-floral-burst-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%) scale(1.25);
    width: 480px;
    height: 480px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.purple-floral-burst-bg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(216, 180, 254, 0.4));
}

/* iPhone Frame Mockup Styling */
.iphone-frame-mockup {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 580px;
    background: #000000;
    border-radius: 48px;
    padding: 10px;
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.35), 0 0 0 2px #2D2D2D, inset 0 0 0 2px #1A1A1A;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Side buttons */
.phone-btn {
    position: absolute;
    background: #2D2D2D;
    border-radius: 2px;
}

.phone-btn-vol-up {
    left: -4px;
    top: 120px;
    width: 4px;
    height: 35px;
}

.phone-btn-vol-down {
    left: -4px;
    top: 165px;
    width: 4px;
    height: 35px;
}

.phone-btn-power {
    right: -4px;
    top: 140px;
    width: 4px;
    height: 50px;
}

/* Phone Inner Screen Container */
.iphone-screen-container {
    width: 100%;
    height: 100%;
    background: #FAFAFC;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Status Bar & Dynamic Island */
.iphone-top-bar {
    padding: 12px 20px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAFAFC;
    z-index: 10;
    font-size: 11px;
    font-weight: 700;
    color: #1D1D1F;
}

.dynamic-island {
    width: 86px;
    height: 22px;
    background: #000000;
    border-radius: 20px;
    margin: 0 auto;
}

.phone-status-icons {
    display: flex;
    gap: 5px;
    font-size: 10px;
}

/* App Screen Body */
.mobile-app-screen-body {
    flex: 1;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.app-screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.screen-subtitle-text {
    font-size: 10px;
    font-weight: 800;
    color: #8E8E93;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.screen-title-text {
    font-size: 20px;
    font-weight: 800;
    color: #1C1C1E;
    margin: 0;
}

.screen-month-picker {
    font-size: 11px;
    font-weight: 600;
    color: #48484A;
    background: #EFEFF4;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Responsive Styles for Mobile Showcase */
@media (max-width: 991px) {
    .mobile-showcase-title {
        font-size: 36px;
    }

    .mobile-showcase-desc {
        font-size: 16px;
    }

    .purple-floral-burst-bg {
        width: 360px;
        height: 360px;
        right: 0;
    }

    .iphone-frame-mockup {
        width: 290px;
        height: 580px;
    }
}

/* ==========================================================================
   CLEAN WHITE THEME MOBILE CHECK-IN SCREEN UI
   ========================================================================== */

.white-theme-screen {
    background: #FFFFFF !important;
    padding: 24px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* User Profile Header */
.mobile-user-profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.profile-user-name {
    font-size: 19px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 4px;
}

.profile-user-name .profile-role {
    font-weight: 600;
    color: #432295;
    font-size: 15px;
}

.profile-date-text {
    font-size: 12.5px;
    color: #64748B;
    margin: 0;
    font-weight: 600;
}

/* Main Check-In Card */
.mobile-checkin-card {
    width: 100%;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px 18px 22px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    margin-bottom: 16px;
}

/* Check-In Circle Button */
.checkin-btn-wrapper {
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
}

.checkin-circle-outer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.15);
    animation: outerPulse 2s infinite ease-in-out;
}

@keyframes outerPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.16);
        opacity: 0.95;
    }
}

.checkin-gradient-btn {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 50%, #432295 100%);
    border: 3px solid #FFFFFF;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkin-gradient-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
}

.touch-icon {
    font-size: 26px;
    margin-bottom: 2px;
}

.checkin-btn-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

/* Shift Timing Info Inside Card */
.shift-timing-box {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shift-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
}

.shift-lbl {
    color: #334155;
    font-weight: 700;
}

.shift-val {
    color: #432295;
    font-weight: 800;
}

/* Shift Duration Pill Box */
.shift-duration-pill {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 50px;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.duration-lbl {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
}

.duration-val {
    font-size: 14px;
    font-weight: 800;
    color: #0F172A;
    font-family: 'Monaco', 'Consolas', monospace;
}

/* Sign Out Button */
.mobile-signout-wrapper {
    width: 100%;
}

.btn-mobile-signout {
    width: 100%;
    background: #1E293B;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-mobile-signout:hover {
    background: #0F172A;
    transform: translateY(-2px);
}

/* ==========================================================================
   STEP 3 TRACK TIME SHOWCASE & MOBILE SHOWCASE STYLES
   ========================================================================== */

.track-time-pane-container {
    background: #0B132B;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.track-time-subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #1C2541;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subnav-badge {
    background: rgba(67, 34, 149, 0.4);
    color: #A855F7;
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pane-nav-pills {
    display: flex;
    gap: 8px;
}

.pane-nav-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94A3B8;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pane-nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.pane-nav-btn.active {
    background: #432295;
    color: #FFFFFF;
    border-color: #6366F1;
    box-shadow: 0 4px 12px rgba(67, 34, 149, 0.4);
}

.mobile-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
    background: #0F172A;
}

.mobile-card-item {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(168, 85, 247, 0.4);
}

.mobile-card-frame {
    max-width: 180px;
    margin: 0 auto 12px;
    border: 3px solid #334155;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background: #000;
}

.mobile-card-frame img {
    width: 100%;
    display: block;
}

.feature-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 10px 14px;
    background: #0B132B;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-tag-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES FOR WORKS SHOWCASE WRAPPER
   ========================================================================== */

@media (max-width: 991px) {
    .how-it-works-section-v2 {
        padding: 40px 0;
    }

    .how-it-works-section-v2 .section-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .how-it-works-section-v2 .section-subtitle {
        font-size: 14.5px;
        margin-bottom: 24px;
    }

    .step-nav-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 6px 2px 14px;
        gap: 10px;
        scrollbar-width: thin;
        scrollbar-color: #432295 #E2E8F0;
    }

    .step-nav-list::-webkit-scrollbar {
        height: 5px;
    }

    .step-nav-list::-webkit-scrollbar-track {
        background: #F1F5F9;
        border-radius: 4px;
    }

    .step-nav-list::-webkit-scrollbar-thumb {
        background: #432295;
        border-radius: 4px;
    }

    .step-nav-item {
        flex: 0 0 240px;
        scroll-snap-align: start;
        padding: 12px 14px;
        gap: 10px;
        border-radius: 14px;
    }

    .step-nav-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 10px;
    }

    .step-nav-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 2px;
    }

    .step-nav-title {
        font-size: 14px;
        line-height: 1.3;
    }

    .step-badge-pill {
        font-size: 10px;
        padding: 2px 8px;
    }

    .step-nav-desc {
        font-size: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .mockup-stage-container {
        margin-top: 16px;
    }

    .macbook-app-window {
        position: relative !important;
        top: 0 !important;
        border-radius: 16px;
        box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.25);
    }

    .app-window-bar {
        padding: 10px 14px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .window-dots {
        gap: 6px;
    }

    .dot {
        width: 9px;
        height: 9px;
    }

    .window-address-bar {
        font-size: 10.5px;
        padding: 4px 10px;
        max-width: 200px;
    }

    .live-status-chip {
        font-size: 9.5px;
        padding: 2px 8px;
    }

    .app-window-body {
        min-height: auto !important;
        padding: 0 !important;
    }

    .real-app-img {
        border-radius: 0 0 14px 14px;
    }

    .track-time-pane-container {
        border-radius: 0 0 14px 14px;
    }

    .track-time-subnav {
        padding: 10px 12px;
        gap: 8px;
    }

    .pane-nav-pills {
        width: 100%;
        justify-content: center;
    }

    .pane-nav-btn {
        padding: 5px 12px;
        font-size: 11.5px;
        flex: 1;
        text-align: center;
    }

    .mobile-grid-view {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
    }

    .mobile-card-item {
        padding: 12px 8px;
        border-radius: 12px;
    }

    .mobile-card-frame {
        max-width: 130px;
        border-width: 2px;
        border-radius: 14px;
        margin-bottom: 8px;
    }

    .mobile-card-item h4 {
        font-size: 13px !important;
    }

    .mobile-card-item p {
        font-size: 11px !important;
    }

    .feature-tag-list {
        padding: 8px 10px;
        gap: 6px;
    }

    .feature-tag-pill {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section-v2 {
        padding: 30px 0;
    }

    .how-it-works-section-v2 .section-title {
        font-size: 22px;
    }

    .how-it-works-section-v2 .section-subtitle {
        font-size: 13.5px;
    }

    .step-nav-item {
        flex: 0 0 190px;
        padding: 10px 12px;
        gap: 8px;
    }

    .step-nav-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-nav-title {
        font-size: 13px;
    }

    .window-address-bar {
        display: none;
    }

    .mobile-grid-view {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mobile-card-frame {
        max-width: 150px;
    }

    .video-card-header {
        padding: 8px 12px;
    }

    .video-header-title {
        font-size: 11px;
    }

    .how-it-works-video-wrapper {
        margin-bottom: 20px !important;
    }
}

/* ==========================================================================
   HOLISTIC SECTION MOBILE RESPONSIVE STYLES (MOBILE ONLY <= 991px)
   ========================================================================== */

@media (max-width: 991px) {
    .holistic-view-section {
        height: auto !important;
        padding: 50px 0 !important;
        background-color: #FAFAFC;
    }

    .holistic-sticky {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow: visible !important;
        padding: 0 15px;
    }

    .holistic-center-content {
        order: 1 !important;
        position: relative !important;
        max-width: 100% !important;
        padding: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        margin-bottom: 24px !important;
    }

    .holistic-icons {
        gap: 12px;
        margin-bottom: 16px;
    }

    .h-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .h-icon svg {
        width: 18px;
        height: 18px;
    }

    .holistic-center-content h2 {
        font-size: 26px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    .holistic-center-content p {
        display: block !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        color: #64748B !important;
        margin-bottom: 0 !important;
    }

    .holistic-card,
    .holistic-card.card-feature-box {
        order: 2 !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 380px !important;
        padding: 16px 18px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06) !important;
        margin: 0 0 14px 0 !important;
        z-index: 1 !important;
    }

    .hc-feature-header {
        gap: 10px;
        margin-bottom: 6px;
    }

    .hc-icon-badge {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .hc-feature-title {
        font-size: 15px !important;
    }

    .hc-feature-desc {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
        margin-top: 2px;
        margin-bottom: 10px !important;
    }

    .btn-holistic {
        order: 3 !important;
        padding: 10px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin-top: 12px !important;
    }
}