/* ==============================================
   SPEHRE LANDING — LIGHT THEME
   Inter font, clean whites, indigo accents
   ============================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
}


/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #f1f5f9;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0f172a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-ghost {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-ghost:hover {
    color: #0f172a;
    background: #f8fafc;
}

.btn-primary-sm {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: #0085FF;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 133, 255, 0.3);
}

.btn-primary-sm:hover {
    background: #006ed4;
    box-shadow: 0 4px 12px rgba(0, 133, 255, 0.4);
    transform: translateY(-1px);
}


/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
    padding: 10rem 2rem 5rem;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 133, 255, 0.08), transparent),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #e6f3ff;
    border: 1px solid #cce5ff;
    border-radius: 99px;
    color: #0085FF;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #0085FF;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #0085FF, #005099, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    max-width: 560px;
    margin: 0 auto 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.search-bar:focus-within {
    border-color: #0085FF;
    box-shadow: 0 4px 20px rgba(0, 133, 255, 0.12);
}

.search-icon {
    padding: 0 12px 0 16px;
    color: #94a3b8;
    font-size: 1rem;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1e293b;
    padding: 12px 0;
    background: transparent;
    font-family: inherit;
}

.search-bar input::placeholder {
    color: #94a3b8;
}

.search-bar button {
    padding: 10px 24px;
    background: #0085FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.search-bar button:hover {
    background: #006ed4;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #0085FF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 133, 255, 0.3);
}

.btn-primary:hover {
    background: #006ed4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 133, 255, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: #374151;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* --- Dashboard Preview --- */
