* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --upGreen: #14a800;
  --upGreenDark: #108a00;
  --upGreenLight: #e6f5e4;
  --upParrotGreen: #d2ff00;
  --upBlack: #101828;
  --upLightGray: #f7faf7;
  --upWhite: #ffffff;
  --upBorder: #d5e0d5;
  --upTextMuted: #181818;
  --upFont: 'Inter', sans-serif;
}

body {
  font-family: var(--upFont);
  color: var(--upBlack);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mainNav {
  background: var(--upWhite);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
}

.navLogo {
  display: flex;
  align-items: center;
}

.navLinks {
  display: flex;
  align-items: center;
  flex: 1;
}

.navLinks li {
  position: relative;
}

.navLinks li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 64px;
  font-size: 14px;
  font-weight: 500;
  color: var(--upBlack);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.navLinks li>a:hover {
  color: var(--upGreen);
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-top: -3px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.navLinks li:hover .chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.megaMenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--upWhite);
  border: 1px solid var(--upBorder);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 24px;
  min-width: 480px;
  z-index: 9999;
  gap: 32px;
}

.navLinks li:hover .megaMenu {
  display: flex;
}

.megaCol {
  flex: 1;
}

.megaColTitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--upTextMuted);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.megaLink {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--upBlack);
  font-weight: 400;
  transition: color 0.2s;
}

.megaLink:hover {
  color: var(--upGreen);
}

.megaDivider {
  border: none;
  border-top: 1px solid var(--upBorder);
  margin: 14px 0;
}

.navRight {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.btnLogin {
  font-size: 16px;
  font-weight: 600;
  color: var(--upBlack);
  background: transparent;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-family: var(--upFont);
  transition: color 0.2s;
}

.btnLogin:hover {
  color: var(--upGreenDark);
}

.btnSignup {
  font-size: 16px;
  font-weight: 600;
  color: var(--upWhite);
  background: var(--upGreen);
  border: 2px solid var(--upGreen);
  padding: 10px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--upFont);
  transition: background 0.2s;
}

.btnSignup:hover {
  background: var(--upGreenDark);
  border-color: var(--upGreenDark);
}

.heroSection {
  background-color: var(--upWhite);
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroContainer {
  width: 100%;
  padding: 0px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.heroTop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: linear-gradient(0deg, hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, .5)), linear-gradient(90deg, #dff69b, #95e79b 50%, #a9f9b2);
  margin: 40px;
  border-radius: 30px;
}

.heroTopText {
  font-size: 24px;
  color: var(--upBlack);
  font-weight: 500;
}

.heroTopLink {
  font-size: 16px;
  color: var(--upBlack);
  text-decoration: underline;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroContent {
  padding: 120px 70px;
  width: 100%;
  margin: 0 80px;
  background-image: url('hero-dark-tone-lg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 30px;
}

.heroHeading {
  font-size: 68px;
  font-weight: 700;
  color: var(--upWhite);
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 720px;
}

.heroSubText {
  font-size: 24px;
  font-weight: 500;
  color: var(--upWhite);
  margin-bottom: 32px;
  max-width: 660px;
  line-height: 1.2;
}

.heroSearchBox {
  display: flex;
  flex-direction: column;
  background-color: var(--upTextMuted);
  padding: 32px;
  border-radius: 24px;
  width: fit-content;
  backdrop-filter: blur(80px);
  background: rgba(0, 0, 0, .3);
  border: 1px solid hsla(0, 0%, 100%, .15);
}

.heroToggle {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
}

.heroToggleBtn {
  width: 300px;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: var(--upWhite);
  background: transparent;
}

.heroToggleBtn.active {
  border: 2px solid var(--upWhite);
}

.heroSearch {
  display: flex;
  align-items: center;
  background: var(--upWhite);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 24px;
}

.heroSearch input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--upBlack);
  background: transparent;
  font-family: var(--upFont);
}

.heroSearch input::placeholder {
  color: var(--upTextMuted);
}

.heroSearchBtn {
  background: var(--upTextMuted);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 3px 25px 3px 10px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--upFont);
  flex-shrink: 0;
}

.heroSearchBtn>svg {
  color: #d2ff00;
}

.brandLogos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 8px 32px;
}

.categoriesSection {
  padding: 64px 0;
  background: var(--upWhite);
}

.sectionTitle {
  font-size: 40px;
  color: var(--upBlack);
  margin-bottom: 36px;
}

.categoriesGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.categoryCard {
  border: 2px solid var(--upBorder);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  background: var(--upWhite);
  display: block;
  box-shadow: 2px 2px 8px 2px hsla(0, 0%, 9%, .04), 0 0 0 1px var(--upLightGray);
}

.categoryCard:hover {
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, var(--upGreen), var(--upBlack)) border-box;
  border: 2px solid transparent;
}

.categoryName {
  font-size: 20px;
  color: var(--upBlack);
  line-height: 1.3;
  display: block;
  width: 150px;
}

.howSection {
  padding: 64px 0;
}

.howHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.howToggle {
  display: flex;
  border: 1px solid var(--upTextMuted);
  border-radius: 100px;
  overflow: hidden;
}

.howToggleBtn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  color: var(--upBlack);
  font-family: var(--upFont);
  border: none;
  width: 174px;
}

.howToggleBtn.active {
  border: 2px solid var(--upTextMuted);
  border-radius: 100px;
}

.howGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.howCard {
  overflow: hidden;
}

.howCard:hover .howCardText,
.howCard:hover .howCardBtn {
  opacity: 1;
}

.howCardImgBox {
  border-radius: 12px;
  width: 100%;
  height: 260px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.howCardImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howCardBody {
  padding: 20px;
}

.howCardTitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--upBlack);
  margin-bottom: 8px;
}

.howCardText {
  font-size: 14px;
  color: #676767;
  line-height: 1.6;
  opacity: 0;
  transition: all 0.3s ease;
}

.howCardBtn {
  width: 100%;
  margin-top: 16px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--upWhite);
  background: var(--upGreenDark);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--upFont);
  opacity: 0;
  transition: all 0.3s ease;
}

.howCardBtn:hover {
  background: var(--upGreen);
}

.pricingSection {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricingInner {
  display: flex;
  align-items: center;
  background: var(--upTextMuted);
  border-radius: 24px;
  height: 530px;
  padding: 8px;
}

.pricingLeft {
  flex: 1;
  padding: 48px;
  min-width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricingLeft>* {
  position: relative;
  z-index: 1;
}

.pricingLeft::before {
  backdrop-filter: blur(18px);
  background: linear-gradient(0deg, hsla(0, 0%, 100%, .01), hsla(0, 0%, 100%, .01)), url(https://res.cloudinary.com/upwork-cloud-acquisition-prod/image/upload/q_auto/brontes/hourly-cost-calculator/diagonal-background.png) #d3d3d3 0 0 / 10.000000149011612px 10.000000149011612px repeat;
  background-size: 120px;
  border: 1px solid #3c3c3c;
  border-radius: 24px;
  content: "";
  filter: invert(1);
  height: 100%;
  left: 0;
  opacity: 0.1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;

}

.pricingRight {
  flex: 0 0;
  min-width: 50%;
  height: 100%;
  overflow: hidden;
}

.pricingRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricingTitle {
  font-size: 48px;
  font-weight: 600;
  color: var(--upWhite);
  line-height: 1.2;
  margin-bottom: 32px;
}

.pricingSubText {
  font-size: 16px;
  color: var(--upWhite);
  margin-bottom: 32px;
}

.pricingInputBox {
  height: 100px;
  display: flex;
  background: var(--upWhite);
  border-radius: 24px;
  padding: 16px;
}

.pricingInputBox textarea {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--upTextMuted);
  align-self: flex-start;
  font-family: var(--upFont);
}

.pricingInputBox input::placeholder {
  color: var(--upTextMuted);
}

.btnNext {
  background: var(--upTextMuted);
  color: var(--upWhite);
  border: none;
  border-radius: 100px;
  padding: 8px 10px 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--upFont);
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: flex-end;
  margin-bottom: -8px;
  margin-right: -8px;
}

.btnNext svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--upParrotGreen);
}

.hiringSection {
  padding: 80px 0;
  background: var(--upWhite);
  text-align: center;
  background-image: url(graphic-lg.png);
  background-repeat: no-repeat;
  background-position: top;
}


.plansGrid {
  display: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.planCard {
  flex: 1;
  border: 1px solid var(--upBorder);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  background: var(--upWhite);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.planCard:hover .planBtn {
  background: var(--upGreenDark);
  color: var(--upWhite);
}

.planBadge {
  position: absolute;
  top: 0px;
  right: 0px;
  background: linear-gradient(158deg, #bdef9b, #afec9b);
  color: var(--upTextMuted);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 0 0 0 20px;
  text-transform: uppercase;
}

.planName {
  font-size: 22px;
  font-weight: 500;
  color: var(--upBlack);
  margin-bottom: 4px;
}

.planSubText {
  font-size: 13px;
  color: var(--upTextMuted);
  margin-bottom: 20px;
}

.planFee {
  font-size: 14px;
  font-weight: 500;
  color: var(--upBlack);
  margin-bottom: 20px;
}

.planSectionTitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--upTextMuted);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.planFeature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--upBlack);
  line-height: 1.5;
}

.checkIcon {
  color: var(--upGreen);
  font-size: 15px;
  flex-shrink: 0;
  font-style: normal;
  font-weight: 600;
}

.planBtn {
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  border: 2px solid var(--upGreen);
  color: var(--upGreen);
  background: var(--upWhite);
  cursor: pointer;
  font-family: var(--upFont);
  transition: background 0.2s, color 0.2s;
}

.comparePlansLink {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--upGreen);
  text-decoration: none;
}

.comparePlansLink:hover {
  text-decoration: underline;
}

