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

:root {
    --red: #EB2A44;
    --primary-red: #EB2A44;
    --red-light: #fde8ea;
    --dark: #111111;
    --mid: #444444;
    --muted: #888888;
    --border: #E5E5E5;
    --bg: #FFFFFF;
    --bg-soft: #F8F8F8;
    --radius: 16px;
    --font: 'Inter', sans-serif;
    --bg-light: #fcfcfc;
    --card-bg: #ffffff;
    --text-dark: #2d3142;
    --text-muted: #7c8091;
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.06);
    --shadow-hub: 0 10px 40px rgba(255, 59, 71, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--bg);
    overflow-x: hidden;
}


main {
    background-color: transparent !important;

}

body{
        background: #fafafa !important;
}
#hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 127px 5% 134px;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.hero-eyebrow {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp .6s .2s forwards;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .7s .3s forwards;
}

.hero h1 .accent {
    color: var(--red);
}

.hero-desc {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .7s .45s forwards;
}

.hero-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp .7s .55s forwards;
}

.pill {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: transform .2s, box-shadow .2s;
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s .65s forwards;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    border: none;
    padding: .75rem 1.8rem;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(232, 38, 58, .3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 24, 47, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--border);
    padding: .75rem 1.8rem;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, transform .2s;
    box-shadow: 0 8px 24px rgba(241, 192, 197, 0.3);
}

.btn-outline:hover {
    border-color: var(--dark);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn .9s .5s forwards;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    width: 80%;
    max-width: 100%;
    /* padding: 2rem 3.5rem 4rem 3.5rem; */
}

.hero-main-img {
    width: 90%;
    scale: 1.8;
    border-radius: 24px;
    display: block;
    /* filter: drop-shadow(0 30px 60px rgba(0,0,0,.18)); */
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 10px 36px rgba(0,0,0,.16); */
    /* animation: float 3.5s ease-in-out infinite; */
    cursor: default;
    transition: transform .25s, box-shadow .25s;
}

/* .hero-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
} */

.hero-float img {
    width: clamp(170px, 22vw, 150px);
    display: block;
    border-radius: 16px;
}

.hero-float.f1 {
    width: clamp(170px, 22vw, 230px);
    top: 81%;
    right: 27%;
    animation-delay: 0s;
}

.hero-float.f2 {
    width: clamp(160px, 21vw, 220px);
    bottom: 22%;
    left: -12%;
    animation-delay: 0.8s;
}

.hero-float.f3 {
    width: clamp(165px, 21vw, 225px);
    bottom: 26%;
    right: -17%;
    animation-delay: 1.5s;
}

.big-bg-text {
    position: absolute;
    font-size: clamp(7rem, 11vw, 19rem);
    font-weight: 900;
    color: rgb(255 0 0 / 52%);
    letter-spacing: -0.07em;
    pointer-events: none;
    z-index: 0;
    right: -5%;
    top: -8%;
    transform: translateY(-50%);
    user-select: none;
}

.hero-role-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
}

.role-icon {
    width: 52px;
    height: 52px;
    background: #fde8ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .3rem;
    transition: transform .2s, background .2s;
}

.hero-role-card:hover .role-icon {
    transform: scale(1.08);
    background: #f9cdd1;
}

.hero-role-card strong {
    font-size: .92rem;
    font-weight: 700;
    color: var(--dark);
}

.hero-role-card span {
    font-size: .82rem;
    color: var(--mid);
}

section {
    padding: 30px 5%;
    position: relative;
    /* background-color: white; */
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 0 0 24px;
    height: 1px;
    background: var(--red);
}

