:root {
    --primary: #0b2b20;
    --primary-hover: #123d2f;
    --accent-green: #10b981;
    --mint-bg: #e6f7f0;
    --mint-glow: rgba(16, 185, 129, 0.25);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-light: rgba(15, 57, 43, 0.08);
    --shadow-nav: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 20px 50px rgba(15, 57, 43, 0.08);
    --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent image selection and dragging across the entire landing page (Desktop & Mobile) */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

button {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #eaf6f0;
}

body {
    font-family: var(--font-sans);
    background-color: #eaf6f0;
    background-image: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.20) 0%, rgba(230, 247, 240, 0.75) 45%, #eaf6f0 80%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    letter-spacing: -0.025em;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-right: 4px;
}

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

/* Floating Navbar (Shared Global Navbar & Feature Navbar) */
.feat-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 0;
    z-index: 1000;
}

.feat-nav-wrapper .container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 40px !important;
}

.navbar,
.feat-navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none !important;
    width: 100%;
}

/* Right Translucent Pill Capsule (Matching Screenshot) */
.feat-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 57, 43, 0.14);
    border-radius: 9999px;
    padding: 5px 8px 5px 22px;
    box-shadow: 0 4px 20px rgba(15, 57, 43, 0.05);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.feat-nav-wrapper.scrolled .feat-nav-right {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 57, 43, 0.2);
}

/* Transitions are strictly enabled ONLY when nav-ready is added by JS after frame 1,
   preventing any jump, animation, or movement on initial page load / refresh */
.feat-nav-wrapper.nav-ready {
    transition: padding 0.22s cubic-bezier(0.2, 0, 0, 1),
        background-color 0.22s cubic-bezier(0.2, 0, 0, 1),
        box-shadow 0.22s cubic-bezier(0.2, 0, 0, 1),
        border-color 0.22s cubic-bezier(0.2, 0, 0, 1);
}

/* Scrolled Full-Width State */
.feat-nav-wrapper.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 57, 43, 0.08);
    box-shadow: 0 4px 25px rgba(15, 57, 43, 0.04);
}

.logo-brand-link,
.feat-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.brand-logo-img,
.feat-nav-brand-logo {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: normal !important;
    filter: none !important;
}

.feat-footer-brand-logo,
.footer-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.feat-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.feat-nav-links .feat-nav-link-btn {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    cursor: pointer;
    line-height: inherit;
    user-select: text;
}

@media (hover: hover) and (pointer: fine) {
.feat-nav-links .feat-nav-link-btn:hover {
    color: var(--primary);
}
}

.feat-nav-bullet {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* Ask Drasti AI Navbar Button */
.feat-nav-drasti-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    padding: 5px 12px !important;
    border-radius: 9999px !important;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.18);
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), filter 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
.feat-nav-drasti-btn:hover {
    color: #1d4ed8 !important;
    background: rgba(37, 99, 235, 0.12) !important;
    border-color: rgba(37, 99, 235, 0.35) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
    transform: translateY(-1px);
}
}

.drasti-sparkles-icon {
    width: 16px;
    height: 16px;
    color: #2563eb;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.feat-nav-drasti-btn:hover .drasti-sparkles-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.5));
}
}

.feat-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-btn-pill {
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s, opacity 0.2s, transform 0.2s, filter 0.2s;
    cursor: pointer;
    font-family: inherit;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feat-btn-secondary {
    background: transparent;
    color: #334155;
}

@media (hover: hover) and (pointer: fine) {
.feat-btn-secondary:hover {
    background: #f8fafc;
}
}

.feat-btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 57, 43, 0.25);
}

@media (hover: hover) and (pointer: fine) {
.feat-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}
}

/* Hero Section */
.hero {
    scroll-margin-top: 90px;
    padding: 95px 0 40px;
    text-align: center;
}

.hero-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.14;
    color: #0c2017;
    letter-spacing: -2px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .serif-italic {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 4.8rem;
    color: #116949;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-right: 6px;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    color: #4b6358;
    max-width: 660px;
    margin: 0 auto 34px;
    font-weight: 450;
    line-height: 1.65;
    letter-spacing: -0.2px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background: var(--primary);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 57, 43, 0.3);
    transition: color 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s, opacity 0.2s, transform 0.2s, filter 0.2s;
    border: none;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
.btn-hero-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
}

.btn-hero-secondary {
    background: #ffffff;
    color: #0f172a;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
.btn-hero-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
}

.btn-hero-secondary svg {
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.btn-hero-secondary:hover svg {
    transform: translateX(3px);
}
}

/* Real HRMS Dashboard Showcase Mockup Outbox Wrapper */
.mockup-outer-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    border-radius: 26px;
    padding: 34px 30px;
    background-image: none;
    background-size: cover;
    background-position: center 30%;
    box-shadow: 0 25px 70px -15px rgba(16, 185, 129, 0.18), 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.28);
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .mockup-outer-wrapper {
        padding: 18px 14px;
        border-radius: 20px;
    }
}