.preview-window {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    background: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.preview-window:hover {
    transform: translateY(-6px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

.preview-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.chrome-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.chrome-dot.r {
    background: #fca5a5;
}

.chrome-dot.y {
    background: #fde68a;
}

.chrome-dot.g {
    background: #86efac;
}

.chrome-url {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 16px;
    border-radius: 6px;
    margin: 0 3rem;
}

.preview-body {
    display: flex;
    min-height: 400px;
}

.preview-sidebar {
    width: 56px;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 8px;
}

.sidebar-item {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.sidebar-item.active {
    background: #e6f2ff;
    color: #0085FF;
}

.preview-main {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-search {
    width: 240px;
    height: 32px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
}

.topbar-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0085FF, #005099);
    border-radius: 50%;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.p-card {
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
}

.p-card-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.p-card-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.p-card-trend {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
}

.p-card-trend.up {
    color: #10b981;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.preview-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
}

.preview-row:last-child {
    border-bottom: none;
}

.row-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    border: 1px solid #f1f5f9;
    padding: 3px;
}

.row-text {
    flex: 1;
    min-width: 0;
}

.row-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
}

.row-text span {
    font-size: 0.72rem;
    color: #94a3b8;
}

.row-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
}

.row-badge.green {
    background: #ecfdf5;
    color: #059669;
}

.row-badge.blue {
    background: #e6f2ff;
    color: #0085FF;
}

.row-badge.purple {
    background: #faf5ff;
    color: #005099;
}


/* ==============================================
   LOGOS STRIP
   ============================================== */
.logos-strip {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
}

.logos-strip p {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    transition: all 0.3s;
}

.logo-item i {
    font-size: 1.4rem;
}

.logo-item:hover {
    color: #64748b;
}


/* ==============================================
   STATS
   ============================================== */
.stats {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
}

.stat-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0085FF;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
}


/* ==============================================
   SECTION HEAD (Shared)
   ============================================== */
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0085FF;
    background: #e6f3ff;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-head p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}


/* ==============================================
   FEATURES
   ============================================== */
.features {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.f-card {
    padding: 2rem;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    background: white;
    transition: all 0.3s;
}

.f-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.f-icon {
    width: 48px;
    height: 48px;
    background: #e6f3ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0085FF;
    margin-bottom: 1.25rem;
}

.f-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.f-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
}


/* ==============================================
   HOW IT WORKS
   ============================================== */
.how-it-works {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-num {
    width: 32px;
    height: 32px;
    background: #0085FF;
    color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 133, 255, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #0085FF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.step:hover .step-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 133, 255, 0.12);
    border-color: #b3d9ff;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.step-connector {
    width: 48px;
    height: 2px;
    background: #e2e8f0;
    margin-top: 46px;
    flex-shrink: 0;
}


/* ==============================================
   FEATURED JOBS
   ============================================== */
.featured-jobs {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.job-card {
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.75rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.job-card:hover {
    border-color: #b3d9ff;
    box-shadow: 0 8px 30px rgba(0, 133, 255, 0.08);
    transform: translateY(-4px);
}

.job-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.job-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: white;
    border: 1px solid #f1f5f9;
    padding: 4px;
}

.job-top h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.job-company {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 2px 0 0;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 99px;
}

.tag-type {
    background: #e6f2ff;
    color: #0085FF;
}

.tag-salary {
    background: #ecfdf5;
    color: #059669;
}

.tag-remote {
    background: #fefce8;
    color: #ca8a04;
}

.job-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f8fafc;
}

.job-time {
    font-size: 0.78rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-apply-sm {
    padding: 6px 16px;
    background: #0085FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-apply-sm:hover {
    background: #006ed4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 133, 255, 0.3);
}


/* ==============================================
   CAREER TOOLKIT
   ============================================== */
.toolkit {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tk-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.tk-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: #e2e8f0;
}

.tk-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tk-card h3 i {
    color: #0085FF;
    font-size: 0.95rem;
}

.tk-card>p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
}

.tk-preview {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    min-height: 110px;
}

/* ATS Score Ring */
.tk-score-ring {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.tk-score-ring svg {
    width: 100%;
    height: 100%;
}

.tk-score-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 800;
    color: #0085FF;
}

.tk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tk-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
}

.tk-tag.found {
    background: #ecfdf5;
    color: #059669;
}

.tk-tag.missing {
    background: #fef2f2;
    color: #dc2626;
}

/* Document Preview */
.tk-doc {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.tk-doc-line {
    height: 7px;
    background: #e2e8f0;
    border-radius: 4px;
}

.tk-doc-line.w100 {
    width: 100%;
}

.tk-doc-line.w90 {
    width: 90%;
}

.tk-doc-line.w80 {
    width: 80%;
}

.tk-doc-line.w70 {
    width: 70%;
}

.tk-doc-line.w60 {
    width: 60%;
}

/* Chat Preview */
.tk-chat {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tk-msg {
    padding: 7px 11px;
    border-radius: 10px;
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 85%;
}

.tk-msg.bot {
    background: #f1f5f9;
    color: #475569;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.tk-msg.user {
    background: #0085FF;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.tk-msg.feedback {
    background: #fefce8;
    color: #a16207;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

/* Kanban Preview */
.tk-kanban {
    display: flex;
    gap: 8px;
    width: 100%;
}

.tk-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tk-col-head {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    padding-bottom: 5px;
    border-bottom: 2px solid #e2e8f0;
}

.tk-col-head.blue {
    color: #0085FF;
    border-color: #b3d9ff;
}

.tk-col-head.green {
    color: #059669;
    border-color: #a7f3d0;
}

.tk-k-card {
    height: 26px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}


/* ==============================================
   CTA
   ============================================== */
.cta {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #0085FF, #005099);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 133, 255, 0.25);
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns .btn-primary {
    background: white;
    color: #0085FF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-btns .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}


/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: #0f172a;
    padding: 5rem 2rem 2rem;
    color: #94a3b8;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand h3 i {
    color: #339dff;
}

.footer-brand>p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: #64748b;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-socials a:hover {
    background: rgba(0, 133, 255, 0.15);
    color: #339dff;
    transform: translateY(-2px);
}

.footer-col h4 {
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    text-decoration: none;
    font-size: 0.88rem;
    color: #64748b;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #475569;
}


/* ==============================================
   MOBILE NAV ELEMENTS (Hidden on desktop)
   ============================================== */
.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.nav-hamburger::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 133, 255, 0.06), rgba(99, 102, 241, 0.06));
    opacity: 0;
    transition: opacity 0.25s;
}

.nav-hamburger:hover::before {
    opacity: 1;
}

.nav-hamburger:hover {
    border-color: #b3d9ff;
    box-shadow: 0 2px 8px rgba(0, 133, 255, 0.12);
    color: #0085FF;
}

.nav-hamburger:active {
    transform: scale(0.92);
}

.nav-hamburger i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.nav-actions-mobile {
    display: none;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* --- Mobile Nav --- */
    .nav-hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.08),
            0 2px 8px rgba(0, 0, 0, 0.04);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.25rem 1.5rem;
        z-index: 999;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.3s ease;
        display: flex;
    }

    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
    }

    /* Staggered link animations */
    .nav-links.mobile-open>a:nth-child(1) {
        animation: mobileNavSlideIn 0.3s 0.05s both;
    }

    .nav-links.mobile-open>a:nth-child(2) {
        animation: mobileNavSlideIn 0.3s 0.1s both;
    }

    .nav-links.mobile-open>a:nth-child(3) {
        animation: mobileNavSlideIn 0.3s 0.15s both;
    }

    .nav-links.mobile-open .nav-actions-mobile {
        animation: mobileNavSlideIn 0.35s 0.2s both;
    }

    @keyframes mobileNavSlideIn {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        padding: 14px 12px;
        font-size: 1rem;
        font-weight: 600;
        color: #334155;
        border-bottom: 1px solid rgba(241, 245, 249, 0.8);
        border-radius: 10px;
        transition: all 0.2s ease;
        position: relative;
        letter-spacing: -0.01em;
    }

    .nav-links a:hover {
        color: #0085FF;
        background: rgba(0, 133, 255, 0.04);
        padding-left: 16px;
    }

    .nav-links a:last-of-type {
        border-bottom: none;
    }

    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        margin-top: 1rem;
        padding-top: 1.25rem;
        border-top: 1px solid #e2e8f0;
    }

    .nav-actions-mobile .btn-ghost {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 13px 16px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        background: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
        color: #334155;
        transition: all 0.2s ease;
    }

    .nav-actions-mobile .btn-ghost:hover {
        border-color: #cbd5e1;
        background: #f8fafc;
        color: #0f172a;
    }

    .nav-actions-mobile .btn-primary-sm {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 13px 16px;
        width: 100%;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 12px;
        background: linear-gradient(135deg, #0085FF 0%, #006ce6 100%);
        color: #ffffff;
        border: none;
        box-shadow:
            0 4px 14px -2px rgba(0, 133, 255, 0.4),
            inset 0 1px 1px rgba(255, 255, 255, 0.15);
        transition: all 0.25s ease;
        text-decoration: none;
    }

    .nav-actions-mobile .btn-primary-sm:hover {
        transform: translateY(-1px);
        box-shadow:
            0 6px 20px -2px rgba(0, 133, 255, 0.45),
            inset 0 1px 1px rgba(255, 255, 255, 0.2);
    }

    /* --- Rest of mobile styles --- */
    .hero h1 {
        font-size: 2.5rem;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-cards {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .toolkit-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        margin: 0;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .cta-btns {
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }
}