/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0b101e;
    --secondary-bg: #0b101e;
    --accent-blue: #56b8ee;
    --glow-blue: #4e71e6;
    --cyan-text: #56b8ee;
    --light-blue: #99dbff;
    --text-primary: #ffffff;
    --text-secondary: #cfd6e6;
    --text-muted: #7a8aa8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.page {
    position: relative;
    overflow-x: hidden;
    z-index: 0;
}

.page::before {
    content: none;
}

.page-bg {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: 100vw;
    min-width: 1732px;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 0 18px;
    background: radial-gradient(ellipse at top, rgba(0, 91, 223, 0.35), rgba(11, 16, 30, 0.9) 65%, rgba(11, 16, 30, 0.2) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    height: 44px;
    width: auto;
}

.logo-text {
    height: 30px;
    width: auto;
}

/* Nav Tabs - Folder Tab Style */
.nav-tabs {
    justify-self: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    position: relative;
}

.nav-tab {
    position: relative;
    padding: 14px 28px 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: var(--text-muted);
    background: linear-gradient(180deg, rgba(6, 36, 123, 0.4) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(11, 16, 30, 0.6) 100%);
    border: 1px solid rgba(35, 114, 193, 0.4);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    margin-bottom: -1px;
    transition: all 0.25s ease;
    z-index: 1;
}

.nav-tab:hover {
    color: var(--light-blue);
    background: linear-gradient(180deg, rgba(6, 36, 123, 0.6) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(11, 16, 30, 0.7) 100%);
}

.nav-tab.active {
    background: linear-gradient(180deg, #06247b 0%, #000 51.923%, var(--primary-bg) 100%);
    border-color: #2372c1;
    color: #7DD3FC;
    z-index: 2;
    padding-bottom: 14px;
    box-shadow: 
        0 -4px 20px rgba(0, 225, 255, 0.3),
        inset 0 1px 0 rgba(86, 184, 238, 0.2);
}

.nav-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--glow-blue));
    border-radius: 12px 12px 0 0;
}

/* Bottom bar connecting the tabs */
.nav-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    right: -8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2372c1, #2372c1, transparent);
    z-index: 0;
}
.contact-btn {
    position: relative;
    border: 0 solid #2C8FF1;
    padding: 7px 20px;
    border-radius: 54px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, #06247B 0%, #000 51.92%, #0B101E 100%);
    box-shadow: 0 4px 64.1px 0 #00E1FF;
    color: #7DD3FC;
    
}

.contact-btn-text {
    background: linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 54px;
    z-index: -1;
}

.contact-btn svg {
    position: relative;
    z-index: 1;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    box-shadow: 0 4px 80px 0 #00E1FF;
    transform: translateY(-1px);
}