.mockup-container {
    width: 100%;
    margin: 0;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 57, 43, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    text-align: left;
    box-sizing: border-box;
}

/* Browser Window Chrome Header */
.mockup-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-window-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.window-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.window-dot.dot-red {
    background: #ff5f56;
}

.window-dot.dot-yellow {
    background: #ffbd2e;
}

.window-dot.dot-green {
    background: #27c93f;
}

.mockup-window-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 5px 18px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
    user-select: none;
}

@media (hover: hover) and (pointer: fine) {
.mockup-window-address:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background: #f0fdf4;
    color: #0b2b20;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
}
}

.mockup-window-address:active {
    transform: translateY(0);
}

.mockup-window-address .lock-icon {
    stroke: #10b981;
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.mockup-window-address:hover .lock-icon {
    transform: scale(1.1);
}
}

.mockup-window-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f172a;
}

.status-live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.mockup-screen-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2560 / 1270;
    background: #f8fafc;
    overflow: hidden;
}

.hrms-dashboard-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 2560 / 1270;
    display: block;
    object-fit: contain;
    object-position: top center;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Trusted By Infinite Marquee */
.trusted-section {
    padding: 60px 0 35px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.trusted-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 26s linear infinite;
    will-change: transform;
}

/* Keep marquee running continuously on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: running;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 70px;
    padding-right: 70px;
    flex-shrink: 0;
}

.brand-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.82;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    user-select: none;
    cursor: default;
}

.client-logo-img {
    height: 42px;
    max-height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title .serif-italic {
        font-size: 3.2rem;
    }


}

@media (max-width: 768px) {



    .floating-card-tags,
    .floating-card-slider {
        position: static !important;
        width: 100% !important;
        margin-top: 16px;
    }



}

/* -------------------------------------------------------------
   Work Process Section
   ------------------------------------------------------------- */
.section-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 18px;
}

.process-section {
    padding: 90px 0 60px;
    text-align: center;
}

.process-header {
    max-width: 880px;
    margin: 0 auto 48px;
}

.process-title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.18;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.process-title .title-line-1 {
    display: block;
}

.process-title .serif-italic {
    font-size: 3.4rem;
    display: block;
}

.process-subtitle {
    max-width: 660px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

.process-card-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 57, 43, 0.1);
    box-shadow: 0 24px 60px rgba(15, 57, 43, 0.06);
    padding: 48px 48px;
    text-align: left;
    align-items: center;
}

.process-left {
    display: flex;
    flex-direction: column;
}

.process-icon-box {
    width: 48px;
    height: 48px;
    background: #0b2b20;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
}

.process-step-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.process-step-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 40px;
}

.process-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #ffffff !important;
    padding: 13px 26px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(15, 57, 43, 0.28);
    transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    font-family: inherit;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
.process-cta-link:hover {
    background: var(--primary-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 57, 43, 0.38);
}
}

.process-cta-link svg {
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.process-cta-link:hover svg {
    transform: translateX(4px);
}
}

/* Process Mockup Area (Static Visual Prototype - Non-editable) */
.process-mock-wrap {
    position: relative;
    min-height: 400px;
    pointer-events: none;
    user-select: none;
}

.company-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    max-width: 380px;
    pointer-events: none;
    user-select: none;
}

.form-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.form-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 16px;
}

.upload-logo-box {
    border: 1.5px dashed #cbd5e1;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    background: #f8fafc;
}

.upload-logo-box span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.form-field {
    margin-bottom: 12px;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.form-field label span {
    color: #b91c1c;
}

.form-input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.82rem;
    color: #64748b;
    background: #ffffff;
    outline: none;
    pointer-events: none;
    user-select: none;
    cursor: default;
}

.form-textarea {
    width: 100%;
    height: 60px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.82rem;
    color: #64748b;
    background: #ffffff;
    resize: none;
    outline: none;
    pointer-events: none;
    user-select: none;
    cursor: default;
}

/* Floating Card 1: What kind of company */
.floating-card-tags {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    width: 320px;
    z-index: 2;
}

.tags-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #475569;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.tag-chip.active {
    background: #ecfdf5;
    border-color: #10b981;
    color: #065f46;
}

/* Floating Card 2: Company Size */
.floating-card-slider {
    position: absolute;
    bottom: 30px;
    right: 0px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    width: 290px;
    z-index: 3;
}

.slider-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.slider-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.slider-track {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 100px;
    position: relative;
}

.slider-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, #ea580c, #f97316);
    border-radius: 100px;
    position: relative;
}

