/* ===================================
   Home Page Styles - NEON BLUE THEME
   WITH AI MATCH SECTION
   =================================== */

/* Main */
main {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1425 100%);
    min-height: 100vh;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

img {
    max-width: 100% !important;
    height: auto !important;
}

input, textarea, select {
    font-size: 16px !important;
}

/* ===================================
   Hero Section
   =================================== */

main > section:first-of-type {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

main > section:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 9999px;
    filter: blur(3rem);
    margin-right: -12rem;
    margin-top: -12rem;
    z-index: 0;
}

main > section:first-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 9999px;
    filter: blur(3rem);
    margin-left: -12rem;
    margin-bottom: -12rem;
    z-index: 0;
}

main > section:first-of-type > div {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

main > section:first-of-type h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

main > section:first-of-type > div > p {
    font-size: 1.125rem;
    color: #cffafe;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

/* Search Bar */
main > section:first-of-type > div > div:nth-of-type(1) {
    position: relative;
    margin-bottom: 3rem;
}

main > section:first-of-type > div > div:nth-of-type(1) > div {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(1rem);
    border-radius: 1rem;
    border: 2px solid rgba(34, 211, 238, 0.3);
    overflow: hidden;
    box-shadow: 0 0 0 rgba(6, 182, 212, 0);
    z-index: 1;
    transition: all 0.3s ease;
}

main > section:first-of-type > div > div:nth-of-type(1) > div:focus-within {
    border-color: rgba(34, 211, 238, 0.8);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5), inset 0 0 20px rgba(6, 182, 212, 0.1);
}

#jobtermin-search {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0;
}

#jobtermin-search > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid rgba(34, 211, 238, 0.2);
}

#jobtermin-search > div:last-child {
    border-right: none;
}

#jobtermin-search svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #22d3ee;
    flex-shrink: 0;
    stroke: #22d3ee;
}

#jobtermin-search input {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
    caret-color: #22d3ee;
    position: relative;
    z-index: 2;
}

#jobtermin-search input::placeholder {
    color: rgba(34, 211, 238, 0.5);
}

#jobtermin-search input:focus {
    outline: none;
}

#jobtermin-search button {
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

#jobtermin-search button:hover {
    background: linear-gradient(90deg, #06a8cc, #2563eb, #06a8cc);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

#jobtermin-search button:active {
    transform: translateY(0);
}

#jobtermin-search button:disabled {
    cursor: not-allowed;
}

.loading-spinner {
    display: none !important;
}

.loading-spinner svg {
    width: 1.5rem;
    height: 1.5rem;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#search-results {
    max-height: 500px;
    overflow-y: auto;
    padding: 2rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
    display: none;
    border-radius: 0 0 1rem 1rem;
}

#search-results.show {
    display: block;
}

#search-results a {
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(34, 211, 238, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
}

#search-results a:hover {
    border-color: #06b6d4;
    background: rgba(51, 65, 85, 0.9);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

#search-results h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#search-results p {
    color: #cffafe;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Buttons */
.hero-ctas {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-ctas a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
}

.cta-primary {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    color: white;
}

.cta-primary:hover {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(34, 211, 238, 0.5);
    color: #22d3ee;
}

.cta-secondary:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: #06b6d4;
    color: #06b6d4;
}

.hero-ctas svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

/* ===================================
   Stats Section
   =================================== */

main > section:nth-of-type(2) {
    padding: 4rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, rgba(10, 14, 39, 0.5), transparent);
}

