*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple-deep: #2a2cb8;
    --purple-mid: #4f46e5;
    --purple-light: #ad91fb;
    --purple-pale: #d9d3ff;
    --purple-ghost: #f1e1ff;
    --cream: #ffedad;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b6b8a;
    --hero-text: #00004d;
    --band-deep: #4d3cf5;
    --band-mid: #5a28c0;
    --band-light: #9058e9;
    --niches-dark: #3a128e;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #faf8fd;
    color: var(--text-dark);
    min-height: 100vh;
}

/* ─── HEADER ─── */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #ebebf5;
    box-shadow: #00000025 0 2px 10px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btns {
    display: flex;
    padding: 5px;
    gap: 10px;
    align-items: center;
}

.header-cta {
    color: var(--purple-deep);
    padding: 2px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.header-cta:hover {
    opacity: 0.7;
}

.browse-job {
    font-family: Poppins, sans-serif;
    text-decoration: none;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 1px 10px #c1b6f3;
    transition: all 0.2s;
}

.browse-job:hover {
    box-shadow: 0 1px 15px #3a3dff;
    opacity: 1;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(420px, 100vw, 560px);
    padding: 40px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(173, 145, 251, 0.18);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 237, 173, 0.12);
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Layer 2: characters — swipe down on load */
.hero-characters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-characters-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroCharSwipeDown 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) both;
}

/* Layer 3: text content — swipe up on load */
.hero-content {
    position: relative;
    z-index: 2;
    animation: heroTextSwipeUp 0.9s cubic-bezier(0.16, 0.84, 0.44, 1) both;
    animation-delay: 0.15s;
}