.slider-knob {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid #f97316;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------------------
   Integrations Section
   ------------------------------------------------------------- */

/* Matrix edge fades */

/* Center Emblem */

/* Tools rows */

/* -------------------------------------------------------------
   Testimonials Section (HRMS Emerald Theme)
   ------------------------------------------------------------- */
.testimonials-section {
    padding: 90px 0 80px;
    text-align: center;
    position: relative;
    scroll-margin-top: 95px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
    text-align: left;
    margin-top: 48px;
}

.testi-card {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(15, 57, 43, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 1: PaisaWise Card (Emerald Accent) */
.testi-card-emerald {
    background: linear-gradient(180deg, #f2fbf6 0%, #ffffff 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-top: 4px solid #10b981;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.08);
}

.testi-card-emerald .testi-avatar {
    border: 2.5px solid #10b981;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.25);
}

/* 2: Rite Education Card (Deep Forest Accent) */
.testi-card-forest {
    background: linear-gradient(180deg, #f4faf6 0%, #ffffff 100%);
    border: 1px solid rgba(11, 43, 32, 0.18);
    border-top: 4px solid #0b2b20;
    box-shadow: 0 12px 32px rgba(11, 43, 32, 0.08);
}

.testi-card-forest .testi-avatar {
    border: 2.5px solid #0b2b20;
    box-shadow: 0 2px 10px rgba(11, 43, 32, 0.25);
}

/* 3: Virtualcode Card (Mint/Teal Accent) */
.testi-card-mint {
    background: linear-gradient(180deg, #f0fdf7 0%, #ffffff 100%);
    border: 1px solid rgba(5, 150, 105, 0.25);
    border-top: 4px solid #059669;
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.08);
}

.testi-card-mint .testi-avatar {
    border: 2.5px solid #059669;
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.25);
}

.testi-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testi-company-badge {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--primary, #0b2b20);
    margin-bottom: 12px;
    min-height: 52px;
    display: flex;
    align-items: flex-start;
}

.testi-quote {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: normal;
    flex-grow: 1;
}

.testi-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 22px;
}

.testi-stat-chip {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.09);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 68px;
    box-shadow: 0 2px 6px rgba(15, 57, 43, 0.02);
}

.testi-stat-val {
    font-family: var(--font-sans);
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--primary, #0b2b20);
    line-height: 1.15;
}

.testi-stat-lbl {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 3px;
    line-height: 1.3;
    text-transform: capitalize;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 57, 43, 0.07);
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}

.testi-author-info {
    display: flex;
    flex-direction: column;
}

.testi-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.testi-role {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: #059669;
    font-weight: 600;
    margin-top: 2px;
}

/* -------------------------------------------------------------
   Pricing Section
   ------------------------------------------------------------- */

.toggle-opt {
    padding: 7px 20px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.toggle-opt.active {
    background: #0b2b20;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(11, 43, 32, 0.2);
}

/* Card 1: Starter Plan (Warm Rose/Pink Subtle Tint) */

/* Card 2: Standard Plan (Most Popular Featured) */

/* Floating Badge on Standard Plan */

/* Card 3: Enterprise Plan (Lavender/Purple Subtle Tint) */

/* Card Typography & Internals */

.price-main-num {
    font-size: 2.9rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -1.5px;
}

@media (max-width: 1024px) {
    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin: 0 auto;
        gap: 24px;
    }


}

@media (max-width: 768px) {

    .testi-card {
        padding: 24px 20px;
    }

    .faq-split-title {
        font-size: 2.2rem;
    }

    .faq-split-title .serif-italic {
        font-size: 2.6rem;
    }

    .faq-line-item {
        padding: 16px 18px;
        border-radius: 14px;
    }

    .faq-line-question {
        font-size: 0.98rem;
    }

}

/* -------------------------------------------------------------
   FAQ Section (Split Layout, HRMS Emerald Theme)
   ------------------------------------------------------------- */
.faq-section-clean {
    padding: 100px 0 120px;
    position: relative;
}

.faq-pill-center {
    text-align: center;
    margin-bottom: 36px;
}

.faq-split-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: flex-start;
}

.faq-split-left {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px;
    align-self: flex-start;
    text-align: left;
}

.faq-split-title {
    font-family: var(--font-sans);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.faq-split-title .serif-italic {
    display: block;
    font-size: 3.2rem;
    margin-top: 4px;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-split-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 360px;
}

.faq-support-box {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(15, 57, 43, 0.04);
}

.faq-support-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e6f7f0;
    color: #0b2b20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-support-text p {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 2px;
}

.faq-support-text a,
.faq-support-text .faq-login-link-btn {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0b2b20;
    text-decoration: none;
    transition: color 0.2s;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

@media (hover: hover) and (pointer: fine) {
.faq-support-text a:hover,
.faq-support-text .faq-login-link-btn:hover {
    color: #10b981;
}
}

.faq-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 0;
    max-width: 100%;
    text-align: left;
}