.contact-btn:hover svg {
    transform: rotate(0deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: transparent;
    opacity: 0.6;
    width: 158px;
    height: 151px;
}

.shape::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--shape-border-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.shape-top-l-t { top: 20%; left: 10%; }
.shape-top-l-b {
    top: 30%;
    left: 15%;
}

.shape-top-l-t,
.shape-top-l-b {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: top, left, opacity;
}

.shape-top-l-t {
    animation-name: shapeTopLeftFrontSwap;
    animation-delay: 0s;
}

.shape-top-l-b {
    animation-name: shapeTopLeftBackSwap;
    animation-delay: 0s;
}

@keyframes shapeTopLeftFrontSwap {
    0%,
    25% {
        opacity: 1;
        top: 20%;
        left: 10%;
    }
    55% {
        opacity: 1;
        top: 30%;
        left: 15%;
    }
    65% {
        opacity: 1;
        top: 30%;
        left: 15%;
    }
    90% {
        opacity: 0;
        top: 30%;
        left: 15%;
    }
    95% {
        opacity: 0;
        top: 20%;
        left: 10%;
    }
    100% {
        opacity: 1;
        top: 20%;
        left: 10%;
    }
}

@keyframes shapeTopLeftBackSwap {
    0% {
        opacity: 1;
        top: 30%;
        left: 15%;
    }
    25% {
        opacity: 1;
        top: 30%;
        left: 15%;
    }
    55% {
        opacity: 0;
        top: 30%;
        left: 15%;
    }
    65% {
        opacity: 1;
        top: 30%;
        left: 15%;
    }
    100% {
        opacity: 1;
        top: 30%;
        left: 15%;
    }
}


.shape-tr { top: 7%; right: 12%; }
.shape-tr-b { top: 17%; right: 18%; }

.shape-tr,
.shape-tr-b {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: top, right, opacity;
}

.shape-tr {
    animation-name: shapeTopRightMoveSwap;
    animation-delay: 1s;
}

.shape-tr-b {
    animation-name: shapeTopRightFadeSwap;
    animation-delay: 1s;
}

@keyframes shapeTopRightFadeSwap {
    0%,
    25% {
        opacity: 1;
        top: 7%;
        right: 12%;
    }
    55% {
        opacity: 0;
        top: 7%;
        right: 12%;
    }
    65% {
        opacity: 0;
        top: 7%;
        right: 12%;
    }
    100% {
        opacity: 1;
        top: 7%;
        right: 12%;
    }
}

@keyframes shapeTopRightMoveSwap {
    0%,
    25% {
        opacity: 1;
        top: 17%;
        right: 18%;
    }
    55% {
        opacity: 1;
        top: 7%;
        right: 12%;
    }
    65% {
        opacity: 1;
        top: 7%;
        right: 12%;
    }
    90% {
        opacity: 0;
        top: 7%;
        right: 12%;
    }
    95% {
        opacity: 0;
        top: 17%;
        right: 18%;
    }
    100% {
        opacity: 1;
        top: 17%;
        right: 18%;
    }
}

.shape-bl { top: 70%; left: 3%; }
.shape-bl-b { top: 80%; left: 8%; }

.shape-bl,
.shape-bl-b {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: top, left, opacity;
}

.shape-bl {
    animation-name: shapeBottomLeftFadeSwap;
    animation-delay: 1.5s;
}

.shape-bl-b {
    animation-name: shapeBottomLeftMoveSwap;
    animation-delay: 1.5s;
}

@keyframes shapeBottomLeftFadeSwap {
    0%,
    25% {
        opacity: 1;
        top: 70%;
        left: 3%;
    }
    55% {
        opacity: 0;
        top: 70%;
        left: 3%;
    }
    65% {
        opacity: 0;
        top: 70%;
        left: 3%;
    }
    100% {
        opacity: 1;
        top: 70%;
        left: 3%;
    }
}

@keyframes shapeBottomLeftMoveSwap {
    0%,
    25% {
        opacity: 1;
        top: 80%;
        left: 8%;
    }
    55% {
        opacity: 1;
        top: 70%;
        left: 3%;
    }
    65% {
        opacity: 1;
        top: 70%;
        left: 3%;
    }
    90% {
        opacity: 0;
        top: 70%;
        left: 3%;
    }
    95% {
        opacity: 0;
        top: 80%;
        left: 8%;
    }
    100% {
        opacity: 1;
        top: 80%;
        left: 8%;
    }
}

.shape-br { bottom: 30%; right: 10%; }
.shape-br-b { bottom: 18%; right: 5%; }

.shape-br,
.shape-br-b {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: bottom, right, opacity;
}

.shape-br {
    animation-name: shapeBottomRightMoveSwap;
    animation-delay: 1.9s;
}

.shape-br-b {
    animation-name: shapeBottomRightFadeSwap;
    animation-delay: 1.9s;
}

@keyframes shapeBottomRightFadeSwap {
    0%,
    25% {
        opacity: 1;
        bottom: 18%;
        right: 5%;
    }
    55% {
        opacity: 0;
        bottom: 18%;
        right: 5%;
    }
    65% {
        opacity: 0;
        bottom: 18%;
        right: 5%;
    }
    100% {
        opacity: 1;
        bottom: 18%;
        right: 5%;
    }
}

@keyframes shapeBottomRightMoveSwap {
    0%,
    25% {
        opacity: 1;
        bottom: 30%;
        right: 10%;
    }
    55% {
        opacity: 1;
        bottom: 18%;
        right: 5%;
    }
    65% {
        opacity: 1;
        bottom: 18%;
        right: 5%;
    }
    90% {
        opacity: 0;
        bottom: 18%;
        right: 5%;
    }
    95% {
        opacity: 0;
        bottom: 30%;
        right: 10%;
    }
    100% {
        opacity: 1;
        bottom: 30%;
        right: 10%;
    }
}

.recruiting-shape-t {
    top: 10%;
    right: 10%;
    --shape-border-gradient: linear-gradient(
        135deg,
        rgba(43, 179, 255, 1) 0%,
        rgba(43, 179, 255, 1) 45%,
        rgba(35, 114, 193, 0) 70%
    );
}

.recruiting-shape-b {
    top: 22%;
    right: 5%;
    --shape-border-gradient: linear-gradient(
        135deg,
        rgba(43, 179, 255, 1) 0%,
        rgba(43, 179, 255, 1) 45%,
        rgba(35, 114, 193, 0) 70%
    );
}

.recruiting-shape-t,
.recruiting-shape-b {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: top, right, opacity;
}

.recruiting-shape-t {
    animation-name: recruitingShapeMoveSwap;
    animation-delay: 2.2s;
}

.recruiting-shape-b {
    animation-name: recruitingShapeFadeSwap;
    animation-delay: 2.2s;
}

@keyframes recruitingShapeFadeSwap {
    0%,
    25% {
        opacity: 1;
        top: 22%;
        right: 5%;
    }
    55% {
        opacity: 0;
        top: 22%;
        right: 5%;
    }
    65% {
        opacity: 0;
        top: 22%;
        right: 5%;
    }
    100% {
        opacity: 1;
        top: 22%;
        right: 5%;
    }
}

@keyframes recruitingShapeMoveSwap {
    0%,
    25% {
        opacity: 1;
        top: 10%;
        right: 10%;
    }
    55% {
        opacity: 1;
        top: 22%;
        right: 5%;
    }
    65% {
        opacity: 1;
        top: 22%;
        right: 5%;
    }
    90% {
        opacity: 0;
        top: 22%;
        right: 5%;
    }
    95% {
        opacity: 0;
        top: 10%;
        right: 10%;
    }
    100% {
        opacity: 1;
        top: 10%;
        right: 10%;
    }
}

.time-bg-shapes,
.scheduling-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.time-wrapper,
.scheduling-wrapper {
    position: relative;
    z-index: 1;
}

.time-shape-1 { top: 10%; left: 0%; }
.time-shape-2 { top: 20%; left: -6%; }
.time-shape-3 { top: -5%; right: 30%; }
.time-shape-4 { top: 5%; right: 36%; }

.scheduling-shape-1 { bottom: -20%; right: 2%; }
.scheduling-shape-2 { bottom: -31%; right: -3%; }

.time-shape-1,
.time-shape-2,
.time-shape-3,
.time-shape-4 {
    --shape-border-gradient: linear-gradient(
        45deg,
        rgba(35, 114, 193, 0) 0%,
        rgba(43, 179, 255, 0.2) 60%,
        rgba(43, 179, 255, 1) 85%,
        rgba(43, 179, 255, 1) 100%
    );
}

.time-shape-1,
.time-shape-2,
.time-shape-3,
.time-shape-4 {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    will-change: top, left, right, opacity;
}

.time-shape-1 {
    animation-name: timeShapeLeftMoveSwap;
    animation-delay: 2.5s;
}

.time-shape-2 {
    animation-name: timeShapeLeftFadeSwap;
    animation-delay: 2.5s;
}

.time-shape-3 {
    animation-name: timeShapeRightMoveSwap;
    animation-delay: 3.1s;
}

.time-shape-4 {
    animation-name: timeShapeRightFadeSwap;
    animation-delay: 3.1s;
}

@keyframes timeShapeLeftFadeSwap {
    0%,
    25% {
        opacity: 1;
        top: 20%;
        left: -6%;
    }
    55% {
        opacity: 0;
        top: 20%;
        left: -6%;
    }
    65% {
        opacity: 0;
        top: 20%;
        left: -6%;
    }
    100% {
        opacity: 1;
        top: 20%;
        left: -6%;
    }
}

@keyframes timeShapeLeftMoveSwap {
    0%,
    25% {
        opacity: 1;
        top: 10%;
        left: 0%;
    }
    55% {
        opacity: 1;
        top: 20%;
        left: -6%;
    }
    65% {
        opacity: 1;
        top: 20%;
        left: -6%;
    }
    90% {
        opacity: 0;
        top: 20%;
        left: -6%;
    }
    95% {
        opacity: 0;
        top: 10%;
        left: 0%;
    }
    100% {
        opacity: 1;
        top: 10%;
        left: 0%;
    }
}

@keyframes timeShapeRightFadeSwap {
    0%,
    25% {
        opacity: 1;
        top: 5%;
        right: 36%;
    }
    55% {
        opacity: 0;
        top: 5%;
        right: 36%;
    }
    65% {
        opacity: 0;
        top: 5%;
        right: 36%;
    }
    100% {
        opacity: 1;
        top: 5%;
        right: 36%;
    }
}

@keyframes timeShapeRightMoveSwap {
    0%,
    25% {
        opacity: 1;
        top: -5%;
        right: 30%;
    }
    55% {
        opacity: 1;
        top: 5%;
        right: 36%;
    }
    65% {
        opacity: 1;
        top: 5%;
        right: 36%;
    }
    90% {
        opacity: 0;
        top: 5%;
        right: 36%;
    }
    95% {
        opacity: 0;
        top: -5%;
        right: 30%;
    }
    100% {
        opacity: 1;
        top: -5%;
        right: 30%;
    }
}

.scheduling-shape-1 {
    --shape-border-gradient: linear-gradient(
        315deg,
        rgba(35, 114, 193, 0) 0%,
        rgba(43, 179, 255, 1) 75%,
        rgba(43, 179, 255, 1) 100%
    );
}

.scheduling-shape-2 {
    --shape-border-gradient: linear-gradient(
        315deg,
        rgba(35, 114, 193, 0) 0%,
        rgba(43, 179, 255, 1) 75%,
        rgba(43, 179, 255, 1) 100%
    );
}

.shape-top-l-t,
.shape-top-l-b,
.shape-br,
.shape-br-b {
    --shape-border-gradient: linear-gradient(
        135deg,
        rgba(43, 179, 255, 1) 0%,
        rgba(43, 179, 255, 1) 45%,
        rgba(35, 114, 193, 0) 70%
    );
}

.shape-tr,
.shape-tr-b {
    --shape-border-gradient: linear-gradient(
        45deg,
        rgba(43, 179, 255, 1) 0%,
        rgba(43, 179, 255, 1) 45%,
        rgba(35, 114, 193, 0) 70%
    );
}

.shape-bl,
.shape-bl-b {
    --shape-border-gradient: linear-gradient(
        315deg,
        rgba(43, 179, 255, 1) 0%,
        rgba(43, 179, 255, 1) 45%,
        rgba(35, 114, 193, 0) 70%
    );
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 29.5px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;

    color: #96DFFF;
    text-align: center;
    text-shadow: 0 0.824px 12.111px #0076FF;
    font-size: 29.513px;
    font-style: normal;
    font-weight: 400;
}

.hero-title {
    font-size: 91px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 26px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 831px;
    margin: 0 auto 36px;
    background: linear-gradient(90deg, #56B8EE 0%, #4E71E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description strong {
    font-weight: 700;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-blue), var(--glow-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-icons {
    display: flex;
    /* gap: 2px; */
    justify-content: center;
}

.hero-icon {
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
    filter: drop-shadow(0 0 20px rgba(91, 164, 230, 0.35));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-icon::after,
.hero-icon::before {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.hero-icon::after {
    color: #1976D2;
    z-index: 0;
}

.hero-icon::before {
    color: var(--text-primary);
    z-index: 1;
    -webkit-mask-image: var(--icon-mask);
    mask-image: var(--icon-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.hero-icon:hover::after,
.hero-icon:hover::before {
    opacity: 1;
}

.request-demo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0px 30px;
    border: 2px solid transparent;
    border-radius: 64px;
    font-size: 44.5px;
    font-weight: 700;
    height: 74px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 48px;
    color: #7DD3FC;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%),
        linear-gradient(180deg, #06247B 0%, #000 54.81%, #0B101E 100%),
        linear-gradient(180deg, #2C8FF1 0%, rgba(44, 143, 241, 0) 92%);
    background-origin: padding-box, padding-box, border-box;
    background-clip: padding-box, padding-box, border-box;
    box-shadow: 
        0 0 30px rgba(91, 164, 230, 0.4),
        0 0 50px rgba(91, 164, 230, 0.2);
}

.request-demo-text {
    background: linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.request-demo-btn svg {
    position: relative;
    z-index: 2;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.request-demo-btn:hover {
    border-color: #2C8FF1;
    box-shadow: 
        0 0 40px rgba(91, 164, 230, 0.6),
        0 0 70px rgba(91, 164, 230, 0.3);
    transform: translateY(-2px);
}

.request-demo-btn:hover svg {
    transform: rotate(0deg);
}


/* Feature Sections */
.feature-section {
    padding: 120px 80px;
    position: relative;
    z-index: 1;
}

.feature-wrapper,
.scheduling-wrapper,
.benefits-wrapper,
.tasks-wrapper,
.services-wrapper,
.payroll-wrapper,
.benefits-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

/* Feature Badge */
.feature-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 28px 60px;
    border: 1px solid #2372c1;
    border-radius: 83px;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 32px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, #06247B 0%, #000 51.923%, #0B101E 100%);
    color: #7DD3FC;
}

.feature-badge span {
    background: linear-gradient(90deg, #56B8EE 0%, #4E71E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-badge.right-badge {
    float: right;
}

/* Feature Text - CYAN COLOR */
.feature-text p,
.feature-text-wide p {
    font-size: 24px;
    font-weight: 500;
    line-height: 2.02;
    color: var(--cyan-text);
    max-width: 500px;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

.text-blurb {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-blurb.text-blurb-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity 1.1s ease, transform 1.1s ease;
}

.slide-in-right.slide-in-right-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right-far {
    transform: translateX(40px);
    transition-duration: 1.1s;
}

.animate-ready .section-icon {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.animate-in .section-icon {
    opacity: 1;
    transition-delay: 0.18s;
}

.animate-in .scheduling-section .section-icon,
.scheduling-section.animate-in .section-icon {
    transition-delay: 0.4s;
}

.feature-text-wide p {
    max-width: 600px;
    margin-bottom: 60px;
}

.feature-text.right-text {
    text-align: right;
    margin-left: auto;
}

.feature-text.right-text p {
    margin-left: auto;
}

/* Screenshot Container */
.screenshot-container {
    position: relative;
    margin-top: 40px;
}

.screenshot-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(91, 164, 230, 0.5) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.recruiting-glow {
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(91, 164, 230, 0.5) 0%, transparent 70%);
    filter: blur(80px);
}

.screenshot-frame {
    background: var(--text-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--accent-blue);
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 10;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ui-card {
    background: var(--text-primary);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.recruiting-ui-card {
    position: absolute;
    left: -140px;
    bottom: 30px;
    width: 340px;
    z-index: 12;
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-text .role {
    font-size: 12px;
    color: #6b7280;
}

.next-employee-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #0b1220;
    background: linear-gradient(90deg, #5BA4E6, #7DD3FC);
    position: relative;
    text-transform: none;
    letter-spacing: 0;
}

.next-employee-pill::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(91, 164, 230, 0.45) 0%, transparent 65%);
    z-index: -1;
}

.next-employee-pill img {
    width: 14px;
    height: 14px;
}

.stage-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.stage-item img {
    width: 14px;
    height: 14px;
}

.briefcase-float {
    display: none;
}


/* Recruiting Section - Two Column Layout */
.recruiting-section {
    overflow: hidden;
    position: relative;
}

.recruiting-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.recruiting-wrapper {
    width: 100%;
    max-width: none;
    padding: 0 80px 0 0;
}

.recruiting-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.recruiting-left {
    flex: 0 0 1044px;
    max-width: 1044px;
    position: relative;
    min-width: 0;
    margin-left: -240px;
}

.recruiting-badge {
    position: absolute;
    top: -45px;
    left: 367px;
    right: auto;
    transform: none;
    z-index: 6;
    width: 321px;
    height: 166px;
    padding: 0;
    display: flex;
    align-items: start;
}

.recruiting-badge span {
    font-size: 25.8px;
    background: linear-gradient(88.66deg, #2ab3ff 66.39%, var(--glow-blue) 98.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
}

.recruiting-screenshot-wrapper {
    position: relative;
    margin-top: 50px;
    width: 1044px;
}

.recruiting-floating-icon {
    position: absolute;
    right: -115px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    z-index: 12;
}

.recruiting-floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 122, 255, 0.55));
}

.recruiting-screenshot-img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 986px;
    height: auto;
    border-radius: 38px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(91, 164, 230, 0.3);
    display: block;
    border: 3px solid var(--linear-2-paints, #2C8FF1);
}

.recruiting-right {
    flex: 0 0 360px;
    max-width: 452px;
    /* padding-right: 80px; */
    /* padding-top: 10px; */
}

.recruiting-text {
    font-size: 40px;
    font-weight: 400;
    line-height: 120%;
    background: linear-gradient(90deg, #56B8EE 0%, #4E71E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 452px;
}

.app-header-bar {
    background: linear-gradient(135deg, #1a365d, #2d4a7c);
    padding: 20px 30px;
    border-radius: 16px 16px 0 0;
}

.app-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.app-subtitle {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.app-toolbar {
    padding: 15px 30px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.filter-btn {
    font-size: 13px;
    color: #6b7280;
}

.search-icon {
    font-size: 16px;
}

.data-table {
    padding: 0 20px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 80px 1fr 2fr 1fr;
    gap: 15px;
    padding: 15px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e7eb;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 80px 1fr 2fr 1fr;
    gap: 15px;
    padding: 15px 10px;
    font-size: 13px;
    color: #374151;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.table-row small {
    display: block;
    font-size: 11px;
    color: #9ca3af;
}

.job-title {
    color: #2563eb;
    font-weight: 500;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.status-badge.active { background: #dcfce7; color: #166534; }
.status-badge.draft { background: #fef3c7; color: #92400e; }
.status-badge.paused { background: #e5e7eb; color: #4b5563; }
.status-badge.closed { background: #fee2e2; color: #991b1b; }

.table-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    font-size: 13px;
    color: #6b7280;
}

.table-pagination span {
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.table-pagination span.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* Onboarding Screenshot */
.feature-content-area.reverse {
    display: flex;
    flex-direction: column;
}

/* Onboarding Section - Mirror of Recruiting (Text Left, Screenshot Right) */
.onboarding-section {
    overflow: hidden;
}

.onboarding-wrapper {
    width: 100%;
    max-width: none;
}

.onboarding-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    justify-content: space-between;
}

.onboarding-left {
    flex: 0 0 540px;
    max-width: 540px;
    padding-left: 40px;
}

.onboarding-text {
    font-size: 40px;
    font-weight: 400;
    max-width: 510px;
    line-height: 1.2;
    background: linear-gradient(90deg, #56B8EE 0%, #4E71E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.onboarding-ui-card {
    margin-top: 32px;
    max-width: 360px;
}

.ui-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ui-card-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.task-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 164, 230, 0.2), rgba(125, 211, 252, 0.35));
    border: 1px solid rgba(91, 164, 230, 0.3);
}

.task-icon img {
    width: 18px;
    height: 18px;
}

.task-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.task-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.onboarding-right {
    flex: 1;
    position: relative;
    min-width: 0;
    margin-right: -215px;
    display: flex;
    flex-direction: column;
    max-width: 726px;
}

.onboarding-screenshot-wrapper {
    position: relative;
    margin-top: 50px;
}

.onboarding-floating-icon {
    position: absolute;
    left: -170px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    z-index: 12;
}

.onboarding-floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 122, 255, 0.55));
}

.onboarding-badge {
    position: absolute;
    top: -40px;
    left: 60%;
    right: auto;
    width: 350px;
    height: 165px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
}

.onboarding-badge span {
   text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    background: linear-gradient(90deg, #2AB3FF 66.39%, #4E71E6 98.99%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.onboarding-screenshot-img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 540px;
    width: auto;
    max-width: none;
    border-radius: 45px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(91, 164, 230, 0.3);
    margin-left: auto;
    display: block;
}

.onboarding-glow {
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(91, 164, 230, 0.5) 0%, transparent 70%);
    filter: blur(80px);
}

.folder-float {
    display: none;
}

.hiring-ui-stack {
    width: 540px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 680px;
    perspective: 900px;
    transform-style: preserve-3d;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 8%,
        #000 20%,
        #000 80%,
        rgba(0, 0, 0, 0.25) 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 8%,
        #000 20%,
        #000 80%,
        rgba(0, 0, 0, 0.25) 92%,
        transparent 100%
    );
    overflow: hidden;
}

.hiring-ui-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.hiring-ui-stack.hiring-ui-animate .hiring-ui-track {
    animation: hiring-scroll 10s linear infinite;
}

@keyframes hiring-scroll {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

.hiring-card {
    height: 152px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #06247B 0%, #000 51.923%, #0B101E 100%);
    padding: 20px 24px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ccc;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease, filter 0.3s ease;
    transform-style: preserve-3d;
}


.hiring-card:nth-child(1),
.hiring-card:nth-child(6) {
    opacity: 0.12;
}

.hiring-card:nth-child(2) {
    opacity: 0.75;
}

.hiring-card:nth-child(5) {
    opacity: 0.35;
}

.hiring-card:nth-child(3),
.hiring-card:nth-child(4) {
    opacity: 1;
}

.hiring-card:nth-child(4) {
    filter: brightness(1.05);
}

.hiring-card:nth-child(1),
.hiring-card:nth-child(2) {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 35%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 35%, #000 100%);
}

.hiring-card:nth-child(5),
.hiring-card:nth-child(6) {
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.4) 35%, #000 100%);
    mask-image: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.4) 35%, #000 100%);
}

.hiring-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 14px;
    background: linear-gradient(180deg, #2C8FF1 0%, rgba(44, 143, 241, 0) 92%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hiring-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hiring-card-img {
    width: 72px;
    height: 72px;
    /* opacity: 0.6; */
}

.hiring-card h4 {
    color: #FFF;
    font-size: 21.497px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 32.246px */
    text-align: center;
}

.hiring-card p {
    color: #FFF;
    font-style: italic;
    font-size: 12.101px;
    font-weight: 200;
    line-height: 150%; /* 18.151px */
    text-align: center;
}

/* Tasks Section */
.tasks-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.tasks-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.tasks-left {
    flex: 1;
    position: relative;
    margin-left: -260px;
}

.tasks-right {
    flex: 0 0 420px;
    max-width: 420px;
    padding-right: 40px;
}

.tasks-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 2.02;
    background: linear-gradient(90deg, #56B8EE 0%, #4E71E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tasks-screenshot-wrapper {
    position: relative;
}

.tasks-screenshot-img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1045px;
    border-radius: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: block;
}

.tasks-badge {
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 6;
}

.tasks-glow {
    bottom: -120px;
    left: 45%;
}

.time-glow {
    bottom: -120px;
    left: 55%;
}

/* Services Section */
.services-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.services-content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-left: 86px;
    padding-right: 0;
}

.services-pill {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 40px;
    border-radius: 186px;
    border: 1px solid #2372c1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, #06247B 0%, #000 51.923%, #0B101E 100%);
}

.services-pill span {
    font-size: 41px;
    font-weight: 700;
    line-height: 0.96;
    background: linear-gradient(90deg, #56B8EE 0%, #4E71E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-icon img:not(.services-icon-glow) {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 2;
}

.services-icon-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.9;
    z-index: 1;
}

.services-text {
    flex: 1;
    font-size: 24px;
    font-weight: 500;
    line-height: 2.02;
    background: linear-gradient(90deg, #56B8EE 0%, #4E71E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 705px;
}

.onboarding-frame {
    max-width: 1000px;
}

.org-pills {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
}

.pill {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
}

.profile-banner {
    height: 80px;
    background: linear-gradient(135deg, #1a365d, #3b82f6, #60a5fa);
}

.employee-profile {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.profile-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    margin-top: -40px;
    border: 4px solid #fff;
}

.profile-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-details .name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.profile-details .id {
    font-size: 13px;
    color: #6b7280;
    padding: 4px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
}

.status-pill {
    background: #22c55e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.profile-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #6b7280;
    margin-left: auto;
}

.profile-meta .link {
    color: #2563eb;
    text-decoration: underline;
}

.hiring-stages {
    padding: 20px;
    display: flex;
    gap: 30px;
}

.stages-title {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.05em;
}

.stage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stage {
    font-size: 13px;
    color: #374151;
}

.stage-section {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 10px;
}

/* Time Section */
/* Time Tracking Section */
.time-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.time-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.time-left {
    flex: 1;
    max-width: 504px;
}

.time-text {
    text-align: right;

    /* ROWS Subheader Style New */
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 119.981%; /* 47.992px */

    background: var(--Rows-Grad1, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: -215px;
}

.time-screenshot-wrapper {
    position: relative;
}

.time-screenshot-img {
    position: relative;
    width: 100%;
    max-width: 410px;
}

.time-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
    border: 1px solid #2372c1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, #06247B 0%, #000 51.923%, #0B101E 100%);
    position: absolute;
    bottom: 90px;
    left: 45px;
    z-index: 6;
    padding: 30px 90px 30px 30px;
    overflow: visible;
}

.time-badge-pill-text {
    display: flex;
    flex-direction: column;
}

.time-badge-pill span {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    background: var(--Rows-Grad1, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: nowrap;
}

.time-badge-pill span + span {
    margin-top: -0.4em;
}

.time-badge-pill img {
    width: 300px;
    height: 300px;
    position: absolute;
    right: -140px;
    top: 47%;
    transform: translateY(-50%);
    object-fit: contain;
}

/* Employee Mobile Section (mirrors time section) */
.employee-mobile-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.employee-mobile-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.employee-mobile-left {
    flex: 1;
    max-width: 504px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 100px;
}

.employee-mobile-text {
    text-align: right;

    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 119.981%; /* 47.992px */

    background: var(--Rows-Grad1, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.employee-mobile-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-right: -215px;
}

.employee-mobile-screenshot-wrapper {
    position: relative;
}

.employee-mobile-screenshot-img {
    position: relative;
    /* max-width: 100%;
    max-height: 896px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block; */
    max-height: 1200px;
}

.employee-mobile-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* max-width: 300px; */
    border-radius: 90px;
    border: 1px solid #2372c1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, #06247B 0%, #000 51.923%, #0B101E 100%);
    position: relative;
    padding: 30px 90px 50px 30px;
    overflow: visible;
    margin-right: 50px;
}

.employee-mobile-badge-pill-text {
    display: flex;
    flex-direction: column;
}

.employee-mobile-badge-pill span {
    font-size: 33px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 22.662px */
    background: var(--Rows-Grad1, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    text-wrap: nowrap;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.employee-mobile-badge-pill img {
    width: 300px;
    height: 300px;
    position: absolute;
    right: -140px;
    top: 47%;
    transform: translateY(-50%);
    object-fit: contain;
}

.phone-mockup-container {
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 164, 230, 0.5) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.phone-device {
    width: 280px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: linear-gradient(180deg, #0f172a, #1e293b);
    border-radius: 32px;
    overflow: hidden;
    min-height: 500px;
}

.phone-status-bar {
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

.clock-app {
    padding: 60px 24px;
    text-align: center;
}

.clock-time {
    font-size: 48px;
    font-weight: 700;
    color: var(--glow-blue);
    margin-bottom: 40px;
    font-variant-numeric: tabular-nums;
}

.clock-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-clock-in,
.btn-clock-out {
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-clock-in {
    background: linear-gradient(135deg, var(--accent-blue), var(--glow-blue));
    color: #0a1628;
}

.btn-clock-out {
    background: rgba(91, 164, 230, 0.2);
    color: var(--glow-blue);
    border: 1px solid rgba(91, 164, 230, 0.3);
}


.pill-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91, 164, 230, 0.2), rgba(125, 211, 252, 0.35));
    border: 1px solid rgba(91, 164, 230, 0.3);
}

.pill-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Scheduling Section */
.scheduling-wrapper {
    text-align: center;
}

.scheduling-title {
    font-size: 48.106px;
    font-style: normal;
    font-weight: 700;
    background: var(--Text-Gradient, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 70px;
}

.scheduling-panels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.scheduling-panel {
    border-radius: 94px;
    border: 2px solid #2c8ff1;
    padding: 60px 40px;
    background: rgba(11, 16, 30, 0.8);
    min-height: 502px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scheduling-panel {
    max-width: 528px;
}

.scheduling-panel h3 {
    font-size: 32px;
    font-weight: 400;
    background: var(--Text-Gradient, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.3;
}

.scheduling-panel h3 span {
    display: block;
}

.scheduling-panel h3 span + span {
    margin-top: -0.3em;
}

.scheduling-panel p {
    font-size: 16px;
    line-height: 202%;
    color: #96DFFF;
}

.scheduling-center-icon {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 164, 230, 0.4) 0%, transparent 70%);
    position: absolute;
    top: 40%;
    z-index: 3;
}

.scheduling-center-icon img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    z-index: 10;
}

.scheduling-center-screenshot {
    position: absolute;
    top: 125%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 36px;
    width: 946px;
    z-index: 1;
}

.scheduling-center-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 36px;
}

.payroll-section {
    margin-top: 550px;
}

/* Payroll Section */
.payroll-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.payroll-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.payroll-left,
.payroll-right {
    flex: 1;
}

.payroll-left {
    max-width: 504px;
}

.payroll-right {
    margin-right: -215px;
    position: relative;
}

.payroll-text {  
    /* ROWS Subheader Style New */
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 119.981%; /* 47.992px */
    background: var(--Rows-Grad1, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payroll-floating-icon {
    position: absolute;
    top: 49%;
    left: 0;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    z-index: 12;
}

.payroll-floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payroll-screenshot-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    overflow: visible;
    margin-left: auto;
}

.payroll-screenshot-crop {
    position: relative;
    width: 720px;
    display: flex;
    justify-content: flex-start;
}

.payroll-screenshot-crop .payroll-floating-icon {
    left: -170px;
}

.payroll-screenshot-img {
    position: relative;
    z-index: 10;
    height: 528px;
    width: auto;
    max-width: none;
    border-radius: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: block;
    clip-path: none;
    /* margin-left: */
}

.payroll-badge {
    position: absolute;
    top: -50px;
    right: 48px;
    z-index: 6;
    padding-top: 2px;
    padding-bottom: 60px;
    padding-left: 80px;
    padding-right: 80px;
}

.payroll-badge span {
    font-size: 30px;
    text-align: center;

    /* Rows Grad1 */
    font-style: normal;
    font-weight: 700;
    text-align: center;
    background: var(--Rows-Grad1, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payroll-glow {
    bottom: -120px;
    left: 55%;
}

/* Reporting Section */
.benefits-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.benefits-text {
    flex: 1;
    color: var(--body, var(--Color, #96DFFF));

    /* Rows Body 1 */
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 202%;
    text-align: right;

    max-width: 437px;
}

.benefits-content {
    padding-left: 94px;
    padding-right: 0;
}

.benefits-text strong {
    background: var(--Rows-Grad1, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 40px;
    font-style: normal;
    font-weight: 600;
}

.benefits-pill {
    padding: 30px 70px;
}

.benefits-pill span {
    font-size: 33px;
    line-height: 1.1;
}

.scheduling-screenshot {
    background: var(--text-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
    padding-top: 60px;
}

.schedule-app-header {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.schedule-grid {
    padding: 20px;
}

.schedule-time-block {
    margin-bottom: 20px;
}

.time-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
}

.schedule-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.position {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.shifts {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.shift-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.shift-badge.filled { background: #fef3c7; color: #92400e; }
.shift-badge.over { background: #dcfce7; color: #166534; }

.employee-avatars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

/* Payroll Section */
.payroll-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    clear: both;
    padding-top: 20px;
}

.payroll-icons-row {
    display: flex;
    gap: 20px;
}

.payroll-icon-item {
    width: 100px;
    height: 100px;
}

.payroll-icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payroll-screenshot {
    clear: both;
}

.payroll-frame {
    max-width: 900px;
}

.payroll-app {
    display: flex;
    min-height: 300px;
}

.payroll-sidebar {
    width: 200px;
    background: #1a365d;
    padding: 20px;
}

.nav-item {
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.nav-item.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.payroll-main {
    flex: 1;
    padding: 30px;
}

.payroll-header {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
}

.payroll-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.summary-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.summary-card .label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.summary-card .amount {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Benefits Section */
.benefits-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.benefits-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--glow-blue);
    margin-bottom: 16px;
}

.benefits-text p {
    font-size: 20px;
    color: var(--text-secondary);
}

.benefits-badge {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 48px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(20, 40, 70, 0.9));
    border-radius: 80px;
}

.benefits-icon {
    width: 120px;
    height: 120px;
}

.benefits-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefits-badge span {
    font-size: 24px;
    font-weight: 700;
    color: var(--glow-blue);
    line-height: 1.3;
}

/* Mobile Section */
.mobile-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.phone-mockup-large {
    position: relative;
}

.phone-glow-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 164, 230, 0.5) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

.phone-device-large {
    width: 320px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.phone-device-large .phone-screen {
    min-height: 600px;
}

.mobile-app {
    padding: 30px 24px;
}

.app-greeting {
    font-size: 14px;
    color: var(--text-secondary);
}

.app-user {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.app-tiles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-tile {
    padding: 20px;
    background: rgba(91, 164, 230, 0.1);
    border: 1px solid rgba(91, 164, 230, 0.2);
    border-radius: 16px;
    color: var(--glow-blue);
    font-weight: 600;
}

.mobile-badge-pill {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 24px;
    padding: 24px 40px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(20, 40, 70, 0.9));
    border-radius: 80px;
    position: relative;
}

.mobile-badge-pill::before {
    content: '';
    position: absolute;
    inset: -22px;
    border-radius: 100px;
    background: radial-gradient(circle, rgba(91, 164, 230, 0.35) 0%, transparent 65%);
    z-index: -1;
}

.mobile-badge-pill span {
    font-size: 20px;
    font-weight: 700;
    color: var(--glow-blue);
    line-height: 1.3;
    text-align: right;
}

.pill-icon-group {
    width: 100px;
    height: 100px;
}

.pill-icon-group img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    padding: 140px 80px 120px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 71px;
}

.contact-card-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(180deg, #2C8FF1 0%, rgba(44, 143, 241, 0) 82%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.contact-card {
    background: linear-gradient(180deg, #06247b 0%, #000 51.923%, var(--primary-bg) 100%);
    border-radius: 30px;
    padding: 72px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1115px;
    margin: 0 auto;
}

.contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 30px;
    background: linear-gradient(180deg, #2C8FF1 0%, rgba(44, 143, 241, 0) 97.12%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, var(--accent-blue), var(--glow-blue)); */
}

.contact-card h2 {
    color: var(--body, var(--Color, #96DFFF));
    text-align: center;
    font-size: 62.236px;
    font-style: normal;
    font-weight: 700;
    line-height: 119.981%; /* 74.672px */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-form {
    max-width: 955px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-field {
    margin-bottom: 24px;
    width: 100%;
}

.form-field input {
    width: 100%;
    padding: 24px 36px;
    background: #06247b;
    border: 1px solid #06247b;
    border-radius: 67px;
    color: var(--text-primary);
    font-size: 28px;
    font-family: inherit;
    transition: all 0.3s ease;

    font-style: normal;
    font-weight: 500;

}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-field input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.submit-btn {
    background: linear-gradient(180deg, #06247b 0%, #000 51.923%, var(--primary-bg) 100%);
    border: 1px solid #2372c1;
    color: #7dd3fc;
    padding: 0 80px;
    height: 51px;
    border-radius: 64px;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.submit-btn span {
    background: linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.submit-btn:hover {
    border-color: var(--accent-blue);
    box-shadow:
        0 0 40px rgba(91, 164, 230, 0.6),
        0 0 70px rgba(91, 164, 230, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    /* background: transparent; */
    padding: 80px 80px 40px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.footer::after {
    content: '';
    position: absolute;
    inset: -40%;
    background: linear-gradient(0deg, #005BDF 0%, #005BDF 20%, #0B101E 60%, #0B101E 100%);
    filter: blur(92.1px);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.footer-wrapper,
.footer-glow-left,
.footer-glow-right {
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 129, 255, 0.25), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(0, 129, 255, 0.25), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.footer-glow-left,
.footer-glow-right {
    position: absolute;
    background: radial-gradient(ellipse, rgba(91, 164, 230, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.footer-glow-left {
    width: 600px;
    height: 400px;
    bottom: -200px;
    left: -300px;
}

.footer-glow-right {
    width: 900px;
    height: 100px;
    bottom: 0;
    right: -200px;
}

.footer-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 80px;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    height: 28px;
    width: auto;
}

.footer-logo-text {
    height: 20px;
    width: auto;
}

.footer-contact-info p,
.footer-contact-info a {
    margin-bottom: 4px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  
}

.footer-contact-info a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.social-icon {
    color: var(--text-primary);
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.7;
}

.social-icon:hover {
    color: var(--accent-blue);
}

.footer-right {
    max-width: 520px;
}

.newsletter-text {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(44, 143, 241, 0.6);
    border-radius: 52px;
 
    font-size: 13px;    
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--Text-Gradient, linear-gradient(90deg, #56B8EE 66.39%, #4E71E6 98.99%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 10px 15px;
    background: linear-gradient(180deg, #06247b 0%, #000 22.115%, var(--primary-bg) 100%);
    border: 1px solid rgba(44, 143, 241, 0.6);
    border-radius: 44px;
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-form button svg {
    color: #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(91, 164, 230, 0.15);
    border-color: var(--accent-blue);
}

.newsletter-form button:hover svg {
    transform: rotate(0deg);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(91, 164, 230, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: underline;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.copyright {
    color: var(--text-primary);
    font-size: 14px;
}

/* Responsive */
@media (min-width: 1025px) and (max-width: 1300px) {
    .nav-container { padding: 0 60px; }
    .hero { min-height: 820px; padding: 140px 60px 80px; }
    .feature-section { padding: 100px 60px; }
    .contact-section { padding: 120px 60px 100px; }
    .footer { padding: 70px 60px 40px; }
    .contact-card-wrapper { padding: 60px; }

    .hero-subtitle { font-size: 24px; }
    .hero-title { font-size: 80px; }
    .hero-description { font-size: 19px; max-width: 760px; }
    .request-demo-btn { font-size: 24px; height: 46px; }
    .hero-icon { width: 118px; height: 118px; }

    .recruiting-wrapper { padding-right: 40px; }
    .recruiting-content { gap: 40px; justify-content: space-between; }
    .recruiting-left {
        flex: 0 0 860px;
        max-width: 760px;
        margin-left: -180px;
    }
    .recruiting-screenshot-wrapper { width: 760px; }
    .recruiting-badge { left: 30%; }
    .recruiting-floating-icon { right: -90px; width: 300px; height: 300px; }
    .recruiting-text { font-size: 38px; }

    .onboarding-content { gap: 0px; }
    .onboarding-left { flex: 0 0 480px; max-width: 480px; padding-left: 0px; }
    .onboarding-text { font-size: 38px; }
    .onboarding-right { margin-right: 0px; max-width: 620px; }
    .onboarding-floating-icon { left: -130px; width: 300px; height: 300px; }
    .hiring-ui-stack { width: 450px; }
    .onboarding-screenshot-img {
        height: 450px;
    }


    .tasks-wrapper { padding: 0 60px; }
    .tasks-left { margin-left: -200px; }

    .time-wrapper { padding: 0 60px; }
    .time-right { margin-right: -170px; }
    .time-text { font-size: 38px; }
    .time-badge-pill {
        left: 30px;
        padding: 20px 70px 20px 30px;
    }

    .payroll-wrapper { padding: 0 60px; }
    .payroll-right { margin-right: -170px; }
    .payroll-text { font-size: 38px; }
    .payroll-floating-icon { width: 300px; height: 300px;  }
    .payroll-screenshot-crop .payroll-floating-icon {
        left: -145px;
    }
    .payroll-screenshot-img {
        height: 480px;
    }

    .scheduling-center-screenshot { width: 860px; }

    .benefits-content {
        padding-left: 0;
    }

    .employee-mobile-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .employee-mobile-content {
        gap: 0;
    }
    .employee-mobile-left {
        max-width: 100%;
    }
    .employee-mobile-badge-pill {
        padding: 30px 70px 30px 30px;
    }

    
    
}

@media (max-width: 1024px) {
    .hero { padding: 140px 40px 80px; }
    .feature-section { padding: 80px 40px; }
    .nav-container { padding: 0 40px; }
    .contact-section { padding: 80px 40px; }
    .footer { padding: 60px 40px 40px; }
    .contact-card-wrapper { padding: 60px; }

    .nav-tabs {
        gap: 0;
    }
    
    .nav-tab {
        font-size: 13px;
        padding: 10px 18px 8px;
    }
    
    .nav-tab.active {
        padding-bottom: 10px;
    }

    .hero-title {
        font-size: 72px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 720px;
    }

    .request-demo-btn {
        font-size: 24px;
        height: 46px;
        margin-bottom: 40px;
    }

    .hero-icon {
        width: 110px;
        height: 110px;
    }
    
    .recruiting-wrapper {
        padding-right: 0px;
    }

    .recruiting-content {
        gap: 40px;
        justify-content: space-between;
    }

    .recruiting-left {
        max-width: 600px;
    }

    .recruiting-screenshot-wrapper {
        width: 600px;
    }

    .recruiting-badge {
        left: 30%;
    }
    .recruiting-floating-icon {
        right: -122px;
        height: 250px;
        width: 250px;
    }

    .recruiting-text {
        font-size: 36px;
    }

    .onboarding-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .onboarding-wrapper {
        padding-left: 0px;
    }

    .onboarding-content {
        gap: 30px;
    }

    .onboarding-left {
        width: fit-content;
        padding-left: 10px;
        flex: none;
    }

    .hiring-ui-stack {
        width: 325px;
    }

    .onboarding-right {
        margin-right: 0;
        justify-content: center;
    }

    .onboarding-floating-icon {
        height: 250px;
        width: 250px;
        left: -120px;
    }

    .onboarding-screenshot-img {
        height: 400px;
    }

    .time-wrapper {
        padding: 0;
    }

    .time-content {
        gap: 30px;
    }

    .time-left {
        max-width: 300px;
    }

    .time-text {
        font-size: 32px;
    }

    .time-badge-pill {
       padding-top: 20px;
       padding-bottom: 20px;
    }

    .time-badge-pill-text span {
        font-size: 28px;
    }

    .time-badge-pill img {
        right: -110px;
        height: 275px;
        width: 275px;
    }

    .scheduling-panel {
        min-height: auto;
        border-radius: 40px;
    }

    .scheduling-center-icon {
        width: 250px;
        height: 250px;
        right: 35%;
        top: 48%;
    }

    .scheduling-center-icon img {
        width: 250px;
        height: 250px;
    }

    .scheduling-center-screenshot {
        width: 700px;
        top: 140%;
    }

    .payroll-section {
        padding-top: 0;
    }

    .payroll-wrapper {
        padding-left: 0;
    }

    .payroll-badge {
        left: 25%;
        width: fit-content;
    }

   .payroll-text {
        min-width: 350px;
   }

    .payroll-floating-icon {
        height: 250px;
        width: 250px;
    }

    .payroll-screenshot-crop .payroll-floating-icon {
        left: -120px;
    }

    .payroll-screenshot-img {
        max-height: 400px;
    }

    .benefits-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .benefits-content {
        padding-left: 0;
    }

    .benefits-text {
        /* font-size: 28px; */
    }

    .benefits-text strong{
        font-size: 32px;
    }

    .benefits-pill {
        padding: 10px 20px;
    }

    .benefits-icon img {
        width: 80px;
        height: 80px;
    }

    .benefits-pill span {
        font-size: 28px;
    }

    .employee-mobile-wrapper {
        padding: 0;
    }

    .employee-mobile-content {
        gap: 0px;
    }

    .employee-mobile-text {
        font-size: 32px;
    }

    .employee-mobile-badge-pill {
        padding: 20px 70px 20px 30px;
    }

    .employee-mobile-badge-pill-text span {
        font-size: 28px;
    }

    .employee-mobile-right {
        margin-right: -40px;
    }

    .employee-mobile-screenshot-img {
        max-height: 800px;

    }
    
    
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-icon {
        height: 28px;
    }
    
    .logo-text {
        height: 18px;
    }

    .nav-tabs {
        display: none;
    }
    
    .contact-btn {
        padding: 10px 18px;
        font-size: 13px;
        gap: 6px;
    }
    
    .contact-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Hero section */
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .request-demo-btn {
        padding: 14px 24px;
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .hero-icons {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .hero-icon {
        width: 60px;
        height: 60px;
    }
    
    .shape {
        display: none;
    }
    
    .contact-card-wrapper {
        padding: 40px;
    }
    
    /* Feature sections general */
    .feature-section {
        padding: 60px 20px;
    }
    
    .feature-badge {
        font-size: 18px;
        padding: 14px 28px;
        margin-bottom: 24px;
    }
    
    .feature-text p,
    .feature-text-wide p {
        font-size: 22px;
        max-width: 100%;
    }
    
    .feature-text-wide p {
        margin-bottom: 40px;
    }

    /* Mobile stacking moved down from 1024px */
    .scheduling-cards-row {
        grid-template-columns: 1fr;
    }

    .benefits-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .mobile-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .payroll-layout {
        flex-direction: column;
        gap: 30px;
    }

    .recruiting-content {
        flex-direction: column;
        gap: 40px;
    }

    .recruiting-left {
        margin-left: 0;
        width: 100%;
        flex: none;
        max-width: 100%;
    }

    .recruiting-screenshot-img {
        border-radius: 20px;
        width: 100%;
    }

    .recruiting-screenshot-wrapper {
        width: 100%;
    }

    .recruiting-right {
        flex: none;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .recruiting-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 30px;
        padding-bottom: 20px;
        width: auto;
        height: auto;
        padding: 18px 40px;
    }

    .recruiting-floating-icon {
        display: none;
    }

    .briefcase-float {
        display: none;
    }

    .hiring-ui-stack {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .onboarding-content {
        flex-direction: column;
        gap: 40px;
    }

    .onboarding-text {
        text-align: center;
    }

    .tasks-left {
        margin-left: 0;
    }

    .time-right,
    .employee-mobile-right {
        margin-right: 0;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }

    .payroll-right {
        margin-right: 0;
    }

    .services-content,
    .benefits-content {
        padding-left: 0;
        padding-right: 0;
    }

    .folder-float {
        display: none;
    }

    .tasks-content,
    .services-content,
    .time-content,
    .employee-mobile-content,
    .payroll-content,
    .benefits-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .tasks-right,
    .services-text {
        max-width: 100%;
    }

    .time-content,
    .employee-mobile-content {
        gap: 50px;
    }

    .time-left,
    .employee-mobile-left {
        max-width: 100%;
    }
    
    /* Recruiting section mobile */
    .recruiting-wrapper {
        padding-right: 20px;
    }
    
    .recruiting-text {
        font-size: 22px;
    }
    
    .recruiting-screenshot-wrapper {
        margin-top: 20px;
    }

    .recruiting-ui-card {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin: 20px auto 0;
    }
    
    /* Onboarding section mobile */
    .onboarding-wrapper {
        padding-left: 20px;
    }

    .onboarding-left {
        flex: none;
        max-width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .onboarding-right {
        margin-right: 0;
        width: 100%;
    }
    
    .onboarding-text {
        font-size: 22px;
        text-align: center;
    }
    
    .onboarding-screenshot-wrapper {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .onboarding-ui-card {
        margin: 20px auto 0;
        text-align: left;
    }
    
    /* Time section mobile */
    .time-wrapper,
    .employee-mobile-wrapper {
        padding: 0 20px;
    }
    
    .time-text,
    .employee-mobile-text {
        font-size: 22px;
    }
    
    .time-screenshot-img {
        max-width: 100%;
    }

    .employee-mobile-screenshot-img {
        margin-left: 200px;
        height: 1000px;
        max-height: none;
        max-width: none;
    }

    .employee-mobile-content {
        gap: 0px;
    }
    
    .time-badge-pill,
    .employee-mobile-badge-pill {
        /* padding: 16px 24px; */
        border-radius: 40px;
        margin-top: 0;
        top: -40px;
    }
    
    .time-badge-pill span,
    .employee-mobile-badge-pill span {
        font-size: 16px;
    }

    .hiring-card {
        min-height: 120px;
        padding: 16px;
    }

    .hiring-card p {
        font-size: 11px;
    }

    .tasks-text,
    .services-text,
    .payroll-text,
    .benefits-text,
    .time-text {
        font-size: 18px;
    }

    .services-pill {
        /* flex-direction: column; */
        /* padding: 24px; */
        text-align: center;
    }

    .services-pill span {
        font-size: 20px;
    }

    .scheduling-panel {
        border-radius: 40px;
        padding: 32px 24px;
        min-height: auto;
    }

    .pill-icon {
        width: 54px;
        height: 54px;
    }

    .pill-icon img {
        width: 28px;
        height: 28px;
    }
    
    /* Scheduling section mobile */
    .scheduling-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .scheduling-cards-row {
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .scheduling-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .scheduling-card h3 {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .scheduling-card p {
        font-size: 14px;
    }
    
    .calendar-icon-float {
        width: 80px;
        height: 80px;
        top: -50px;
    }
    
    .scheduling-visual {
        margin-top: 30px;
    }
    
    /* Payroll section mobile */
    .feature-badge.right-badge {
        float: none;
        display: inline-flex;
    }
    
    .payroll-layout {
        text-align: center;
    }
    
    .payroll-icons-row {
        justify-content: center;
    }
    
    .payroll-icon-item {
        width: 70px;
        height: 70px;
    }
    
    .payroll-app {
        flex-direction: column;
    }
    
    .payroll-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 15px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 12px;
        margin-bottom: 0;
    }
    
    .payroll-main {
        padding: 20px;
    }
    
    .payroll-summary {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .summary-card {
        padding: 16px;
    }
    
    .summary-card .amount {
        font-size: 20px;
    }
    
    /* Benefits section mobile */
    .benefits-text h3 {
        font-size: 26px;
    }
    
    .benefits-text p {
        font-size: 16px;
    }
    
    .benefits-badge {
        padding: 24px 32px;
        border-radius: 60px;
        flex-direction: column;
        gap: 16px;
    }
    
    .benefits-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefits-badge span {
        font-size: 18px;
    }
    
    /* Mobile experience section */
    .mobile-badge-pill {
        flex-direction: column;
        padding: 20px 32px;
        border-radius: 60px;
        gap: 16px;
    }
    
    .mobile-badge-pill span {
        font-size: 16px;
        text-align: center;
    }
    
    .pill-icon-group {
        width: 70px;
        height: 70px;
    }
    
    .phone-device-large {
        width: 260px;
        padding: 10px;
    }
    
    .phone-device-large .phone-screen {
        min-height: 480px;
    }
    
    /* Contact section */
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    
    .contact-card h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .form-field input {
        padding: 18px 24px;
        font-size: 18px;
        border-radius: 40px;
    }
    
    .submit-btn {
        padding: 16px 40px;
        font-size: 18px;
        width: 100%;
    }

    .time-badge-pill-text span {
        font-size: 24px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 20px 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-right {
        max-width: 100%;
    }
    
    .newsletter-text {
        font-size: 14px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Floating icons */
    .floating-icon {
        width: 100px;
        height: 100px;
    }
    
    /* Screenshot glows */
    .screenshot-glow {
        width: 400px;
        height: 200px;
    }
    
    /* Table responsive */
    .table-header,
    .table-row {
        grid-template-columns: 1fr 60px 1fr;
    }
    
    .table-header span:nth-child(4),
    .table-header span:nth-child(5),
    .table-row span:nth-child(4),
    .table-row span:nth-child(5) {
        display: none;
    }

    .recruiting-section {
        padding-top: 0;
    }

    .recruiting-badge span {
        margin-top: 0;
    }

    .onboarding-left {
        width: 100%;
    }

    .onboarding-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .onboarding-screenshot-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .onboarding-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 30px;
        height: auto;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .onboarding-floating-icon {
        display: none;
    }

    .onboarding-screenshot-img {
        height: auto;
        width: 100%;
        margin-left: 0;
        border-radius: 20px;
    }

    .time-text {
        text-align: center;
    }

    .time-badge-pill {
        top: 70%;
        left: 48%;
        transform: translateX(-50%);
        width: 100%;
        height: 100px;
    }

    .scheduling-panels {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .scheduling-panel {
        max-width: 90%;
    }

    .scheduling-center-icon {
        display: none;
    }

    .scheduling-center-screenshot {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
      
    }

    .scheduling-screenshot img {
        width: 80%;
        margin: 0 auto;
    }

    .payroll-section {
        margin-top: 50px;
    }

    .payroll-wrapper {
        padding: 0;
    }

    .payroll-screenshot-crop {
        width: 100%;
    }

    .payroll-screenshot-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .payroll-badge {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }

    .payroll-floating-icon {
        display: none;
    }

    .payroll-screenshot-img {
        width: 100%;
        height: auto;
    }

    .benefits-wrapper {
        padding: 0;
    }

    .benefits-pill {
        width: 100%;
        justify-content: center;
    }

    .employee-mobile-badge-pill {
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 20px 30px;
    }

    .employee-mobile-badge-pill-text {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 24px;
        
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-icons {
        gap: 10px;
    }
    
    .hero-icon {
        width: 50px;
        height: 50px;
    }
    
    .request-demo-btn {
        padding: 12px 20px;
        font-size: 20px;
    }
    
    .contact-card-wrapper {
        padding: 28px;
    }
    
    .feature-badge {
        font-size: 16px;
        padding: 12px 22px;
    }
    
    .feature-text p,
    .feature-text-wide p,
    .recruiting-text,
    .onboarding-text,
    .time-text {
        font-size: 18px;
    }

    .scheduling-panel {
        max-width: 100%;
    }
    
    .scheduling-title {
        font-size: 26px;
    }
    
    .scheduling-card h3 {
        font-size: 20px;
    }
    
    .contact-card h2 {
        font-size: 24px;
    }
    
    .benefits-text h3 {
        font-size: 22px;
    }
    
    .phone-device-large {
        width: 220px;
    }
    
    .phone-device-large .phone-screen {
        min-height: 400px;
    }
    
    .app-user {
        font-size: 22px;
    }
    
    .app-tile {
        padding: 14px;
        font-size: 14px;
    }

    .employee-mobile-screenshot-img {
        margin-left: 40px;
        width: 500px;
        max-width: none;
    }
}