@keyframes heroCharSwipeDown {
    from {
        transform: translateY(-70px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes heroTextSwipeUp {
    from {
        transform: translateY(70px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-characters-img,
    .hero-content {
        animation: none;
    }
}

.hero-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-top: -10px;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--hero-text);
    line-height: 1.2;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.hero h1 span {
    color: #5e17eb;
}

.hero p {
    color: var(--hero-text);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.hero p span {
    color: #5e17eb;
    font-weight: bold;
}

.hero-power p {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 30px;
}

.powered-img {
    margin-top: -75px;
}

.hero-btn {
    display: inline-block;
    background: #fffcff;
    color: var(--purple-mid);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: visible;
    z-index: 1;
    box-shadow: 0 0 30px #a88bff;
}

.hero-btn:hover {
    box-shadow: 0 0 60px #eb70fd;
    color: #8056ff;
}

/* ─── STATS ROW ─── */
.stats {
    display: flex;
    padding: 2px;
    margin: 0 20px;
    background: #8566FF;
    border-radius: 18px;
    transform: translateY(-26px);
    box-shadow: 0 10px 20px #5f54ff7b;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.stat {
    flex: 1;
    background: var(--white);
    text-align: center;
    padding: 20px 8px;
}

.stat:first-child {
    border-radius: 17px 0 0 17px;
}

.stat:last-child {
    border-radius: 0 17px 17px 0;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 40px;
    background-color: #3440E6;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 4px;
    transition: opacity 0.3s;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── TRUSTED BY ─── */

.brands-label {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 40px;
    margin-bottom: 14px;
    text-shadow:
        -2px  0   #faf8fd,
         2px  0   #faf8fd,
         0   -2px #faf8fd,
         0    2px #faf8fd,
        -2px -2px #faf8fd,
         2px -2px #faf8fd,
        -2px  2px #faf8fd,
         2px  2px #faf8fd;
}

.brands-card {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(120deg, #3a2cd9, #8A6DFF, #9D57FF, #8A6DFF, #3a2cd9);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    border-bottom: #faf8fd solid 2px;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.brands-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: scrollBrands 33s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.brand-name:hover {
    opacity: 1;
}

@keyframes scrollBrands {
    from { transform: translateX(0); }
    to { transform: translateX(-33.3333%); }
}

/* ─── SECTION ─── */
.section {
    padding: 36px 80px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    text-shadow:
        -2px 0 #faf8fd,
         2px 0 #faf8fd,
         0 -2px #faf8fd,
         0 2px #faf8fd,
        -2px -2px #faf8fd,
         2px -2px #faf8fd,
        -2px 2px #faf8fd,
         2px 2px #faf8fd;
}

/* ─── HOW IT WORKS ─── */
.how-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #3e1db7, #8b63f2);
}

/* doodle line at the background */
.how-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22600%22%20height%3D%22300%22%20viewBox%3D%220%200%20600%20300%22%3E%0A%3Cpath%20d%3D%22M-20%2C220%20C120%2C140%20220%2C280%20340%2C180%20S520%2C60%20620%2C140%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20opacity%3D%220.45%22/%3E%0A%3Ccircle%20cx%3D%22340%22%20cy%3D%22180%22%20r%3D%223.2%22%20fill%3D%22%23ffffff%22%20opacity%3D%220.4%22/%3E%0A%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    opacity: 0.5;
}

.how-section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight:  bold;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-top: 50px;
}

.steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px 16px;
    max-width: 900px;
    margin: 100px auto 150px auto;
}

.step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.4s ease, filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    background: var(--white);
    border-radius: 18px;
    padding: 28px 20px 22px;
    border: 1px solid #ededf7;
    box-shadow: 0 6px 20px rgba(42, 44, 184, 0.09);
}

.step::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background-image: radial-gradient(var(--purple-pale) 1.3px, transparent 1.3px);
    background-size: 12px 12px;
    -webkit-mask-image: linear-gradient(to left, black 0%, black 50%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, black 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
    border-radius: 0 18px 18px 0;
}

.step-num,
.step-body {
    position: relative;
    z-index: 1;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.steps:hover .step:not(:hover) {
    opacity: 0.65;
    filter: saturate(0.85);
    transform: scale(0.97);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(42, 44, 184, 0.22);
    border-color: var(--purple-light);
}

.step-num {
    position: absolute;
    top: -18px;
    left: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #3e1db7;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(42, 44, 184, 0.35);
}

.step-body {
    margin-top: 16px;
}

.step-body h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

@media (max-width: 420px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

/* ─── NICHES ─── */
.niches-section {
    position: relative;
    padding: 56px 24px 80px;
    background: linear-gradient(
        180deg,
        #8b63f2 0%,
        #8259ea 3%,
        #4d24a6 8%,
        var(--niches-dark) 11%,
        var(--niches-dark) 86%,
        #582eac 90%,
        #9172c6 94%,
        #ddc6f5 97%,
        var(--purple-ghost) 100%
    );
    overflow: hidden;
}

/* twinkling dots background */
.niches-section::before,
.niches-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1.4px);
}

.niches-section::before {
    background-size: 48px 48px;
    background-position: 0 0;
    animation: niches-twinkle 3.6s ease-in-out infinite;
}

.niches-section::after {
    background-size: 72px 72px;
    background-position: 24px 30px;
    animation: niches-twinkle 3.6s ease-in-out infinite;
    animation-delay: 1.8s;
}

@keyframes niches-twinkle {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.65; }
}

.niches-title,
.niche-cloud,
.niches-p {
    position: relative;
    z-index: 1;
}

.niches-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-top: 100px;
    margin-bottom: 50px;
}

.niche-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 22px;
    max-width: 1100px;
    margin: 0 auto 0px auto;
}

.niches-title,
.niche-cloud,
.niches-p {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.4s ease;
}

.niches-title.visible,
.niche-cloud.visible,
.niches-p.visible {
    opacity: 1;
    transform: translateY(0);
}

.niche-word {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.1px rgb(255, 255, 255);
    opacity: 0.6;
    white-space: nowrap;
    cursor: default;
    transition: color 0.25s ease, transform 0.25s ease, -webkit-text-stroke 0.25s ease;
}

.niche-word:hover {
    color: var(--white);
    transform: scale(1.08);
    opacity: 1;
}

.niche-sm { font-size: 1rem; opacity: 0.75; }
.niche-md { font-size: 1.4rem; opacity: 0.85; }
.niche-lg { font-size: 2rem; opacity: 0.95; }
.niche-xl { font-size: 2.6rem; opacity: 1; }