.faq-line-item {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(15, 57, 43, 0.03);
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-line-item.active {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.09);
    background: linear-gradient(180deg, #f8fdfa 0%, #ffffff 100%);
}

.faq-line-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.faq-line-item.active .faq-line-question {
    color: #0b2b20;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e6f7f0;
    color: #0b2b20;
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-line-item.active .faq-toggle-icon {
    background: #0b2b20;
    color: #ffffff;
    border-color: #0b2b20;
    transform: rotate(180deg);
}

/* Butter-Smooth Pure CSS Grid Accordion */
.faq-line-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.faq-line-item.active .faq-line-answer {
    grid-template-rows: 1fr;
}

.faq-line-inner {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

.faq-line-content {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.68;
    padding-top: 14px;
    padding-bottom: 2px;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid rgba(15, 57, 43, 0.08);
}

.faq-line-content p {
    margin-bottom: 10px;
    line-height: 1.65;
}

.faq-line-content p:last-child {
    margin-bottom: 0;
}

.faq-bullets-list {
    margin: 10px 0 4px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style-type: disc;
}

.faq-bullets-list li {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
}

.faq-inline-link {
    color: #047857;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.faq-inline-link:hover {
    color: #0b2b20;
}
}

.faq-answer-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.faq-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b2b20;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(11, 43, 32, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
.faq-login-btn:hover {
    background: #123d2f;
    color: #ffffff;
}
}

/* -------------------------------------------------------------
   Mobile App Showcase Section ("HRMS in your pocket")
   ------------------------------------------------------------- */
.mobile-showcase-section {
    position: relative;
    padding: 76px 0 84px;
    overflow: hidden;
    background: #f4faf7;
    border-top: 1px solid rgba(16, 185, 129, 0.12);
    border-bottom: 1px solid rgba(16, 185, 129, 0.12);
}

.mobile-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.15fr auto 200px;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* --- Left Column: Content, Features & Badges --- */
.mobile-showcase-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #15803d;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 9999px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.mobile-showcase-title {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 2.75rem;
    font-weight: 850;
    color: #0c2017;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin: 0 0 14px 0;
}

.mobile-showcase-title .serif-italic {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 3.4rem;
    color: #2e7d32;
    display: block;
    margin-top: -4px;
    letter-spacing: -0.5px;
}

.mobile-showcase-subtitle {
    font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 470px;
    margin: 0 0 20px 0;
}

.mobile-cta-btn-wrap {
    margin-bottom: 0;
}

.mobile-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f2d22;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(15, 45, 34, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.mobile-primary-btn svg {
    transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .mobile-primary-btn:hover {
        background: #174233;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(15, 45, 34, 0.3);
        color: #ffffff;
    }
    .mobile-primary-btn:hover svg {
        transform: translateX(3px);
    }
}

/* 4 Feature Cards Grid */
.mobile-feat-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin: 24px 0;
}

.mobile-feat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 14px 10px;
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.16);
    box-shadow: 0 4px 12px rgba(15, 45, 34, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .mobile-feat-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(15, 45, 34, 0.08);
    }
    .mobile-feat-item:hover .mobile-feat-icon-box {
        background: #bbf7d0;
    }
}

.mobile-feat-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #dcfce7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: background 0.2s ease;
}

.mobile-feat-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
    letter-spacing: -0.2px;
}

.mobile-feat-desc {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.35;
    margin: 0;
}

/* Store Download Badges */
.mobile-store-badges-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.mobile-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #000000;
    color: #ffffff;
    border-radius: 10px;
    padding: 7px 15px 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .mobile-store-btn:hover {
        background: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
        color: #ffffff;
    }
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn-sub {
    font-size: 0.52rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.85;
    font-weight: 600;
    line-height: 1;
}

.store-btn-main {
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.15;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.2px;
}

/* --- Center Column: 3D Angled iPhone Mockup (Fixed, No Hover Zoom) --- */
.mobile-showcase-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.phone-glow-halo {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(220, 252, 231, 0.5) 45%, rgba(244, 250, 247, 0) 72%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.iphone-mockup-frame {
    width: 290px;
    height: 580px;
    background: #0d1712;
    border-radius: 46px;
    padding: 9px;
    box-shadow: 0 24px 50px -10px rgba(11, 43, 32, 0.22), 0 10px 24px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.22), inset 0 0 0 3px #1a2a20;
    position: relative;
    transform: none !important;
    z-index: 1;
}

.iphone-notch-bar {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.iphone-dynamic-island {
    width: 72px;
    height: 18px;
    background: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.iphone-camera-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #111a2e;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.iphone-screen-content {
    background: #f8fafc;
    border-radius: 36px;
    padding: 10px 10px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Phone Status Bar */
.iphone-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: #0f172a;
    padding: 0 6px 4px;
    margin-top: 1px;
}

.iphone-status-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.iphone-battery-icon {
    width: 16px;
    height: 8px;
    border: 1.2px solid currentColor;
    border-radius: 2.5px;
    padding: 1px;
    display: flex;
    align-items: center;
}

.iphone-battery-level {
    width: 75%;
    height: 100%;
    background: currentColor;
    border-radius: 1px;
}

/* User Greeting Header */
.iphone-user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 2px 8px;
}

.iphone-user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.iphone-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    border: 1.2px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-user-avatar svg {
    width: 16px;
    height: 16px;
}

.iphone-user-names {
    display: flex;
    flex-direction: column;
}

.iphone-user-greeting {
    font-size: 0.62rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
}