.section-title {
    text-align: center;
    font-size:clamp(2.4rem, 4vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.section-title .accent {
    color: var(--red);
}

.section-sub {
    text-align: center;
    color: var(--mid);
    font-size: .98rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 4.5rem;
}

/* .ecosystem-container {
      display: grid;
      grid-template-columns: 1fr 320px 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
      max-width: 1100px;
      width: 100%;
      position: relative;
      align-items: center;
      margin: 0 auto;
    }
    .central-hub {
      grid-column: 2;
      grid-row: 2;
      justify-self: center;
      position: relative;
      width: 260px;
      height: 260px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 2rem 0;
    }

    .hub-outer-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 1.5px solid #eef0f4;
      border-radius: 50%;
    }

    .dot {
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: var(--primary-red);
      border-radius: 50%;
    }
    .dot-top   { top: -6px;  left: 50%; transform: translateX(-50%); }
    .dot-left  { left: -6px; top: 50%;  transform: translateY(-50%); }
    .dot-right { right: -6px;top: 50%;  transform: translateY(-50%); }

    .hub-core {
      width: 80%;
      height: 80%;
      background: var(--card-bg);
      border-radius: 50%;
      box-shadow: var(--shadow-hub);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 1.5rem;
    }

    .hub-core h1 { font-size: 1.6rem; font-weight: 800; }
    .hub-core h1 span { color: var(--primary-red); }
    .hub-core h1 .tm { font-size: 0.6rem; vertical-align: super; }
    .hub-core p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; }
    .card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: var(--shadow-soft);
      width: 100%;
      max-width: 360px;
      transition: opacity 0.4s ease;
    }

    .card-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
    .icon-wrapper {
      background-color: rgba(255, 59, 71, 0.07);
      color: var(--primary-red);
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex; justify-content: center; align-items: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .card-badge { font-size: 0.75rem; font-weight: 600; color: var(--primary-red); display: block; margin-bottom: 0.25rem; }
    .card h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }

    .features-list { list-style: none; }
    .features-list li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
    .features-list i { color: var(--primary-red); font-size: 1rem; }

    .card-candidates { grid-column: 1; grid-row: 2; justify-self: end; }
    .card-recruiters { grid-column: 3; grid-row: 2; justify-self: start; }

    .dynamic-top-container {
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
      position: relative;
      width: 360px;
      height: 260px;
    }
.fixed-card, #top-card {
  transition: none;
}
    .slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transform: scale(0.95) translateY(10px);
      transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s;
    }

    .slide-employer  { animation: displayEmployer  12s infinite ease-in-out; }
    .slide-recruiter { animation: displayRecruiter 12s infinite ease-in-out; }
    .slide-candidate { animation: displayCandidate 12s infinite ease-in-out; }

    @keyframes displayEmployer {
      0%, 33% {
        opacity: 1; visibility: visible;
        transform: scale(1) translateY(0);
      }
      36%, 100% {
        opacity: 0; visibility: hidden;
        transform: scale(0.95) translateY(-10px);
      }
    }

    @keyframes displayRecruiter {
      0%, 33% {
        opacity: 0; visibility: hidden;
        transform: scale(0.95) translateY(10px);
      }
      36%, 66% {
        opacity: 1; visibility: visible;
        transform: scale(1) translateY(0);
      }
      69%, 100% {
        opacity: 0; visibility: hidden;
        transform: scale(0.95) translateY(-10px);
      }
    }

    @keyframes displayCandidate {
      0%, 66% {
        opacity: 0; visibility: hidden;
        transform: scale(0.95) translateY(10px);
      }
      69%, 94% {
        opacity: 1; visibility: visible;
        transform: scale(1) translateY(0);
      }
      97%, 100% {
        opacity: 0; visibility: hidden;
        transform: scale(0.95) translateY(-10px);
      }
    }


    @media (max-width: 900px) {
      .ecosystem-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
      }
      .dynamic-top-container { order: -1; }
      .dot-left, .dot-right { display: none; }
    } */

.big-bg-soltion {
    position: absolute;
    font-size: clamp(7rem, 20vw, 19rem);
    font-weight: 900;
    color: rgb(255 0 0 / 52%);
    /* letter-spacing: -0.07em; */
    pointer-events: none;
    z-index: 0;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
    margin: 0 auto;
}

.success-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    /* font-family: sans-serif; */
    overflow: hidden;
}


.section-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.badge {
    border: 1px solid #ccc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.graphic-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 50px auto 0 auto;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.graphic-container.active {
    display: flex;
    opacity: 1;
}

.bg-watermark {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11rem;
    font-weight: 900;
    color: rgb(255 193 204 / 92%);
    z-index: 1;
    white-space: nowrap;
    letter-spacing: 5px;
}


.img-main {
    height: 126%;
    object-fit: contain;
    z-index: 3;
    position: relative;
    top: 50px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 4%, black 91%, transparent 100%);
}

.employer-section img {
    top: 57px;
}
.employer-section .float-right{
   right: 2%;
    top: 7%;
    z-index: 2;
}
.candidate-section img {
    top: 48px;
}

.candidate-section .float-left {
    left: -9%;
    top: 60px;
    z-index: 4;
    scale: 0.8;
}

