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

:root {
    --primary-bg: #050d1a;
    --secondary-bg: #0a1628;
    --accent-blue: #5BA4E6;
    --glow-blue: #7DD3FC;
    --cyan-text: #5BA4E6;
    --light-blue: #A5D8FF;
    --text-primary: #ffffff;
    --text-secondary: #8BA3C7;
    --text-muted: #5B7193;
}

html {
    scroll-behavior: smooth;
}

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

/* Starfield Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(91, 164, 230, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(125, 211, 252, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(91, 164, 230, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(125, 211, 252, 0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(91, 164, 230, 0.4), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(125, 211, 252, 0.3), transparent),
        radial-gradient(1px 1px at 250px 90px, rgba(91, 164, 230, 0.5), transparent),
        radial-gradient(2px 2px at 300px 60px, rgba(125, 211, 252, 0.2), transparent),
        radial-gradient(1px 1px at 350px 130px, rgba(91, 164, 230, 0.4), transparent),
        radial-gradient(2px 2px at 400px 40px, rgba(125, 211, 252, 0.3), transparent);
    background-size: 500px 150px;
    animation: stars 100s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: 500px 150px; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(180deg, 
        #050d1a 0%,
        rgba(5, 13, 26, 0.85) 30%,
        rgba(5, 13, 26, 0.5) 60%,
        rgba(5, 13, 26, 0.2) 80%,
        transparent 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

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

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

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

.contact-btn {
    position: relative;
    border: 0 solid #2C8FF1;
    padding: 12px 28px;
    border-radius: 54px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    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::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 54px;
    z-index: -1;
}

.contact-btn svg {
    position: relative;
    z-index: 1;
}

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

/* Hero Section */
.hero {
    padding: 180px 80px 100px;
    position: relative;
    min-height: 100vh;
    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;
    border-radius: 16px;
    border: 1px solid rgba(91, 164, 230, 0.15);
    background: linear-gradient(135deg, rgba(91, 164, 230, 0.05), transparent);
}

.shape-tl { width: 158px; height: 151px; top: 15%; left: 10%; }
.shape-tr { width: 158px; height: 151px; top: 10%; right: 12%; }
.shape-bl { width: 158px; height: 151px; bottom: 25%; left: 8%; }
.shape-br { width: 158px; height: 151px; bottom: 20%; right: 10%; }

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

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #7DD3FC;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.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;
}

.request-demo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0px 32px;
    border: 1.444px solid #2C8FF1;
    border-radius: 37.103px;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    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%);
    box-shadow: 
        0 0 30px rgba(91, 164, 230, 0.4),
        0 0 50px rgba(91, 164, 230, 0.2);
}

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

.request-demo-btn svg {
    position: relative;
    z-index: 1;
}

.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);
}

.hero-icons {
    display: flex;
}

.hero-icon {
    width: 200px;
    height: 200px;
    margin: -35px;
}

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

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

.feature-wrapper,
.scheduling-wrapper,
.benefits-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

/* Feature Badge */
.feature-badge {
    position: relative;
    display: inline-flex;
    padding: 20px 50px;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 40px;
    background: #0a1628;
}

.feature-badge span {
    background: linear-gradient(90deg, #5BA4E6 0%, #7DD3FC 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: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--cyan-text);
    max-width: 500px;
}

.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: #ffffff;
    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;
}

.briefcase-float {
    position: absolute;
    top: -40px;
    right: 80px;
    transform: none;
    width: 180px;
    height: 180px;
    z-index: 20;
}


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

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

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

.recruiting-left {
    flex: 1;
    position: relative;
    min-width: 0;
    margin-left: -150px;
}

.recruiting-badge {
    position: absolute;
    top: -30px;
    right: 120px;
    left: auto;
    transform: none;
    z-index: 15;
}

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

.recruiting-screenshot-img {
    position: relative;
    z-index: 10;
    width: 85%;
    max-width: 800px;
    height: auto;
    border-radius: 0 20px 20px 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(91, 164, 230, 0.3);
    display: block;
}

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

.recruiting-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--cyan-text);
}

.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;
    padding: 0;
    padding-left: 80px;
}

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

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

.onboarding-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--cyan-text);
}

.onboarding-right {
    flex: 1;
    position: relative;
    min-width: 0;
    margin-right: -150px;
}

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

.onboarding-badge {
    position: absolute;
    top: -30px;
    left: 120px;
    right: auto;
    transform: none;
    z-index: 15;
}

.onboarding-screenshot-img {
    position: relative;
    z-index: 10;
    width: 85%;
    max-width: 800px;
    height: auto;
    border-radius: 20px 0 0 20px;
    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 {
    position: absolute;
    top: -40px;
    left: 80px;
    transform: none;
    width: 180px;
    height: 180px;
    z-index: 20;
}

.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: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

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

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

.time-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--cyan-text);
}

.time-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.time-device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(91, 164, 230, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.time-device-img {
    max-width: 350px;
    height: auto;
    display: block;
}

.time-badge-pill {
    background: #0a1628;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
}

.time-badge-pill span {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #5BA4E6 0%, #7DD3FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.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);
}

.time-badge-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(20, 40, 70, 0.9));
    border-radius: 60px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

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

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

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