.iphone-user-fullname {
    font-size: 0.84rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.iphone-notif-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.iphone-notif-btn svg {
    width: 14px;
    height: 14px;
}

.iphone-notif-bubble {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.52rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
}

/* Today's Work Time Card */
.iphone-worktime-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 10px 8px;
    border: 1px solid rgba(15, 57, 43, 0.08);
    box-shadow: 0 3px 12px rgba(11, 43, 32, 0.05);
    text-align: center;
    margin-bottom: 8px;
}

.iphone-worktime-label {
    font-size: 0.66rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 5px;
}

.iphone-worktime-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 1.22rem;
    font-weight: 800;
    color: #0b2b20;
    font-family: monospace, var(--font-sans);
    margin-bottom: 6px;
}

.iphone-time-unit {
    background: #f1f5f9;
    padding: 2px 5px;
    border-radius: 6px;
    min-width: 30px;
    border: 1px solid rgba(15, 57, 43, 0.05);
    font-size: 1.1rem;
}

.iphone-time-sep {
    color: #64748b;
    font-weight: 800;
    font-size: 1rem;
}

.iphone-progress-track {
    height: 3.5px;
    background: #e2e8f0;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 6px;
}

.iphone-progress-fill {
    height: 100%;
    width: 45%;
    background: #22c55e;
    border-radius: 9999px;
}

.iphone-shift-hours {
    font-size: 0.58rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.iphone-checkout-btn {
    width: 100%;
    background: #cb3a31;
    color: #ffffff;
    border: none;
    padding: 8px 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: default;
    box-shadow: 0 3px 10px rgba(203, 58, 49, 0.25);
}

/* 2x2 Feature Quick Cards */
.iphone-grid-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: auto;
}

.iphone-card-btn {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 4px;
    border: 1px solid rgba(15, 57, 43, 0.06);
    box-shadow: 0 2px 6px rgba(11, 43, 32, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: default;
}

.iphone-card-icon {
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-card-icon svg {
    width: 15px;
    height: 15px;
}

.iphone-card-btn span {
    font-size: 0.68rem;
    font-weight: 700;
    color: #334155;
}

/* Phone Bottom Nav Bar */
.iphone-bottom-nav {
    background: #ffffff;
    border-radius: 14px;
    padding: 5px 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid rgba(15, 57, 43, 0.06);
    box-shadow: 0 -2px 8px rgba(11, 43, 32, 0.04);
    margin-top: 6px;
}

.iphone-nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #94a3b8;
    font-size: 0.54rem;
    font-weight: 600;
    cursor: default;
}

.iphone-nav-tab svg {
    width: 15px;
    height: 15px;
}

.iphone-nav-tab.active {
    color: #15803d;
    font-weight: 700;
}

.iphone-home-indicator {
    width: 75px;
    height: 3px;
    background: #0f172a;
    border-radius: 999px;
    margin: 6px auto 0;
    opacity: 0.7;
}

/* --- Right Column: QR Code Card & Hand-drawn Doodles --- */
.mobile-showcase-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.mobile-doodle-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.doodle-sparks {
    display: flex;
    justify-content: center;
    margin-bottom: -2px;
}

.doodle-text {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e4a35;
    line-height: 1.15;
    letter-spacing: 0.2px;
    text-align: center;
}

.doodle-arrow-top {
    margin-top: 2px;
    transform: rotate(-5deg);
}

.mobile-qr-floating-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 14px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.22);
    box-shadow: 0 12px 30px rgba(15, 45, 34, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 175px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .mobile-qr-floating-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(15, 45, 34, 0.12);
    }
}