.reviewsSection {
  background: var(--upWhite);
  background-image: url(reviews-graphic-b.jpg);
  background-repeat: no-repeat;
  background-position: center;
}

.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.reviewCard {
  border: 1px solid var(--upBorder);
  border-radius: 16px;
  padding: 32px;
  background: var(--upWhite);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.reviewCategory {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviewCategory span {
  font-size: 12px;
  color: var(--upTextMuted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reviewText {
  font-size: 16px;
  color: var(--upBlack);
  line-height: 1.65;
  flex: 1;
}

.reviewStars {
  color: #df7606;
  font-size: 20px;
  letter-spacing: 2px;
}

.reviewFooter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 32px;
}

.reviewMeta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewWorker {
  font-size: 13px;
  font-weight: 600;
  color: var(--upBlack);
}

.reviewJob {
  font-size: 12px;
  color: var(--upTextMuted);
  line-height: 1.4;
}

.reviewDate {
  font-size: 12px;
  color: var(--upTextMuted);
}

.reviewAvatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ctaSection {
  padding: 80px 0;
}

.ctaContainer {
  background: linear-gradient(135deg, #52dc1c, #3cd828, #00cc4a, #00c12b, #00ca4f, #47dc26);
  text-align: center;
  border-radius: 16px;
  padding: 48px;

}

.ctaTitle {
  font-size: 34px;
  font-weight: 700;
  color: var(--upWhite);
  margin-bottom: 32px;
  line-height: 1.2;
}

.btnCtaWhite {
  display: inline-block;
  background: var(--upWhite);
  color: var(--upBlack);
  border: none;
  border-radius: 10px;
  padding: 12px 36px;
  font-size: 16px;
  cursor: pointer;
  font-family: var(--upFont);
}

.btnCtaWhite:hover {
  background: #f0f0f0;
}


.footerContainer {
  padding: 72px;
  margin: 24px;
  background: var(--upTextMuted);
  border-radius: 8px;
}

.footerGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footerColTitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.footerLink {
  color: var(--upWhite);
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footerLink:hover {
  color: var(--upWhite);
}

.footerBottom {
  padding-top: 8px;
}

.footerBottomRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.footerSocialGroup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footerFollowText {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.footerSocial {
  display: flex;
  align-items: center;
}

.footerSocial a {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 8px;
  border-radius: 50%;
}

.footerSocial a:hover {
  color: var(--upWhite);
  background: rgba(255, 255, 255, 0.15);
}

.footerMobileGroup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footerMobileText {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.footerMobileGroup a {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footerMobileGroup a:hover {
  color: var(--upWhite);
}

.footerLegalDivider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footerLegalRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
}

.footerCopy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.footerLegalLinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footerLegalLink {
  font-size: 14px;
  font-weight: 500;
  color: var(--upWhite);
  padding: 0 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footerLegalLink:hover {
  text-decoration: underline;
}

.footerPrivacyChoice {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 1024px) {
  .navLinks {
    display: none;
  }

  .navHamburger {
    display: flex;
  }

  .heroContainer {
    padding: 0 24px;
  }

  .heroTop {
    margin: 20px 0;
    flex-direction: column;
    gap: 12px;
  }

  .heroContent {
    padding: 60px 40px;
  }

  .heroHeading {
    font-size: 48px;
  }

  .categoriesGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricingInner {
    flex-direction: column-reverse;
    height: auto;
  }

  .pricingLeft::before{
    background: none;
  }

  .pricingLeft,
  .pricingRight {
    min-width: 100%;
  }

  .pricingRight {
    height: 280px;
  }

  .footerGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .heroContainer {
    padding: 0 16px;
  }

  .heroContent {
    padding: 40px 24px;
  }

  .heroHeading {
    font-size: 36px;
  }

  .heroSubText {
    font-size: 16px;
  }

  .heroSearchBox {
    width: 100%;
  }

  .heroToggleBtn {
    width: 50%;
  }

  .sectionTitle {
    font-size: 28px;
  }

  .categoriesGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .howGrid {
    grid-template-columns: 1fr;
  }

  .howCardText,
  .howCardBtn {
    opacity: 1;
  }

  .plansGrid {
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
  }

  .reviewsGrid {
    grid-template-columns: 1fr;
  }

  .ctaTitle {
    font-size: 26px;
  }

  .footerBottomRow {
    flex-direction: column;
    gap: 20px;
  }

  .footerLegalLinks {
    flex-direction: column;
  }

  .footerLegalLink {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .btnLogin {
    display: none;
  }

  .heroContent {
    padding: 32px 16px;
  }

  .heroHeading {
    font-size: 28px;
  }

  .heroSearchBox {
    padding: 16px;
  }

  .categoryCard {
    padding: 12px;
  }

  .categoryName {
    font-size: 14px;
  }

  .sectionTitle {
    font-size: 24px;
  }

  .pricingInputBox {
    flex-direction: column;
    height: auto;
  }

  .btnNext {
    align-self: flex-end;
    margin: 0;
  }

  .footerContainer {
    padding: 32px 16px;
    margin: 8px;
  }
}