/* ================================================
   JOBLYNK LANDING PAGE STYLES
   ================================================ */

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

:root {
    --bg: #0F172A;
    --bg-light: #1E293B;
    --border: #334155;
    --text: #F1F5F9;
    --muted: #94A3B8;
    --accent: #6366F1;
    --accent-light: #818CF8;
    --green: #059669;
    --green-light: #34D399;
    --orange: #F59E0B;
}

body.landing-page {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Navigation ── */
.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.landing-nav-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-nav-links {
    display: flex;
    gap: 2rem;
}

.landing-nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav-link:hover {
    color: var(--text);
}

.landing-nav-actions {
    display: flex;
    gap: 0.75rem;
}

.landing-nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
}

/* ── Buttons ── */
.btn-landing {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-landing-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
}

.btn-landing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

.btn-landing-green {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

.btn-landing-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.btn-landing-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-landing-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

/* ── Mobile Nav Menu ── */
.mobile-nav-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav-menu.open {
    display: flex;
    max-height: 300px;
    padding: 1rem 2rem;
}

.mobile-nav-menu a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

.mobile-nav-menu a:hover {
    color: var(--accent-light);
}

/* ── Hero ── */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2.5rem 5rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.tag-green {
    background: rgba(5, 150, 105, 0.1);
    color: var(--green-light);
}

.hero-tag-featured {
    font-size: 1.1rem;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(129, 140, 248, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    max-width: 480px;
}

.hero-image-wrap {
    position: relative;
}

.hero-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    object-fit: cover;
    border: 1.5px solid var(--border);
    display: block;
}

.hero-img-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(167, 139, 250, 0.15));
    pointer-events: none;
}

/* Trust Strip */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -10px;
    object-fit: cover;
}

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

.trust-avatar-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

.trust-label {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
}

.trust-label strong {
    color: var(--text);
}

/* ── Logos Section ── */
.logos-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2.5rem 3rem;
    text-align: center;
}

.logos-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.logos-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.4;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.logo-item i {
    font-size: 1.5rem;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: floatBounce 3s ease-in-out infinite;
}

.stat-top-right {
    top: -10px;
    right: -20px;
}

.stat-bottom-left {
    bottom: 20px;
    left: -30px;
    animation-delay: 1.5s;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.stat-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-text p {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2px;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Features Section ── */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.features-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.features-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.features-header p {
    color: var(--muted);
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.25s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
}

.feature-card.featured {
    border-color: var(--accent);
    position: relative;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.feature-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-card .feature-icon,
.feature-card h3,
.feature-card p {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(129, 140, 248, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    padding-bottom: 1.5rem;
}

/* ── How It Works ── */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, transparent 100%);
}

.how-it-works .features-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.how-it-works .features-header p {
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform .3s, background .3s, box-shadow .3s;
}

.step-item:hover {
    transform: translateY(-4px);
    background: rgba(99,102,241,0.08);
    box-shadow: 0 8px 32px rgba(99,102,241,0.12);
}

.step-img-wrap {
    width: 100%;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.step-item:hover .step-img {
    transform: scale(1.06);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.step-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ── Stats Counter ── */
.stats-counter-section {
    padding: 3rem 0;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-counter-item {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.stat-counter-item h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.35rem;
}

.stat-counter-item p {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ── Testimonials ── */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.25s;
}

.testimonial-card:hover {
    border-color: var(--accent);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.5;
}

.testimonial-content p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.user-meta h4 {
    font-size: 0.88rem;
    font-weight: 600;
}

.user-meta p {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── Dual CTA ── */
.dual-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2.5rem;
    gap: 1.5rem;
}

.cta-half {
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.cta-half h2,
.cta-half p,
.cta-half ul,
.cta-half .btn-landing {
    margin-left: 2rem;
    margin-right: 2rem;
}

.cta-half h2 {
    margin-top: 1.5rem;
}

.cta-half .btn-landing {
    margin-bottom: 2rem;
}

.cta-seeker {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.02));
    border: 1.5px solid rgba(99, 102, 241, 0.2);
}

.cta-recruiter {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(5, 150, 105, 0.02));
    border: 1.5px solid rgba(5, 150, 105, 0.2);
}

.cta-half h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-half p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.cta-recruiter-points {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.cta-recruiter-points li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text);
    font-size: 0.9rem;
}

.cta-recruiter-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}

.recruiter-pricing-section {
    padding: 5rem 0 0;
}

.recruiter-pricing-header {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.recruiter-pricing-header .hero-tag {
    margin-bottom: 1rem;
}

.recruiter-pricing-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 1rem;
}

.recruiter-pricing-header p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.recruiter-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.recruiter-price-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.98));
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.recruiter-price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, 0.35);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.12);
}

.recruiter-price-card.is-featured {
    border-color: rgba(52, 211, 153, 0.55);
    box-shadow: 0 18px 44px rgba(5, 150, 105, 0.16);
}

.recruiter-price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.recruiter-price-name {
    color: var(--green-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.recruiter-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.24);
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.recruiter-price-card h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.45rem;
}

.recruiter-price-jobs {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.recruiter-price-copy {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.recruiter-pricing-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.recruiter-pricing-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: var(--text);
    font-size: 0.84rem;
}

.recruiter-pricing-benefits i {
    color: var(--green-light);
}

.recruiter-pricing-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 22px;
    border: 1.5px solid rgba(52, 211, 153, 0.18);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(15, 23, 42, 0.95));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.recruiter-pricing-cta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.recruiter-pricing-cta p {
    color: var(--muted);
    max-width: 560px;
}

.recruiter-pricing-cta .btn-landing {
    flex-shrink: 0;
}

/* ── Footer ── */
.landing-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2.5rem 2rem;
    border-top: 1px solid var(--border);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.82rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--muted);
    font-size: 1.1rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent-light);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .landing-nav-links,
    .landing-nav-actions {
        display: none;
    }

    .landing-nav-hamburger {
        display: block;
    }

    .mobile-nav-menu {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem 3rem;
        gap: 2.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 320px;
    }

    .features-section {
        padding: 3rem 1.5rem;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .logos-strip {
        gap: 1.5rem;
    }

    .hero-trust-strip {
        flex-direction: column;
        text-align: center;
    }

    .dual-cta-section {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .recruiter-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .recruiter-pricing-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .recruiter-pricing-cta .btn-landing {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stat-top-right {
        top: -10px;
        right: 0;
    }

    .stat-bottom-left {
        bottom: 10px;
        left: 0;
    }

    .section-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-nav {
        padding: 1rem 1.25rem;
    }

    .recruiter-pricing-grid {
        grid-template-columns: 1fr;
    }

    .recruiter-pricing-benefits {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-stat {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .stat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .stat-text h4 {
        font-size: 0.88rem;
    }

    .stats-counter-grid {
        grid-template-columns: 1fr;
    }

    .logos-strip {
        gap: 1rem;
    }

    .logo-item {
        font-size: 0.9rem;
    }

    .logo-item i {
        font-size: 1.2rem;
    }
}