.qr-code-frame {
    background: #f8fafc;
    border-radius: 12px;
    padding: 6px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-qr-image {
    width: 105px;
    height: 105px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.qr-card-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
    letter-spacing: -0.2px;
}

.qr-card-desc {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.3;
    margin: 0;
}

.mobile-doodle-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.doodle-arrow-bottom {
    margin-bottom: 2px;
    transform: rotate(5deg);
}

/* --- Responsive Breakpoints (Mobile & Tablet Clean Stack) --- */
@media (max-width: 1100px) and (min-width: 961px) {
    .mobile-showcase-container {
        grid-template-columns: 1.1fr auto 175px;
        gap: 20px;
        padding: 0 16px;
    }

    .mobile-showcase-title {
        font-size: 2.4rem;
    }

    .mobile-showcase-title .serif-italic {
        font-size: 2.95rem;
    }

    .mobile-feat-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 960px) {
    .mobile-showcase-section {
        padding: 48px 0 56px;
        overflow: hidden;
    }

    .mobile-showcase-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 16px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-showcase-left {
        display: contents;
    }

    .mobile-header-block {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .mobile-badge-pill {
        margin: 0 auto 12px;
    }

    .mobile-showcase-title {
        font-size: 2.15rem;
        letter-spacing: -0.8px;
        margin: 0 0 10px 0;
        text-align: center;
    }

    .mobile-showcase-title .serif-italic {
        font-size: 2.65rem;
        display: block;
        margin-top: -3px;
    }

    .mobile-showcase-subtitle {
        margin: 0 auto 16px;
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: 440px;
        text-align: center;
    }

    .mobile-cta-btn-wrap {
        margin: 0 auto;
    }

    .mobile-showcase-center {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6px 0;
        margin: 8px auto;
        overflow: visible;
    }

    .iphone-mockup-frame {
        transform: none !important;
        width: 260px;
        height: 520px;
        margin: 0 auto;
    }

    .phone-glow-halo {
        width: 320px;
        height: 320px;
    }

    .mobile-feat-cards-grid {
        order: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 380px;
        margin: 6px auto 0;
        text-align: left;
    }

    .mobile-feat-item {
        background: #ffffff;
        padding: 12px 10px;
        border-radius: 12px;
        border: 1px solid rgba(16, 185, 129, 0.18);
        box-shadow: 0 2px 8px rgba(11, 43, 32, 0.04);
    }

    .mobile-feat-icon-box {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        margin-bottom: 6px;
    }

    .mobile-feat-name {
        font-size: 0.88rem;
        margin-bottom: 2px;
    }

    .mobile-feat-desc {
        font-size: 0.72rem;
    }

    .mobile-store-badges-row {
        order: 4;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin: 8px auto 0;
        width: 100%;
    }

    .mobile-store-btn {
        padding: 6px 14px;
    }

    .mobile-showcase-right {
        order: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
        margin-top: 12px;
    }

    .mobile-doodle-top {
        display: none;
    }

    .mobile-qr-floating-card {
        max-width: 190px;
        padding: 16px 14px;
    }

    .mobile-doodle-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-doodle-bottom .doodle-arrow-bottom {
        display: none;
    }

    .mobile-doodle-bottom .doodle-text {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .mobile-showcase-title {
        font-size: 1.8rem;
    }

    .mobile-showcase-title .serif-italic {
        font-size: 2.25rem;
    }

    .mobile-showcase-subtitle {
        font-size: 0.88rem;
    }

    .iphone-mockup-frame {
        width: 245px;
        height: 490px;
        transform: none !important;
    }

    .mobile-feat-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 320px;
    }

    .mobile-feat-item {
        padding: 10px 8px;
    }

    .mobile-feat-icon-box {
        width: 32px;
        height: 32px;
    }

    .mobile-feat-icon-box svg {
        width: 17px;
        height: 17px;
    }

    .mobile-feat-name {
        font-size: 0.84rem;
    }

    .mobile-feat-desc {
        font-size: 0.68rem;
    }

    .mobile-store-badges-row {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .mobile-store-btn {
        padding: 6px 10px;
        min-width: 125px;
        max-width: 150px;
    }

    .mobile-store-btn svg {
        width: 18px;
        height: 18px;
    }

    .store-btn-sub {
        font-size: 0.5rem;
    }

    .store-btn-main {
        font-size: 0.8rem;
    }
}

/* -------------------------------------------------------------
   Features Bento Section
   ------------------------------------------------------------- */
.features-bento-section {
    padding: 90px 0 80px;
    background: transparent;
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.features-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -1.4px;
    margin-bottom: 16px;
}

.features-title .serif-italic {
    font-size: 3.6rem;
    display: inline-block;
}

.features-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

/* Bento Grid */
.bento-grid-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-row {
    display: grid;
    gap: 24px;
}

.bento-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bento-row-2 {
    grid-template-columns: 1fr 1.55fr;
}

/* Base Bento Card */
.bento-card {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.09);
    border-radius: 24px;
    padding: 32px 28px 24px;
    box-shadow: 0 16px 40px rgba(15, 57, 43, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bento-card-info {
    margin-bottom: 24px;
}

.bento-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
}

.bento-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

/* Mockup Areas */
.bento-mock-area {
    position: relative;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

/* Mini Employee Card */
.emp-mini-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    margin-bottom: 10px;
}

.emp-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.emp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emp-avatar-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emp-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.emp-role {
    font-size: 0.72rem;
    color: #64748b;
}

.emp-dots {
    color: #64748b;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.emp-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.emp-label {
    display: block;
    font-size: 0.68rem;
    color: #64748b;
    margin-bottom: 2px;
    font-weight: 500;
}

.emp-val {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #1e293b;
}

.emp-status-pill {
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
}

.emp-status-pill.pill-absent {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
}

/* Floating Badges */
.bento-floating-pill {
    position: absolute;
    background: #0b2b20;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 20px rgba(11, 43, 32, 0.25);
    z-index: 5;
}

.pill-emp-count {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.pill-processing {
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
}

.pill-arrow-down {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #0b2b20;
}

.pill-onboarding {
    top: 130px;
    left: 45px;
}

/* Card 2: Payroll Network */
.payroll-widget-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.payroll-widget-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.payroll-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

.payroll-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.payroll-avatar-stack {
    display: flex;
}

.stack-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    margin-left: -6px;
}

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

.payroll-bar-wrap {
    height: 6px;
    background: #f1f5f9;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 6px;
}

.payroll-bar-fill {
    height: 100%;
    background: #10b981;
    border-radius: 9999px;
}

.payroll-bar-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
}

/* Tree Nodes */
.payroll-tree-network {
    position: relative;
    margin-top: 26px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tree-line-v {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: #e2e8f0;
}

.tree-line-h {
    position: absolute;
    top: 20px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #e2e8f0;
}

.tree-nodes {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

.tree-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tree-node::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 16px;
    background: #e2e8f0;
}

.node-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.node-check {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #065f46;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
    font-weight: 800;
}

/* Card 3: Performance Management */
.perf-stats-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    margin-top: 28px;
}

.perf-tab-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.perf-tab {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    color: #64748b;
    background: #f8fafc;
    cursor: pointer;
}

.perf-tab.active {
    background: #0f172a;
    color: #ffffff;
}

.perf-score-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}

.perf-big-percent {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.8px;
    line-height: 1;
}

.perf-compare-pill {
    font-size: 0.7rem;
    font-weight: 700;
    color: #047857;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dot-green {
    color: #065f46;
}

.dot-yellow {
    color: #f59e0b;
}

.dot-purple {
    color: #8b5cf6;
}

.perf-segmented-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 9999px;
    display: flex;
    overflow: hidden;
    gap: 2px;
    margin-bottom: 12px;
}