.candidate-section .float-right {
    right: -4%;
    top: 21%;
    z-index: 2;
}

.img-float {
    position: absolute;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.float-left {
    left: -9%;
    bottom: 15%;
    z-index: 4;
}


.float-right {
    right: 5%;
    top: 7%;
    z-index: 2;
}

.img-float:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .graphic-container {
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .bg-watermark {
        font-size: 4rem;
    }

    .img-float {
        position: static;
        margin: 15px auto;
        max-width: 90%;
    }

    .img-main {
        height: auto;
        width: 70%;
    }
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.problems .fq-pill{
      margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
     width: fit-content;
    margin-bottom: 10px;
}
.problem-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: transform .25s, box-shadow .25s;
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.visible {
    opacity: 1;
    transform: none;
    transition: opacity .6s, transform .6s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--red-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.problem-card p {
    font-size: .85rem;
    color: var(--mid);
    line-height: 1.6;
}

.solution {
    /* background: var(--bg); */
}

.solution-hub {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

.sol-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sol-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: border-color .25s, transform .25s;
    opacity: 0;
    transform: translateX(-30px);
}

.sol-col:last-child .sol-card {
    transform: translateX(30px);
}

.sol-card.visible {
    opacity: 1;
    transform: none;
    transition: opacity .6s, transform .6s;
}

.sol-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.sol-card-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.sol-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .7rem;
}

.sol-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.sol-card ul li {
    font-size: .83rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sol-card ul li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
    font-size: .8rem;
}

.hub-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: none;
}

.hub-center.visible {
    opacity: 1;
    transition: opacity .8s .3s;
}

.hub-logo {
    width: 110px;
    height: 110px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    box-shadow: 0 0 0 12px rgba(232, 38, 58, .1), 0 0 0 24px rgba(232, 38, 58, .04);
    animation: pulse 3s ease-in-out infinite;
}

.hub-logo span {
    color: var(--red);
}

.hub-tag {
    margin-top: .8rem;
    font-size: .7rem;
    color: var(--muted);
    font-weight: 500;
    text-align: center;
}



.faq {
    background: var(--bg);
}

.faq-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
}

.faq-item.visible {
    opacity: 1;
    transform: none;
    transition: opacity .5s, transform .5s;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.3rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .95rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font);
}

.faq-q:hover {
    color: var(--red);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform .3s, background .2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: .88rem;
    color: var(--mid);
    line-height: 1.7;
    padding-bottom: 0;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 1.2rem;
}