.niche-word:nth-child(3n) { transform: rotate(-2deg); }
.niche-word:nth-child(4n) { transform: rotate(2deg); }
.niche-word:nth-child(3n):hover,
.niche-word:nth-child(4n):hover { transform: rotate(0deg) scale(1.08); }

@media (max-width: 480px) {
    .niche-word { -webkit-text-stroke: 1.4px rgb(255, 255, 255); }
    .niche-xl { font-size: 1.9rem; }
    .niche-lg { font-size: 1.5rem; }
    .niche-md { font-size: 1.1rem; }
    .niche-sm { font-size: 0.98rem; }
    .niches-p { font-size: 1.9rem; }
}

.niches-p {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d5a5ff;
    margin-top: 40px;
    margin-bottom: 120px;
    transition: all 0.3s;
}

.niches-p:hover {
    transform: scale(1.1);
    color: #c077ff;
}

/* ─── PERKS ─── */
.perks-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
                180deg, 
                var(--purple-ghost) 0%, 
                #f4e7ff 86%,
                #f5ebfd 90%,
                #f8f1fd 96%,
                #faf8fd 100%
                );
    padding-top: 40px;
    padding-bottom: 100px;
}

/* rising sparkles background */
.sparkles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.sparkle {
    position: absolute;
    bottom: -24px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple-light);
    box-shadow: 0 0 6px 2px rgba(173, 145, 251, 0.7);
    opacity: 0;
    animation: sparkle-rise 8s linear infinite;
}

@keyframes sparkle-rise {
    0%   { transform: translateY(0) scale(0.6); opacity: 0; }
    10%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateY(-620px) scale(1); opacity: 0; }
}

.sparkle:nth-child(1)  { left: 4%;  width: 4px; height: 4px; animation-duration: 7s;  animation-delay: 0s; }
.sparkle:nth-child(2)  { left: 14%; width: 6px; height: 6px; animation-duration: 9s;  animation-delay: 1.2s; }
.sparkle:nth-child(3)  { left: 24%; width: 3px; height: 3px; animation-duration: 6.5s; animation-delay: 2.4s; }
.sparkle:nth-child(4)  { left: 36%; width: 5px; height: 5px; animation-duration: 8.5s; animation-delay: 0.6s; }
.sparkle:nth-child(5)  { left: 48%; width: 4px; height: 4px; animation-duration: 7.5s; animation-delay: 3s; }
.sparkle:nth-child(6)  { left: 58%; width: 6px; height: 6px; animation-duration: 9.5s; animation-delay: 1.8s; }
.sparkle:nth-child(7)  { left: 68%; width: 3px; height: 3px; animation-duration: 6s;   animation-delay: 2.7s; }
.sparkle:nth-child(8)  { left: 78%; width: 5px; height: 5px; animation-duration: 8s;   animation-delay: 0.9s; }
.sparkle:nth-child(9)  { left: 88%; width: 4px; height: 4px; animation-duration: 7s;   animation-delay: 3.6s; }
.sparkle:nth-child(10) { left: 94%; width: 6px; height: 6px; animation-duration: 9s;   animation-delay: 1.5s; }
.sparkle:nth-child(11) { left: 32%; width: 3px; height: 3px; animation-duration: 6.8s; animation-delay: 4.2s; }
.sparkle:nth-child(12) { left: 62%; width: 4px; height: 4px; animation-duration: 8.2s; animation-delay: 2s; }

/*
.perks-bg {
    position: absolute;
    top: 73%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    max-width: 70%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.perks-bg img {
    width: 100%;
    height: auto;
    display: block;
}
*/

.why-title {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #7A59FF;
    margin-top: 20px;
    margin-bottom: 60px;
}

.perks-pill {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 150px;
    background: #8566FF;
    border-radius: 18px;
    padding: 2px;
    box-shadow: 0 10px 20px rgba(95, 84, 255, 0.35);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
}

.perk-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.4s ease, background 0.25s ease;
    background: var(--white);
    text-align: center;
    padding: 26px 12px;
}