main > section:nth-of-type(2) > div {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

main > section:nth-of-type(2) > div > div {
    text-align: center;
}

main > section:nth-of-type(2) > div > div > div:first-child {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(to right, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

main > section:nth-of-type(2) > div > div > div:last-child {
    color: #cffafe;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===================================
   How It Works Section
   =================================== */

main > section:nth-of-type(3) {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

main > section:nth-of-type(3) > div {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

main > section:nth-of-type(3) > div > p {
    text-align: center;
    color: #cffafe;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container > div {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.8) 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.3s ease;
}

.steps-container > div:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    transform: translateY(-5px);
}

.steps-container > div:nth-child(2) {
    animation-delay: 0.1s;
}

.steps-container > div:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-icon {
    margin-bottom: 1.5rem;
}

.step-icon svg {
    width: 4rem;
    height: 4rem;
    color: #22d3ee;
    stroke: #22d3ee;
    margin: 0 auto;
}

.step-number {
    color: rgba(34, 211, 238, 0.6);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.steps-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.steps-container p {
    color: #cffafe;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   AI MATCH SECTION - NEW
   =================================== */

.ai-match-section {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(34, 211, 238, 0.05) 0%, 
        rgba(59, 130, 246, 0.03) 50%, 
        rgba(34, 211, 238, 0.05) 100%);
}

.ai-match-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35rem;
    height: 35rem;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
    border-radius: 9999px;
    filter: blur(3rem);
    z-index: 0;
}

.ai-match-section > div {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.ai-match-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.4);
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    color: #22d3ee;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.badge-star {
    font-size: 1.1rem;
}

.ai-match-title {
    animation: fadeInDown 0.8s ease-out 0.3s both;
    background: linear-gradient(to right, #22d3ee, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-match-description {
    font-size: 1.125rem;
    color: #cffafe;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ai-match-container {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.ai-match-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
}

.ai-stat-item {
    text-align: center;
    padding: 1rem;
}

.ai-stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(to right, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.ai-stat-label {
    color: #cffafe;
    font-size: 0.875rem;
    font-weight: 500;
}

.ai-match-features-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.ai-feature-advanced {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-feature-advanced:hover {
    border-color: rgba(34, 211, 238, 0.5);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.5) 100%);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
    transform: translateY(-5px);
}

.ai-feature-icon-advanced {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.15);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.ai-feature-advanced:hover .ai-feature-icon-advanced {
    background: rgba(34, 211, 238, 0.3);
    transform: scale(1.1) rotate(-5deg);
}

.ai-feature-icon-advanced svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.ai-feature-advanced h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.ai-feature-advanced p {
    color: #cffafe;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.ai-match-cta-wrapper {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-ai-match-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    padding: 1.125rem 3rem;
    border-radius: 0.85rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-ai-match-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.cta-ai-match-primary:hover {
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.5), 0 0 60px rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    background: linear-gradient(135deg, #06a8cc 0%, #2563eb 100%);
}

.cta-ai-match-primary:hover::before {
    left: 100%;
}

.cta-ai-match-primary svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.cta-ai-match-primary:hover svg {
    transform: translateX(4px);
}

.ai-match-footnote {
    color: rgba(207, 250, 254, 0.7);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

/* ===================================
   Paid Services Section
   =================================== */

.paid-services-section {
    padding: 6rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.3));
    position: relative;
    overflow: hidden;
}

.paid-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30rem;
    height: 30rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 9999px;
    filter: blur(4rem);
    z-index: 0;
}

.paid-services-section > div {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-subtitle {
    font-size: 1.125rem;
    color: #cffafe;
    margin: 1rem auto 2rem;
    max-width: 42rem;
    font-weight: 300;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    color: #cffafe;
    font-weight: 500;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.4) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0s;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 9999px;
    filter: blur(2rem);
    z-index: 0;
}

.service-card:hover {
    border-color: rgba(34, 211, 238, 0.5);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.5) 100%);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
    transform: translateY(-8px);
}

.service-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.15);
    border-radius: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: rgba(34, 211, 238, 0.25);
    transform: scale(1.1) rotate(-5deg);
}

.service-icon {
    width: 2rem;
    height: 2rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.service-description {
    color: #cffafe;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-price {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.price-range {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #22d3ee;
    margin-bottom: 0.25rem;
}

.price-note {
    display: block;
    color: #cffafe;
    font-size: 0.8rem;
    opacity: 0.8;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: #22d3ee;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.service-btn:hover {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: white;
    border-color: #06b6d4;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

.services-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 1.5rem;
    border: 1px solid rgba(34, 211, 238, 0.1);
    position: relative;
    z-index: 10;
}

.services-footer p {
    color: #cffafe;
    font-size: 1rem;
    margin: 0;
}

.footer-icon {
    margin-right: 0.5rem;
}

.services-footer strong {
    color: #22d3ee;
}

/* ===================================
   Popular Hiring Roles Section
   =================================== */

main > section:nth-of-type(5) {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.5));
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

main > section:nth-of-type(5) > div {
    max-width: 1440px;
    margin: 0 auto;
}

.featured-header {
    margin-bottom: 3rem;
    text-align: center;
}

main > section:nth-of-type(5) h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

main > section:nth-of-type(5) p {
    color: #cffafe;
    font-size: 1rem;
    font-weight: 300;
}

#featured-jobs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.hiring-category {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.3s ease;
}

.hiring-category:hover {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.category-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 1rem;
}

.category-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #22d3ee;
    stroke: #22d3ee;
}

.category-content {
    flex: 1;
    text-align: left;
}

.category-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.category-content p {
    color: #cffafe;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.category-arrow {
    flex-shrink: 0;
    color: rgba(34, 211, 238, 0.5);
    transition: all 0.3s ease;
}

.category-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

.hiring-category:hover .category-arrow {
    color: #06b6d4;
    transform: translateX(4px);
}

.featured-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 1.5rem;
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.featured-footer p {
    color: #cffafe;
    font-size: 1rem;
    margin: 0;
}

.featured-footer strong {
    color: #22d3ee;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: 8rem 1rem;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.05), rgba(59, 130, 246, 0.05), rgba(34, 211, 238, 0.05));
}

.cta-section > div {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: #cffafe;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-section > div > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(34, 211, 238, 0.5);
    color: #22d3ee;
}

.btn-secondary:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: #06b6d4;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   MOBILE RESPONSIVE - 768px
   =================================== */