.cta-banner {
    background: var(--dark);
    border-radius: 24px;
    margin: 30px 5% 60px;
    padding: 4rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(232, 38, 58, .25) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.cta-banner h2 span {
    color: var(--red);
}

.cta-banner p {
    color: rgba(255, 255, 255, .55);
    margin-bottom: 2rem;
    font-size: .98rem;
}

.cta-banner .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .2);
    padding: .75rem 1.8rem;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 12px rgba(232, 38, 58, .1), 0 0 0 24px rgba(232, 38, 58, .04);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(232, 38, 58, .07), 0 0 0 36px rgba(232, 38, 58, .02);
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 480px;
        margin: 2rem auto 0;
        padding: 0 1rem;
    }

    .hero-float.f1 {
        width: clamp(130px, 28vw, 180px);
        right: -4%;
    }

    .hero-float.f2 {
        width: clamp(120px, 26vw, 170px);
        left: -4%;
    }

    .hero-float.f3 {
        width: clamp(125px, 27vw, 175px);
        right: -3%;
    }

    .solution-hub {
        grid-template-columns: 1fr;
    }

    .hub-center {
        order: -1;
        margin-bottom: 1rem;
    }

    .sol-card {
        transform: translateY(20px) !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .step-connector {
        display: none;
    }

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

@media (max-width: 640px) {

    section {
        padding: 60px 5%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        margin: 0 4% 40px;
        padding: 3rem 5%;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* @media (prefers-reduced-motion: reduce) {

    *:not(.eco-card)::before,
    *:not(.eco-card)::after,
    *:not(.eco-card) {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
} */
/* 
@media (prefers-reduced-motion: reduce) {
    *:not(.eco-card):not(.slide-right):not(.slide-left)::before,
    *:not(.eco-card):not(.slide-right):not(.slide-left)::after,
    *:not(.eco-card):not(.slide-right):not(.slide-left) {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
} */





@media (max-width: 1024px) {
    .hero-img-wrap {
        width: 90%;
    }

    .hero-main-img {
        scale: 1.4;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 80px 5% 50px;
    }

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

    .hero-visual {
        max-width: 480px;
        margin: 2rem auto 0;
    }

    .hero-main-img {
        scale: 1.2;
        width: 100%;
    }

    .big-bg-text {
        font-size: clamp(4rem, 12vw, 8rem);
        right: 0;
        top: 0;
    }

    .hero-float.f1 {
        width: clamp(120px, 26vw, 180px);
        right: 20%;
        top: 85%;
    }

    .hero-float.f2 {
        width: clamp(110px, 24vw, 160px);
        left: -4%;
    }

    .hero-float.f3 {
        width: clamp(115px, 25vw, 165px);
        right: -4%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 70px 4% 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
.problems .fq-pill {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
            width: fit-content;
    margin-bottom: 10px;
}
    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-pills {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-role-card {
        flex: 1 1 calc(33% - 0.5rem);
        min-width: 90px;
    }

    .role-icon {
        width: 42px;
        height: 42px;
    }

    .hero-role-card strong {
        font-size: 0.8rem;
    }

    .hero-role-card span {
        font-size: 0.72rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

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

    .hero-main-img {
                scale: 1.4;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .hero-float {
        display: none;
    }

    .big-bg-text {
        font-size: 4.6rem;
        opacity: 0.4;
    }
}

@media (max-width: 1024px) {
    .ecosystem-container {
        grid-template-columns: 1fr 280px 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 900px) {
    .ecosystem-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .dynamic-top-container {
        order: 1;
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    #top-card {
        position: static;
        width: 100%;
    }

    .central-hub {
        order: 2;
        margin: 0;
    }

    .card-candidates {
        order: 3;
        justify-self: center;
    }

    .card-recruiters {
        order: 4;
        justify-self: center;
    }

    .dot-left,
    .dot-right {
        display: none;
    }

    .card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .central-hub {
        width: 200px;
        height: 200px;
    }

    .hub-core h1 {
        font-size: 1.2rem;
    }

    .hub-core p {
        font-size: 0.75rem;
    }

    .card {
        padding: 1.25rem;
    }

    .card h2 {
        font-size: 1.05rem;
    }

    .features-list li {
        font-size: 0.82rem;
    }
}

@media (max-width: 900px) {
    .graphic-container {
        height: 380px;
    }

    .bg-watermark {
        font-size: 6rem;
    }

    .img-main {
        height: 110%;
    }

    .img-float {
        max-width: 180px;
    }

    .float-left {
        left: -4%;
    }

    .float-right {
        right: -2%;
    }
}

@media (max-width: 640px) {
    .success-section {
               padding: 371px 12px;
                       padding-bottom: 25px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .graphic-container {
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
    }

    .bg-watermark {
        font-size: 3.5rem;
        top: 8%;
    }

    .img-main {
        height: auto;
        width: 75%;
        top: 0;
        mask-image: none;
    }

    .img-float {
        position: static;
        max-width: 80%;
        margin: 0 auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .float-left,
    .float-right {
        position: static;
    }

    .employer-section img,
    .candidate-section img {
        top: 0;
    }

    .candidate-section .float-left,
    .candidate-section .float-right {
        position: static;
    }
}

@media (max-width: 900px) {
    .sec-faq {
        padding: 40px 5%;
    }

    .fq-wrap {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .fq-h2 {
        font-size: 1.5rem;
    }

    .fq-sub {
        font-size: 0.85rem;
    }

    .fq-q {
        font-size: 0.88rem;
        padding: 1rem 0;
    }
}

@media (max-width: 900px) {
    .cta-banner {
        margin: 20px 4% 40px;
        padding: 3rem 4%;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .cta-banner {
        margin: 20px 4% 30px;
        padding: 2.5rem 5%;
        border-radius: 16px;
    }

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

    .cta-banner p {
        font-size: 0.88rem;
    }

    .cta-banner .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner .btn-group button {
        width: 100%;
        max-width: 280px;
    }
}


@media (max-width: 640px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-sub {
        font-size: 0.88rem;
    }

    section {
        padding: 40px 4%;
    }
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90vw);
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 99999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: slideUp 0.4s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-icon { font-size: 22px; flex-shrink: 0; }

.cookie-text p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn.accept {
  background: #EB2A44;
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  color: #94a3b8;
  border: 1px solid #334155;
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

@media (max-width: 480px) {
  .cookie-content { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}