.perf-seg-fill.seg-on-time {
    background: #10b981;
}

.perf-seg-fill.seg-sick {
    background: #f59e0b;
}

.perf-seg-fill.seg-off {
    background: #8b5cf6;
}

.perf-legend-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 600;
}

.legend-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 3px;
}

.legend-dot.dot-green {
    background: #10b981;
}

.legend-dot.dot-yellow {
    background: #f59e0b;
}

.legend-dot.dot-purple {
    background: #8b5cf6;
}

/* Card 4: Onboarding Checklist */
.onboard-checklist-wrap {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.checklist-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checklist-text {
    flex: 1;
}

.checklist-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.checklist-status {
    font-size: 0.68rem;
    font-weight: 600;
}

.checklist-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 600;
}

/* Card 5: Smart Time Tracking (Wide) */
.tracking-flex-wrap {
    display: grid;
    grid-template-columns: 240px 40px 1fr;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.tracking-subcard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.clock-times-row {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.clock-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
}

.tracking-mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f8fafc;
}

.tracking-mini-row:last-child {
    border-bottom: none;
}

.emp-name-sm {
    font-size: 0.72rem;
    font-weight: 600;
    color: #334155;
}

/* Connector */
.tracking-connector-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.pill-tracking {
    position: relative;
    white-space: nowrap;
    z-index: 3;
}

.tracking-arrow-line {
    position: absolute;
    right: -20px;
    top: 50%;
    width: 25px;
    height: 2px;
    background: #10b981;
}

.tracking-arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #10b981;
}

/* Chart card right */
.tracking-chart-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.chart-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.chart-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.clock-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.chart-main-stat {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
}

.chart-filter-pills {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    background: #f8fafc;
    padding: 3px;
    border-radius: 8px;
    width: fit-content;
}

.time-filter-btn {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    color: #64748b;
    cursor: pointer;
}

.time-filter-btn.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chart-svg-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    text-align: right;
}

.chart-canvas-relative {
    position: relative;
    flex: 1;
}

.chart-svg-elem {
    width: 100%;
    height: 110px;
    overflow: visible;
}

.chart-hover-tooltip {
    position: absolute;
    background: #0f172a;
    color: #ffffff;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transform: translate(-50%, -100%);
    white-space: nowrap;
}

.chart-hover-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #0f172a;
}

/* Bottom Stats Row */
.features-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(15, 57, 43, 0.12);
    text-align: center;
}