@media (max-width: 768px) {
    main > section:first-of-type {
        padding: 3rem 1rem;
    }

    main > section:first-of-type h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    main > section:first-of-type > div > p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    /* CRITICAL: Search Bar Fix */
    #jobtermin-search {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    #jobtermin-search > div {
        border-right: none !important;
        border-bottom: 1px solid rgba(34, 211, 238, 0.2) !important;
        padding: 1rem 1.25rem !important;
        gap: 0.8rem !important;
    }

    #jobtermin-search > div:last-child {
        border-bottom: none !important;
    }

    #jobtermin-search button {
        padding: 1rem 1.25rem !important;
        width: 100% !important;
        border-radius: 0 0 1rem 1rem !important;
    }

    #jobtermin-search input {
        font-size: 16px !important;
    }

    #jobtermin-search svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    .hero-ctas {
        margin-top: 2rem;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    main > section:nth-of-type(2) {
        padding: 3rem 1rem;
    }

    main > section:nth-of-type(2) > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    main > section:nth-of-type(2) > div > div > div:first-child {
        font-size: 1.75rem;
    }

    main > section:nth-of-type(2) > div > div > div:last-child {
        font-size: 0.75rem;
    }

    main > section:nth-of-type(3) {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    main > section:nth-of-type(3) > div > p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-container > div {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .step-icon svg {
        width: 3rem;
        height: 3rem;
    }

    .steps-container h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .steps-container p {
        font-size: 0.9rem;
    }

    /* AI Match Mobile */
    .ai-match-section {
        padding: 4rem 1rem;
    }

    .ai-match-badge {
        font-size: 0.8rem;
        padding: 0.55rem 1.1rem;
    }

    .ai-match-title {
        font-size: 1.75rem;
    }

    .ai-match-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .ai-match-container {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .ai-match-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .ai-stat-number {
        font-size: 1.75rem;
    }

    .ai-stat-label {
        font-size: 0.75rem;
    }

    .ai-match-features-advanced {
        gap: 1.5rem;
    }

    .ai-feature-advanced {
        padding: 1.5rem 1.25rem;
    }

    .ai-feature-advanced h4 {
        font-size: 1rem;
    }

    .ai-feature-advanced p {
        font-size: 0.85rem;
    }

    .cta-ai-match-primary {
        width: 100%;
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
    }

    .ai-match-footnote {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .paid-services-section {
        padding: 4rem 1rem;
    }

    .services-header {
        margin-bottom: 2.5rem;
    }

    .services-subtitle {
        font-size: 1rem;
        margin: 0.75rem auto 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin: 0.75rem 0;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-icon-wrapper {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .service-price {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .price-range {
        font-size: 1rem;
    }

    .service-btn {
        width: 100%;
        padding: 0.65rem 1.25rem;
    }

    main > section:nth-of-type(5) {
        padding: 4rem 1rem;
    }

    main > section:nth-of-type(5) h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    main > section:nth-of-type(5) p {
        font-size: 0.95rem;
    }

    #featured-jobs {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hiring-category {
        padding: 1.25rem;
        gap: 1rem;
    }

    .category-icon {
        width: 2.75rem;
        height: 2.75rem;
    }

    .category-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .category-content h3 {
        font-size: 1rem;
    }

    .category-content p {
        font-size: 0.8rem;
    }

    .featured-footer {
        padding: 1.5rem;
    }

    .featured-footer p {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-section > div > div {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    #search-results {
        max-height: 400px;
        padding: 1.5rem;
    }

    #search-results a {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    #search-results h4 {
        font-size: 1rem;
    }

    #search-results p {
        font-size: 0.85rem;
    }
}

/* ===================================
   MOBILE RESPONSIVE - 480px
   =================================== */

@media (max-width: 480px) {
    main > section:first-of-type {
        padding: 2.5rem 0.75rem;
    }

    main > section:first-of-type h1 {
        font-size: 1.5rem;
    }

    main > section:first-of-type > div > p {
        font-size: 0.95rem;
    }

    #jobtermin-search > div {
        padding: 0.75rem 1rem;
    }

    #jobtermin-search svg {
        width: 1rem;
        height: 1rem;
    }

    #jobtermin-search button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    main > section:nth-of-type(2) > div {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .step-icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .ai-match-title {
        font-size: 1.5rem;
    }

    .ai-match-description {
        font-size: 0.95rem;
    }

    .ai-match-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }

    .ai-stat-number {
        font-size: 1.5rem;
    }

    .ai-stat-label {
        font-size: 0.7rem;
    }

    .ai-match-features-advanced {
        grid-template-columns: 1fr;
    }

    .ai-feature-advanced {
        padding: 1.25rem;
    }

    .cta-ai-match-primary {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .ai-feature-icon-advanced {
        width: 3rem;
        height: 3rem;
    }

    .ai-feature-icon-advanced svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }

    .services-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }
}

/* Touch Friendly Buttons */
@media (hover: none) and (pointer: coarse) {
    button, a, .service-btn, .cta-primary, .cta-secondary, .cta-ai-match {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(51, 65, 85, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06b6d4, #3b82f6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #22d3ee, #60a5fa);
}