.scheduling-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #5BA4E6 0%, #7DD3FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scheduling-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.scheduling-card {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.6), rgba(5, 13, 26, 0.8));
    border: 1px solid rgba(91, 164, 230, 0.3);
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
}

.scheduling-card h3 {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: var(--glow-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.scheduling-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.scheduling-visual {
    position: relative;
    margin-top: 40px;
}

.scheduling-screenshot-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.scheduling-screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid rgba(91, 164, 230, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(91, 164, 230, 0.3);
    display: block;
}

.scheduling-glow {
    bottom: -150px;
    width: 700px;
    height: 350px;
}

.calendar-icon-float {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    z-index: 20;
    width: 120px;
    height: 120px;
    z-index: 10;
}

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

.scheduling-screenshot {
    background: #ffffff;
    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;
}

.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: 120px 80px;
}

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

.contact-card {
    background: linear-gradient(180deg, rgba(15, 30, 55, 0.9), rgba(10, 22, 40, 0.95));
    border: 2px solid rgba(91, 164, 230, 0.3);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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 {
    font-size: 48px;
    font-weight: 800;
    color: var(--glow-blue);
    margin-bottom: 60px;
    line-height: 1.2;
    font-style: italic;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-field input {
    width: 100%;
    padding: 24px 32px;
    background: rgba(15, 30, 55, 0.8);
    border: 2px solid rgba(91, 164, 230, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 18px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input::placeholder {
    color: var(--text-muted);
}

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

.submit-btn {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.9), rgba(5, 13, 26, 0.95));
    border: 2px solid rgba(91, 164, 230, 0.3);
    color: var(--glow-blue);
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(5, 13, 26, 0.9), rgba(10, 22, 40, 0.95));
    padding: 60px 80px 40px;
    position: relative;
    overflow: hidden;
}

.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 {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 4px;
    text-decoration: none;
    display: block;
}

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

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

.social-icon {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

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

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

.newsletter-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(15, 30, 55, 0.8);
    border: 1px solid rgba(91, 164, 230, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(91, 164, 230, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    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:hover {
    background: rgba(91, 164, 230, 0.15);
    border-color: var(--accent-blue);
}

.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-secondary);
    text-decoration: underline;
    font-size: 14px;
}

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

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

/* Responsive */
@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; }
    
    .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 section tablet */
    .recruiting-wrapper {
        padding-right: 40px;
    }
    
    .recruiting-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .recruiting-left {
        margin-left: 0;
        width: 100%;
    }
    
    .recruiting-screenshot-img {
        border-radius: 20px;
        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;
    }
    
    .briefcase-float {
        display: none;
    }
    
    /* Onboarding section tablet */
    .onboarding-wrapper {
        padding-left: 40px;
    }
    
    .onboarding-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .onboarding-left {
        flex: none;
        max-width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .onboarding-right {
        margin-right: 0;
        width: 100%;
    }
    
    .onboarding-screenshot-img {
        border-radius: 20px;
        width: 100%;
        margin-left: 0;
    }
    
    .onboarding-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .folder-float {
        display: none;
    }
    
    /* Time section tablet */
    .time-wrapper {
        padding: 0 40px;
    }
    
    .time-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .time-left {
        max-width: 100%;
    }
    
    .time-right {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-icon {
        height: 28px;
    }
    
    .logo-text {
        height: 18px;
    }
    
    .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: 32px;
        margin-bottom: 30px;
    }
    
    .request-demo-btn {
        padding: 14px 24px;
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .hero-icons {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .hero-icon {
        width: 60px;
        height: 60px;
    }
    
    .shape {
        display: none;
    }
    
    /* 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;
    }
    
    /* Recruiting section mobile */
    .recruiting-wrapper {
        padding-right: 20px;
    }
    
    .recruiting-text {
        font-size: 22px;
    }
    
    .recruiting-screenshot-wrapper {
        margin-top: 20px;
    }
    
    /* Onboarding section mobile */
    .onboarding-wrapper {
        padding-left: 20px;
    }
    
    .onboarding-text {
        font-size: 22px;
    }
    
    .onboarding-screenshot-wrapper {
        margin-top: 20px;
    }
    
    /* Time section mobile */
    .time-wrapper {
        padding: 0 20px;
    }
    
    .time-text {
        font-size: 22px;
    }
    
    .time-device-img {
        max-width: 250px;
    }
    
    .time-badge-pill {
        padding: 16px 24px;
        border-radius: 40px;
        margin-top: 0;
    }
    
    .time-badge-pill span {
        font-size: 16px;
    }
    
    /* 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: 28px;
        margin-bottom: 40px;
    }
    
    .form-field input {
        padding: 18px 24px;
        font-size: 16px;
        border-radius: 40px;
    }
    
    .submit-btn {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
    }
    
    /* 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;
    }
}

/* 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;
    }
    
    .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-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;
    }
}