.feature-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-number .stat-suffix {
    font-weight: 700;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* =============================================================
   MASTER RESPONSIVE STYLES (STRICT MOBILE OVERRIDES)
   Placed at the very end of stylesheet so NO desktop rule can override
   ============================================================= */

@media (max-width: 1024px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }

    .bento-row-3,
    .bento-row-2 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .tracking-flex-wrap {
        grid-template-columns: 1fr !important;
    }

    .tracking-connector-wrap {
        display: none !important;
    }

    .features-stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .process-card-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .process-mock-wrap {
        min-height: auto !important;
        width: 100% !important;
        max-width: 480px !important;
        margin: 0 auto !important;
    }

    .company-form-card {
        max-width: 100% !important;
        width: 100% !important;
    }

    .floating-card-tags,
    .floating-card-slider {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 16px !important;
        right: auto !important;
        bottom: auto !important;
    }

    .faq-split-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        width: 100% !important;
    }

    .faq-split-left {
        position: static !important;
        max-width: 100% !important;
        text-align: center !important;
        top: auto !important;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: clip !important;
        width: 100% !important;
        position: relative !important;
    }

    section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .hero {
        padding: 85px 0 30px !important;
    }

    .hero-title {
        font-size: 2.15rem !important;
    }

    .hero-title .serif-italic {
        font-size: 2.45rem !important;
    }

    .process-title {
        font-size: 2.1rem !important;
    }

    .process-title .title-line-1 {
        white-space: normal !important;
        word-break: normal !important;
        display: block !important;
    }

    .process-title .serif-italic {
        font-size: 2.45rem !important;
    }

    .process-card-grid {
        grid-template-columns: 1fr !important;
        padding: 24px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .process-mock-wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .company-form-card {
        padding: 18px 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .floating-card-tags {
        padding: 14px 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .tags-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .tag-chip {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
    }

    .floating-card-slider {
        padding: 14px 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .trusted-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .marquee-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .testi-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .features-stats-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px 16px !important;
        margin-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    .phone-frame {
        width: 100% !important;
        max-width: 310px !important;
        height: 520px !important;
        margin-bottom: -110px !important;
    }

    .mobile-showcase-section {
        position: relative !important;
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }

    .mobile-corner-qr {
        display: none !important;
    }
}

@media (max-width: 640px) {

    /* 1. Navbar Fixed & Full Persistence */
    .feat-nav-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding-top: 8px !important;
        z-index: 1000 !important;
    }

    .feat-nav-wrapper .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .navbar,
    .feat-navbar {
        width: 100% !important;
        padding: 6px 12px !important;
    }

    .brand-logo-img,
    .feat-nav-brand-logo {
        height: 22px !important;
    }

    .feat-nav-actions {
        gap: 6px !important;
    }

    .feat-btn-pill {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }

    .feat-nav-wrapper.scrolled {
        padding-top: 0 !important;
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(15, 57, 43, 0.08) !important;
        box-shadow: 0 4px 20px rgba(15, 57, 43, 0.06) !important;
    }

    .feat-nav-wrapper.scrolled .container {
        padding: 0 12px !important;
    }

    /* Hero */
    .hero {
        padding: 85px 0 24px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-title {
        font-size: 2rem !important;
        letter-spacing: -0.5px !important;
    }

    .hero-title .serif-italic {
        font-size: 2.3rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 8px !important;
        margin-bottom: 24px !important;
    }

    .hero-ctas {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto 32px !important;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 18px !important;
        font-size: 0.92rem !important;
    }

    /* Mockup */
    .mockup-outer-wrapper {
        padding: 6px !important;
        border-radius: 20px !important;
    }

    .mockup-container {
        width: 100% !important;
        border-radius: 14px !important;
    }

    .mockup-window-header {
        padding: 8px 10px !important;
    }

    .mockup-window-status {
        display: none !important;
    }

    .mockup-window-address {
        max-width: 150px !important;
        font-size: 0.7rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    /* Features */
    .features-title {
        font-size: 2rem !important;
    }

    .features-title .serif-italic {
        font-size: 2.3rem !important;
    }

    /* Bento cards mobile fit */
    .bento-card {
        padding: 22px 14px 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .bento-mock-area {
        padding: 12px 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Process */
    .process-card-grid {
        padding: 20px 12px !important;
    }

    .process-step-title {
        font-size: 1.4rem !important;
    }

    .process-title {
        font-size: 1.85rem !important;
    }

    .process-title .serif-italic {
        font-size: 2.15rem !important;
    }

    .process-cta-link {
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }

    /* Testimonials */

    .testi-card {
        padding: 24px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Pricing */

    .price-main-num {
        font-size: 2.2rem !important;
    }

    /* FAQ */
    .faq-section-clean {
        padding: 50px 0 60px !important;
    }

    .faq-split-title {
        font-size: 2rem !important;
    }

    .faq-split-title .serif-italic {
        font-size: 2.3rem !important;
    }

    .faq-support-box {
        margin: 16px auto 0 !important;
        max-width: 300px !important;
    }

    .faq-line-item {
        padding: 16px 14px !important;
    }

    /* Mobile App Showcase */
    .mobile-showcase-section {
        padding: 50px 0 0 !important;
        overflow: hidden !important;
    }

    .mobile-mockup-wrapper {
        margin-bottom: 0 !important;
    }

    .phone-frame {
        width: 100% !important;
        max-width: 310px !important;
        height: 520px !important;
        margin-bottom: -120px !important;
    }

    .mobile-corner-qr {
        display: none !important;
    }

    .mobile-showcase-title {
        font-size: 2rem !important;
    }

    .mobile-showcase-title .serif-italic {
        font-size: 2.3rem !important;
    }

}

@media (max-width: 400px) {

    .brand-logo-img {
        height: 18px !important;
    }
}

/* The home page's bar draws its links without padding. The current-page pill
   (partials/polish.css) brings its own and gives the space back, so the links
   beside it do not move. */
.feat-nav-links .feat-nav-link-btn[aria-current] {
    padding: 6px 14px;
    margin: -6px -14px;
    border-radius: 9999px;
}