.perk-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.perk-item:hover {
    background: radial-gradient(circle at 50% 0%, #8566FF 0%, var(--purple-mid) 70%);
}

.perk-icon {
    display: block;
    font-size: 24px;
    color: var(--purple-mid);
    margin-bottom: 10px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.perk-item:hover .perk-icon {
    color: white;
    transform: scale(1.1);
}

.perk-body h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    transition: color 0.25s ease;
}

.perk-item:hover .perk-body h4 {
    color: white;
}

.perk-body p {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.45;
    transition: color 0.25s ease;
}

.perk-item:hover .perk-body.perk-body p {
    color: white;
}

@media (max-width: 480px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── FAQ ─── */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    background: repeating-radial-gradient(
        circle,
        transparent 0,
        transparent 58px,
        rgba(121, 59, 255, 0.08) 59px,
        rgba(121, 59, 255, 0.08) 60px
    );
    pointer-events: none;
    z-index: 0;
}

.faq-title,
.faq-list {
    position: relative;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #4B01E6;
    margin-top: 60px;
    margin-bottom: 28px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid #793bff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 10px #ddd;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.4s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
    box-shadow: 0 4px 16px rgba(42, 44, 184, 0.08);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.visible:hover {
    transform: scale(1.02);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: #4B01E6;
    text-align: left;
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    color: #4B01E6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 18px 16px;
}

.faq-last {
    margin-bottom: 80px;
}

/* ─── FOOTER CTA ─── */
.footer-cta {
    background: var(--white);
    border-top: 1px solid #ededf7;
    padding: 32px 24px;
    text-align: center;
}

.footer-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.footer-cta p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.footer-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 18px rgba(42, 44, 184, 0.28);
    margin-top: 12px;
    margin-bottom: 20px;
}

.footer-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
}

.footer-note {
    font-size: 0.75rem;
    color: #b0aec8;
}

/* GO TO TOP BTN */
.go-top {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
    border: solid 1.5px #fff;
    color: white;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(42, 44, 184, 0.35);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
    z-index: 999;
    pointer-events: none;
}

.go-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    border: solid 1.5px #fff;

}

.go-top:hover {
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42, 44, 184, 0.4);
    border: solid 1.5px #fff;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--white);
    border-top: 1px solid #ededf7;
    padding: 48px 24px 32px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1.6fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* brand col */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brandname {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

.footer-regnumber {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-copy {
    font-size: 0.72rem;
    color: #b0aec8;
    margin-top: 8px;
    line-height: 1.6;
}

/* links col */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.footer-col a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--purple-mid);
}

/* contact col */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 4px 0;
}

.footer-contact-icon {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.footer-contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--purple-mid);
}

.footer-divider-line {
    border: none;
    border-top: 1px solid #ededf7;
    margin: 8px 0;
}

/* ─── RESPONSIVE: TABLET / DESKTOP UP ─── */
@media (min-width: 700px) {
    .header {
        padding: 0 48px;
    }

    .hero {
        min-height: 460px;
    }

    .hero-content {
        max-width: 640px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.6rem;
        max-width: 520px;
    }

    .hero p {
        font-size: 1rem;
        max-width: 440px;
    }

    .stats {
        max-width: 1100px;
        margin: 0 auto;
        transform: translateY(-26px);
    }

    .section {
        padding: 48px 80px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .niches-section {
        padding: 64px 48px 96px;
    }

    .niche-word.niche-xl { font-size: 3.2rem; }
    .niche-word.niche-lg { font-size: 2.5rem; }
    .niche-word.niche-md { font-size: 1.7rem; }
    .niche-word.niche-sm { font-size: 1.15rem; }

    .perk-body h4 {
        font-size: 1.05rem;
    }

    .perk-body p {
        font-size: 0.88rem;
    }

    .faq-list {
        max-width: 700px;
        margin: 0 auto;
    }

    .footer-cta h3 {
        font-size: 1.4rem;
    }

    .footer-cta p {
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 720px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-num {
        font-size: 20px;
    }
    .stat-label {
        font-size: 10px;
    }

    .browse-job {
        font-size: 0.75rem;
        text-align: center;
    }

    .section {
        padding: 36px 24px;
    }
}